You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Victor Stinner f86a5e8a93 Close #11022: TextIOWrapper doesn't call locale.setlocale() anymore 14 years ago
..
collections Close #14386: Register types.MappingProxyType as a Mapping 14 years ago
concurrent Issue #14406: Fix a race condition when using `concurrent.futures.wait(return_when=ALL_COMPLETED)`. 14 years ago
ctypes Issue #9041: raised exception is misleading 14 years ago
curses (Merge 3.2) Fix curses module for strict SysV implementation (without has_key function) 14 years ago
dbm Issue #12666: Clarifying changes in map for Python 3 15 years ago
distutils Bump version to 3.3.0a4. 14 years ago
email #1079: Fix parsing of encoded words. 14 years ago
encodings Speed up IDNA for the common case 14 years ago
html #14538: HTMLParser can now parse correctly start tags that contain a bare /. 14 years ago
http Issue 14989: http.server --cgi option can enable the CGI http server. 14 years ago
idlelib merge 3.2 14 years ago
importlib Tweak importlib._bootstrap to avoid zero-argument super so I can work on issue #14857 without breaking imports 14 years ago
json #14875: merge with 3.2. 14 years ago
lib2to3 remove get_prefix and set_prefix (#13248) 14 years ago
logging Issue #14632: Updated WatchedFileHandler to deal with race condition. Thanks to John Mulligan for the problem report and patch. 14 years ago
msilib Issue #12666: Clarifying changes in map for Python 3 15 years ago
multiprocessing Prevent handle leak if CreateProcess() fails in multiprocessing 14 years ago
packaging Implemented PEP 405 (Python virtual environments). 14 years ago
plat-aix4 Rip out 'long' and 'L'-suffixed integer literals. 19 years ago
plat-darwin These are present in the trunk but no longer in 3.x, which causes problems 17 years ago
plat-freebsd4 Merged revisions 78644 via svnmerge from 16 years ago
plat-freebsd5 Merged revisions 78644 via svnmerge from 16 years ago
plat-freebsd6 Merged revisions 78644 via svnmerge from 16 years ago
plat-freebsd7 Merged revisions 78644 via svnmerge from 16 years ago
plat-freebsd8 Merged revisions 78644 via svnmerge from 16 years ago
plat-generic Remove obsolete entries from regen scripts. 25 years ago
plat-linux Close #12326: sys.platform is now always 'linux' on Linux 15 years ago
plat-netbsd1 Whitespace normalization, via reindent.py. 22 years ago
plat-next3 Do no regenerate modules that should no longer be here. 25 years ago
plat-os2emx Merged revisions 78644 via svnmerge from 16 years ago
plat-sunos5 Merged revisions 78678,78680,78682 via svnmerge from 16 years ago
plat-unixware7 Merged revisions 55817-55961 via svnmerge from 19 years ago
pydoc_data Update pydoc topics and fix new suspicious markup. 14 years ago
site-packages Add a README file so that cvs update -P doesn't obliterate this 26 years ago
sqlite3 Merge branch '3.2' 14 years ago
test Close #11022: TextIOWrapper doesn't call locale.setlocale() anymore 14 years ago
tkinter Implemented PEP 405 (Python virtual environments). 14 years ago
turtledemo Issue #12666: Clarifying changes in map for Python 3 15 years ago
unittest Close #14857: fix regression in references to PEP 3135 implicit __class__ closure variable. Reopens issue #12370, but also updates unittest.mock to workaround that issue 14 years ago
urllib Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just have ascii in help msg 14 years ago
venv Removed pysetup3.exe executable. 14 years ago
wsgiref Issue #3839: wsgiref should not override a Content-Length header set by 15 years ago
xml Issue 14814: Add namespaces keyword arg to find(*) methods in _elementtree. 14 years ago
xmlrpc Merge 3.2 14 years ago
__future__.py #14494: Document that absolute imports became default in 3.0 instead of 2.7. 14 years ago
__phello__.foo.py Fix the frozen bytecode for __hello__ (betcha didn't know that existed 25 years ago
_compat_pickle.py Issue #6137: The pickle module now translates module names when loading 17 years ago
_dummy_thread.py Followup to issue #11140 and r88682: also patch _dummy_thread. 15 years ago
_markupbase.py #13576: merge with 3.2. 14 years ago
_pyio.py Close #11022: TextIOWrapper doesn't call locale.setlocale() anymore 14 years ago
_strptime.py Followup to issue #14157: respect the relative ordering of values produced by time.strptime(). 14 years ago
_threading_local.py Issue #9707: Rewritten reference implementation of threading.local which 16 years ago
_weakrefset.py Issue #14195: Make WeakSet.__lt__ and WeakSet.__gt__ irreflexive. 14 years ago
abc.py improve abstract property support (closes #11610) 14 years ago
aifc.py #13394: add more tests for the aifc module and use warnings.warn instead of print. Patch by Oleg Plakhotnyuk. 14 years ago
antigravity.py Another hidden treasure. 17 years ago
argparse.py Merge 3.2 14 years ago
ast.py remove ast.__version__ (closes #12273) 15 years ago
asynchat.py Normalize the encoding names for Latin-1 and UTF-8 to 15 years ago
asyncore.py merge 79422b3684f1 in 3.3 branch (issue 10340) 14 years ago
base64.py Issue #13641: Decoding functions in the base64 module now accept ASCII-only unicode strings. 14 years ago
bdb.py issue13183 - Fix pdb skipping frames after hitting a breakpoint and running step. Patch by Xavier de Gaye 14 years ago
binhex.py remove unused imports (closes #12432) 15 years ago
bisect.py Per the language summit, the optional fastpath imports should use from-import-star. 17 years ago
bz2.py Add a function bz2.open(), to match gzip.open(). 14 years ago
cProfile.py #9428: fix running scripts from profile/cProfile with their own name and the right namespace. Same fix as for trace.py in #1690103. 16 years ago
calendar.py Issue #12666: Clarifying changes in map for Python 3 15 years ago
cgi.py Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's DeprecationWarning (cgi, importlib, nntplib, smtpd). 14 years ago
cgitb.py remove unused imports (closes #12432) 15 years ago
chunk.py Raise statement normalization in Lib/. 19 years ago
cmd.py Close #13500: Hitting EOF gets cmd.py into a infinite EOF on return loop 14 years ago
code.py Merged revisions 75264,75268,75293,75318,75391-75392,75436,75478,75971,76003,76058,76140-76141,76231,76380,76428-76429 via svnmerge from 16 years ago
codecs.py #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). 15 years ago
codeop.py correct porting error with raise #7161 16 years ago
colorsys.py Merged revisions 68884,68973,68978,69003,69083,69112-69113 via svnmerge from 17 years ago
compileall.py Issue #12666: Clarifying changes in map for Python 3 15 years ago
configparser.py Merge with 3.2. 14 years ago
contextlib.py Close #14969: Improve the handling of exception chaining in contextlib.ExitStack 14 years ago
copy.py #11572: improvements to copy module tests along with removal of old test suite 15 years ago
copyreg.py Issue #12666: Clarifying changes in map for Python 3 15 years ago
crypt.py A crypt algorithm may not be available by returning None. 15 years ago
csv.py #11565: Merge with 3.2. 15 years ago
datetime.py Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec 14 years ago
decimal.py Use the same exception hierarchy as decimal.py. FloatOperation now also 14 years ago
difflib.py Fix comment in difflib. 14 years ago
dis.py As per python-dev discussion with Eli, properly document and publish dis.show_code 16 years ago
doctest.py Merge #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v 14 years ago
dummy_threading.py Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. 18 years ago
filecmp.py disable ASDLGEN if hg won't work, or if python is not installed. 15 years ago
fileinput.py fileinput: replace this last occurence of codecs.open with builtins.open. 14 years ago
fnmatch.py Simplify calls in fnmatch. 14 years ago
formatter.py Fix formatter usage of filter(). Bug #3800. 18 years ago
fractions.py Make Fraction(-1).__hash__() return -2 rather than -1 (see issue 10356). 15 years ago
ftplib.py fix #13563: make use of with statement in ftplib.py where needed 14 years ago
functools.py Separate key creation logic from the sequence class that memoizes its hash value. 14 years ago
genericpath.py Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,78075-78080 via svnmerge from 16 years ago
getopt.py Issue #11621: fix bootstrap issue with getopt/gettext (following d3e46930ffe9) 15 years ago
getpass.py Remove redundant imports. 14 years ago
gettext.py Implemented PEP 405 (Python virtual environments). 14 years ago
glob.py Remove unused import. 15 years ago
gzip.py Add fileobj support to gzip.open(). 14 years ago
hashlib.py fix whitespace 15 years ago
heapq.py Issue #12666: Clarifying changes in map for Python 3 15 years ago
hmac.py Issue #14532: Add a secure_compare() helper to the hmac module, to mitigate 14 years ago
imaplib.py Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result near 14 years ago
imghdr.py Merged revisions 65713 via svnmerge from 18 years ago
imp.py Issue #13959: Have 14 years ago
inspect.py Issue #14987: Add a missing import statement 14 years ago
io.py merge 3.2 14 years ago
ipaddress.py #14814: ipaddress: refactor dup code, minor janitoring, bump coverage 14 years ago
keyword.py Issue #12666: Clarifying changes in map for Python 3 15 years ago
linecache.py Issue #10335: Add tokenize.open(), detect the file encoding using 15 years ago
locale.py Issue #12666: Clarifying changes in map for Python 3 15 years ago
lzma.py Add a function lzma.open(), to match gzip.open() and bz2.open(). 14 years ago
macpath.py Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X 16 years ago
macurl2path.py Fixing Issue6711 - macurl2path has typos that raise AttributeError 17 years ago
mailbox.py #12537: in mailbox avoid depending on knowledge of email package internals 14 years ago
mailcap.py Fix #9923: mailcap now uses the OS path separator for the MAILCAP envvar. Not backported, since it could break cases where people worked around the old POSIX-specific behaviour on non-POSIX platforms. 15 years ago
mimetypes.py Issue #13640: add application/vnd.apple.mpegurl MIME type; (partial) patch by Hiroaki Kawai 14 years ago
modulefinder.py Issue #13959: Deprecate imp.get_suffixes() for new attributes on 14 years ago
netrc.py disable ASDLGEN if hg won't work, or if python is not installed. 15 years ago
nntplib.py #1079: Fix parsing of encoded words. 14 years ago
ntpath.py disable ASDLGEN if hg won't work, or if python is not installed. 15 years ago
nturl2path.py Fix Issue11474 - fix url2pathname() handling of '/C|/' on Windows 15 years ago
numbers.py improve abstract property support (closes #11610) 14 years ago
opcode.py Implement PEP 380 - 'yield from' (closes #11682) 14 years ago
optparse.py Merge 3.2 14 years ago
os.py Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError 14 years ago
os2emxpath.py #9018: os.path.normcase() now raises a TypeError if the argument is not str or bytes. 16 years ago
pdb.py Close #14210: add command argument completion to pdb: complete file names, global/local variables, aliases 14 years ago
pickle.py Fixes #13842: cannot pickle Ellipsis or NotImplemented. 14 years ago
pickletools.py Merge 3.2 14 years ago
pipes.py Merge doc changes from 3.2 (#10454, #12298) 15 years ago
pkgutil.py issue 14660: Implement PEP 420, namespace packages. 14 years ago
platform.py merge from 3.2 14 years ago
plistlib.py #14835: Make plistlib output empty arrays & dicts like OS X 14 years ago
poplib.py Issue 11291: poplib suppresses errors on QUIT. 15 years ago
posixpath.py Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/' 14 years ago
pprint.py Have pprint() respect the order in an OrderedDict. 16 years ago
profile.py Issue #14428: Use the new time.perf_counter() and time.process_time() functions 14 years ago
pstats.py Avoid main_window unused compiler warning. 14 years ago
pty.py Issue #2489: Fix bug in _copy loop that could consume 100% cpu on EOF. 14 years ago
py_compile.py Issue #13645: pyc files now contain the size of the corresponding source 14 years ago
pyclbr.py #14798: pyclbr now raises ImportError instead of KeyError for missing packages 14 years ago
pydoc.py Implemented PEP 405 (Python virtual environments). 14 years ago
queue.py Issue #14428, #14397: Implement the PEP 418 14 years ago
quopri.py convert shebang lines: python -> python3 16 years ago
random.py Issue #14926: merge with 3.2 14 years ago
re.py #14236: merge with 3.2. 14 years ago
reprlib.py Fix typo. 15 years ago
rlcompleter.py Closes #14411: remove outdated comment in rlcompleter docstring. 14 years ago
runpy.py Issue #14605: Use None in sys.path_importer_cache to represent no 14 years ago
sched.py Close #14690: Use monotonic clock instead of system clock in the sched, 14 years ago
shelve.py #7905: Actually respect the keyencoding parameter to shelve.Shelf. 15 years ago
shlex.py #9723: refactor regex. 15 years ago
shutil.py Issue #14082: shutil.copy2() now copies extended attributes, if possible. 14 years ago
site.py Implemented PEP 405 (Python virtual environments). 14 years ago
smtpd.py #8739: upgrade smtpd to RFC 5321 and 1870. 14 years ago
smtplib.py #12448: merge with 3.2. 14 years ago
sndhdr.py Issue #9243: Fix sndhdr module and add unit tests, contributed by James Lee. 16 years ago
socket.py Issue #14310: inter-process socket duplication for windows 14 years ago
socketserver.py Issue #7978: socketserver now restarts the select() call when EINTR is returned. 14 years ago
sre_compile.py #13054: fix usage of sys.maxunicode after PEP-393. 14 years ago
sre_constants.py #2834: Change re module semantics, so that str and bytes mixing is forbidden, 18 years ago
sre_parse.py Normalize the encoding names for Latin-1 and UTF-8 to 15 years ago
ssl.py Issue #14204: The ssl module now has support for the Next Protocol Negotiation extension, if available in the underlying OpenSSL library. 14 years ago
stat.py #14807: move undocumented tarfile.filemode() to stat.filemode(). Add tarfile.filemode alias with deprecation warning. 14 years ago
string.py #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). 15 years ago
stringprep.py Merged revisions 55007-55179 via svnmerge from 19 years ago
struct.py Issue #11081: Fixed struct.__all__. Reviewed by Georg Brandl. 15 years ago
subprocess.py Close #14690: Use monotonic clock instead of system clock in the sched, 14 years ago
sunau.py Issue #10265: Close file objects explicitly in sunau. Patch by Brian Brazil. 15 years ago
symbol.py Issue #12666: Clarifying changes in map for Python 3 15 years ago
symtable.py simplify this expression 17 years ago
sysconfig.cfg Implemented PEP 405 (Python virtual environments). 14 years ago
sysconfig.py Fixed _sys_home computation and added diagnostics for Windows buildbot failures. 14 years ago
tabnanny.py Fix #12811 by closing files promptly in tabnanny.check. Patch by Anthony Briggs. 15 years ago
tarfile.py Simplify usage of LZMAFile's fileobj support, like with BZ2File. 14 years ago
telnetlib.py #10695: use %s not %d so that a string 'port' does not cause a debug traceback 15 years ago
tempfile.py Issue #12856: Ensure child processes do not inherit the parent's random seed for filename generation in the tempfile module. 14 years ago
textwrap.py #13152: Allow to specify a custom tabsize for expanding tabs in textwrap 14 years ago
this.py Fix most trivially-findable print statements. 19 years ago
threading.py Issue #14428, #14397: Implement the PEP 418 14 years ago
timeit.py Add an option to timeit to use time.process_time() and mark -t and -c as deprecated. 14 years ago
token.py Issue #9260: A finer-grained import lock. 14 years ago
tokenize.py Issue #14629: Mention the filename in SyntaxError exceptions from 14 years ago
trace.py Close #14690: Use monotonic clock instead of system clock in the sched, 14 years ago
traceback.py PEP 415: Implement suppression of __context__ display with an exception attribute 14 years ago
tty.py final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be 25 years ago
turtle.py Issue #13439: Merge branch 3.2 14 years ago
types.py Eric Snow's implementation of PEP 421. 14 years ago
uu.py Issue #10266: uu.decode didn't close in_file explicitly when it was given 15 years ago
uuid.py Shift the pipe-using code into an else block, then close the pipe 15 years ago
warnings.py Issue #12666: Clarifying changes in map for Python 3 15 years ago
wave.py Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 15 years ago
weakref.py Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, WeakValueDictionary) to return a better approximation when some objects are dead or dying. 14 years ago
webbrowser.py - Issue #14493: Use gvfs-open/xdg-open in Lib/webbrowser.py. 14 years ago
xdrlib.py Cleanup code: remove int/long idioms and simplify a while statement. 14 years ago
zipfile.py Issue #14366: Support lzma compression in zip files. 14 years ago