Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 37a0982

Browse files
author
Fredrik Lundh
committed
point people to the Python bug tracker, rather than to a mail
account I hardly ever use...
1 parent eeb7827 commit 37a0982

2 files changed

Lines changed: 7 additions & 20 deletions

File tree

Lib/locale.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def _test():
190190
### Locale name aliasing engine
191191

192192
# Author: Marc-Andre Lemburg, [email protected]
193-
# Various tweaks by Fredrik Lundh <effbot@telia.com>
193+
# Various tweaks by Fredrik Lundh <fredrik@pythonware.com>
194194

195195
# store away the low-level version of setlocale (it's
196196
# overridden below)
@@ -623,9 +623,12 @@ def resetlocale(category=LC_ALL):
623623
# this maps windows language identifiers (as used on Windows 95 and
624624
# earlier) to locale strings.
625625
#
626-
# NOTE: this mapping is incomplete. If your language is missing, send
627-
# a note with the missing language identifier and the suggested locale
628-
# code to Fredrik Lundh <[email protected]>. Thanks /F
626+
# NOTE: this mapping is incomplete. If your language is missing, please
627+
# submit a bug report to Python bug manager, which you can find via:
628+
# http://www.python.org/dev/
629+
# Make sure you include the missing language identifier and the suggested
630+
# locale code.
631+
#
629632

630633
windows_locale = {
631634
0x0404: "zh_TW", # Chinese (Taiwan)

Lib/re.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,5 @@
11
"""Minimal "re" compatibility wrapper"""
22

3-
# To help us fix any remaining bugs in the new engine, please
4-
# report what went wrong. You can either use the following web
5-
# page:
6-
#
7-
# http://sourceforge.net/bugs/?group_id=5470
8-
#
9-
# or send a mail to SRE's author:
10-
#
11-
# Fredrik Lundh <[email protected]>
12-
#
13-
# Make sure to include the pattern, the string SRE failed to
14-
# match, and what result you expected.
15-
#
16-
# thanks /F
17-
#
18-
193
engine = "sre" # Some apps might use this undocumented variable
204

215
from sre import *

0 commit comments

Comments
 (0)