point people to the Python bug tracker, rather than to a mail
account I hardly ever use...
This commit is contained in:
parent
eeb7827cad
commit
37a0982278
|
@ -190,7 +190,7 @@ def _test():
|
||||||
### Locale name aliasing engine
|
### Locale name aliasing engine
|
||||||
|
|
||||||
# Author: Marc-Andre Lemburg, mal@lemburg.com
|
# Author: Marc-Andre Lemburg, mal@lemburg.com
|
||||||
# Various tweaks by Fredrik Lundh <effbot@telia.com>
|
# Various tweaks by Fredrik Lundh <fredrik@pythonware.com>
|
||||||
|
|
||||||
# store away the low-level version of setlocale (it's
|
# store away the low-level version of setlocale (it's
|
||||||
# overridden below)
|
# overridden below)
|
||||||
|
@ -623,9 +623,12 @@ locale_alias = {
|
||||||
# this maps windows language identifiers (as used on Windows 95 and
|
# this maps windows language identifiers (as used on Windows 95 and
|
||||||
# earlier) to locale strings.
|
# earlier) to locale strings.
|
||||||
#
|
#
|
||||||
# NOTE: this mapping is incomplete. If your language is missing, send
|
# NOTE: this mapping is incomplete. If your language is missing, please
|
||||||
# a note with the missing language identifier and the suggested locale
|
# submit a bug report to Python bug manager, which you can find via:
|
||||||
# code to Fredrik Lundh <effbot@telia.com>. Thanks /F
|
# http://www.python.org/dev/
|
||||||
|
# Make sure you include the missing language identifier and the suggested
|
||||||
|
# locale code.
|
||||||
|
#
|
||||||
|
|
||||||
windows_locale = {
|
windows_locale = {
|
||||||
0x0404: "zh_TW", # Chinese (Taiwan)
|
0x0404: "zh_TW", # Chinese (Taiwan)
|
||||||
|
|
16
Lib/re.py
16
Lib/re.py
|
@ -1,21 +1,5 @@
|
||||||
"""Minimal "re" compatibility wrapper"""
|
"""Minimal "re" compatibility wrapper"""
|
||||||
|
|
||||||
# To help us fix any remaining bugs in the new engine, please
|
|
||||||
# report what went wrong. You can either use the following web
|
|
||||||
# page:
|
|
||||||
#
|
|
||||||
# http://sourceforge.net/bugs/?group_id=5470
|
|
||||||
#
|
|
||||||
# or send a mail to SRE's author:
|
|
||||||
#
|
|
||||||
# Fredrik Lundh <effbot@telia.com>
|
|
||||||
#
|
|
||||||
# Make sure to include the pattern, the string SRE failed to
|
|
||||||
# match, and what result you expected.
|
|
||||||
#
|
|
||||||
# thanks /F
|
|
||||||
#
|
|
||||||
|
|
||||||
engine = "sre" # Some apps might use this undocumented variable
|
engine = "sre" # Some apps might use this undocumented variable
|
||||||
|
|
||||||
from sre import *
|
from sre import *
|
||||||
|
|
Loading…
Reference in New Issue