..
asyncio
#23464: remove JoinableQueue that was deprecated in 3.4.4.
11 years ago
collections
Issue 23704: Add index(), copy(), and insert() to deques. Register deques as a MutableSequence.
11 years ago
concurrent
Issue #21817: When an exception is raised in a task submitted to a ProcessPoolExecutor, the remote traceback is now displayed in the parent process.
12 years ago
ctypes
Closes #17202: Merge with 3.4
11 years ago
curses
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
dbm
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
distutils
Issue #23731: Implement PEP 488.
11 years ago
email
Escaped backslashes in docstrings.
11 years ago
encodings
Issue #22406: Fixed the uu_codec codec incorrectly ported to 3.x.
12 years ago
ensurepip
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
html
Issue #23181: More "codepoint" -> "code point".
12 years ago
http
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
idlelib
Issue #23943: Fix typos. Patch by Piotr Kasprzyk.
11 years ago
importlib
Issue #23731: Implement PEP 488.
11 years ago
json
Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError.
12 years ago
lib2to3
Removed unintentional trailing spaces in text files.
11 years ago
logging
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
msilib
Issue #23731: Implement PEP 488.
11 years ago
multiprocessing
Issue #21116: Avoid blowing memory when allocating a multiprocessing shared
11 years ago
plat-aix4
Rip out 'long' and 'L'-suffixed integer literals.
20 years ago
plat-darwin
These are present in the trunk but no longer in 3.x, which causes problems
18 years ago
plat-freebsd4
set svn:executable on all regen scripts
17 years ago
plat-freebsd5
set svn:executable on all regen scripts
17 years ago
plat-freebsd6
set svn:executable on all regen scripts
17 years ago
plat-freebsd7
set svn:executable on all regen scripts
17 years ago
plat-freebsd8
set svn:executable on all regen scripts
17 years ago
plat-generic
Update the embedded copy of the expat XML parser to 2.1.0. It brings
14 years ago
plat-linux
Issue #13590: Improve support for OS X Xcode 4:
14 years ago
plat-netbsd1
Whitespace normalization, via reindent.py.
22 years ago
plat-next3
Do no regenerate modules that should no longer be here.
26 years ago
plat-sunos5
Merged revisions 78678,78680,78682 via svnmerge from
17 years ago
plat-unixware7
Merged revisions 55817-55961 via svnmerge from
19 years ago
pydoc_data
Regenerated pydoc topics and minor doc fixes for 3.5.0a3.
11 years ago
site-packages
Add a README file so that cvs update -P doesn't obliterate this
27 years ago
sqlite3
Issue #13583: sqlite3.Row now supports slice indexing.
11 years ago
test
#16914: add timestamps to smtplib debugging output via new debuglevel 2.
11 years ago
tkinter
Issue #23943: Fix typos. Patch by Piotr Kasprzyk.
11 years ago
turtledemo
issue19075: add visual sorting algorithms to turtledemo; original code from Jason Yeo
12 years ago
unittest
Issue #23310: Fix MagicMock's initializer to work with __methods__.
11 years ago
urllib
#7159: generalize urllib prior auth support.
11 years ago
venv
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
wsgiref
Merge from 3.4
12 years ago
xml
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
xmlrpc
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
__future__.py
Issue #13590: Improve support for OS X Xcode 4:
14 years ago
__phello__.foo.py
Fix the frozen bytecode for __hello__ (betcha didn't know that existed
25 years ago
_bootlocale.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
_collections_abc.py
Issue #21408: The default __ne__() now returns NotImplemented if __eq__()
12 years ago
_compat_pickle.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
_compression.py
Issue #23529: Limit the size of decompressed data when reading from
11 years ago
_dummy_thread.py
Issue 21137: Better repr for threading.Lock()
12 years ago
_markupbase.py
Issue #13590: Improve support for OS X Xcode 4:
14 years ago
_osx_support.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
_pydecimal.py
Issue #23641: Cleaned out legacy dunder names from tests and docs.
11 years ago
_pyio.py
Issue #22982: Improve BOM handling when seeking to multiple positions of a writable text file.
11 years ago
_sitebuiltins.py
#9364: Improve the text printed by help(pydoc) and help(help).
12 years ago
_strptime.py
Fixed using deprecated escaping in regular expression in _strptime.py (issue23622).
11 years ago
_threading_local.py
Issue #9707: Rewritten reference implementation of threading.local which
16 years ago
_weakrefset.py
Issue #20006: Fix sporadic failures in test_weakset.
13 years ago
abc.py
Issue #22032: __qualname__ instead of __name__ is now always used to format
12 years ago
aifc.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
antigravity.py
Another hidden treasure.
17 years ago
argparse.py
Issue #14910: Add allow_abbrev parameter to argparse.ArgumentParser.
12 years ago
ast.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
asynchat.py
(Merge 3.4) Issue #16133: The asynchat.async_chat.handle_read() method now
12 years ago
asyncore.py
Issue #23485: select.poll.poll() is now retried when interrupted by a signal
11 years ago
base64.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
bdb.py
Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier de Gaye.
13 years ago
binhex.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
bisect.py
Per the language summit, the optional fastpath imports should use from-import-star.
18 years ago
bz2.py
Issue #23529: Limit the size of decompressed data when reading from
11 years ago
cProfile.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
calendar.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
cgi.py
merge 3.4 (#23801)
11 years ago
cgitb.py
Issue #22831: Use "with" to avoid possible fd leaks.
11 years ago
chunk.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
cmd.py
Issue #13590: Improve support for OS X Xcode 4:
14 years ago
code.py
Remaining fallout from 17911
12 years ago
codecs.py
Escaped backslashes in docstrings.
11 years ago
codeop.py
correct porting error with raise #7161
17 years ago
colorsys.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
compileall.py
Issue #23731: Implement PEP 488.
11 years ago
configparser.py
Closes #18159: ConfigParser getters not available on SectionProxy
12 years ago
contextlib.py
Issue #22389: Add contextlib.redirect_stderr().
12 years ago
copy.py
Issue #20289: The copy module now uses pickle protocol 4 (PEP 3154) and
11 years ago
copyreg.py
Issue #17810: Implement PEP 3154, pickle protocol 4.
13 years ago
crypt.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
csv.py
Issue #23171: csv.Writer.writerow() now supports arbitrary iterables.
11 years ago
datetime.py
Issue #23641: Cleaned out legacy dunder names from tests and docs.
11 years ago
decimal.py
Whitespace.
12 years ago
difflib.py
Issue #2052: Add charset parameter to HtmlDiff.make_file().
11 years ago
dis.py
Issue #21947: handle generator-iterator objects in dis
12 years ago
doctest.py
Issue #23731: Implement PEP 488.
11 years ago
dummy_threading.py
Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875.
18 years ago
enum.py
Close issue23900: add default __doc__ to new enumerations that do not specify one.
11 years ago
filecmp.py
shallow defaults to 'True' not '1' (closes #21355)
12 years ago
fileinput.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
fnmatch.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
formatter.py
Fix module deprecation warnings to have a useful stacklevel
11 years ago
fractions.py
#22464: Speed up common Fraction operations by special-casing several
12 years ago
ftplib.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
functools.py
Issue #7830: Flatten nested functools.partial.
12 years ago
genericpath.py
Issue #21883: os.path.join() and os.path.relpath() now raise a TypeError with
12 years ago
getopt.py
Issue #13590: Improve support for OS X Xcode 4:
14 years ago
getpass.py
#21169: add comment and doc update for getpass change.
12 years ago
gettext.py
Merge from 3.4
11 years ago
glob.py
Issue #13968: The glob module now supports recursive search in
12 years ago
gzip.py
Issue #23529: Limit the size of decompressed data when reading from
11 years ago
hashlib.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
heapq.py
Issue #22186: Fix typos in Lib/.
12 years ago
hmac.py
Issue #18775: Add name and block_size attribute to HMAC object. They now
13 years ago
imaplib.py
Merge: #23647: Increase imaplib's MAXLINE to accommodate modern mailbox sizes.
11 years ago
imghdr.py
#20295: Teach imghdr to recognize OpenEXR format images.
12 years ago
imp.py
Closes #23956: Merge with 3.4
11 years ago
inspect.py
Issue #21217: inspect.getsourcelines() now tries to compute the start and
11 years ago
io.py
#21225: copy docstrings from base classes
12 years ago
ipaddress.py
Issue #23103: Reduced the memory consumption of IPv4Address and IPv6Address.
12 years ago
keyword.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
linecache.py
Issue #23838: linecache now clears the cache and returns an empty result on
11 years ago
locale.py
Issue #13918: Provide a locale.delocalize() function which can remove
12 years ago
lzma.py
Issue #23529: Limit the size of decompressed data when reading from
11 years ago
macpath.py
Issue #21883: os.path.join() and os.path.relpath() now raise a TypeError with
12 years ago
macurl2path.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
mailbox.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
mailcap.py
Issue #20331: Fixed possible FD leaks in various modules:
13 years ago
mimetypes.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
modulefinder.py
Issue #23731: Implement PEP 488.
11 years ago
netrc.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
nntplib.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
ntpath.py
Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath.
11 years ago
nturl2path.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
numbers.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
opcode.py
PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)
12 years ago
operator.py
PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)
12 years ago
optparse.py
Issue #20315: Removed support for backward compatibility with early 2.x versions.
13 years ago
os.py
merge 3.4 (#23929)
11 years ago
pathlib.py
Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib.
12 years ago
pdb.py
Issue #22186: Fix typos in Lib/.
12 years ago
pickle.py
Issue #23611: Serializing more "lookupable" objects (such as unbound methods
11 years ago
pickletools.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
pipes.py
Issue #13590: Improve support for OS X Xcode 4:
14 years ago
pkgutil.py
Issue #20383: Introduce importlib.util.module_from_spec().
12 years ago
platform.py
Issue #22831: Use "with" to avoid possible fd leaks.
11 years ago
plistlib.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
poplib.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
posixpath.py
Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath.
11 years ago
pprint.py
Issue #22721: An order of multiline pprint output of set or dict containing
11 years ago
profile.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
pstats.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
pty.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
py_compile.py
Issue #23811: Add missing newline to the PyCompileError error message.
11 years ago
pyclbr.py
Issue 19944: Fix importlib.find_spec() so it imports parents as needed.
13 years ago
pydoc.py
Issue #23731: Implement PEP 488.
11 years ago
queue.py
Issue #22043: time.monotonic() is now always available
12 years ago
quopri.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
random.py
merge
12 years ago
re.py
Issue #22364: Improved some re error messages using regex for hints.
11 years ago
reprlib.py
Issue #22824: Simplify reprlib output format for empty arrays
12 years ago
rlcompleter.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
runpy.py
Issue #20383: Introduce importlib.util.module_from_spec().
12 years ago
sched.py
Issue #23326: Removed __ne__ implementations. Since fixing default __ne__
12 years ago
selectors.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
shelve.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
shlex.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
shutil.py
Issue #21775: shutil.copytree(): fix crash when copying to VFAT
12 years ago
signal.py
issue23673
11 years ago
site.py
merge 3.4
12 years ago
smtpd.py
merge 3.4 (#23873)
11 years ago
smtplib.py
#16914: fix test errors under -W error::BytesWarning.
11 years ago
sndhdr.py
#18615: Make sndhdr return namedtuples.
12 years ago
socket.py
issue23673
11 years ago
socketserver.py
Issue #23285: PEP 475 -- Retry system calls failing with EINTR.
12 years ago
sre_compile.py
Issue #22364: Improved some re error messages using regex for hints.
11 years ago
sre_constants.py
Issue #22831: Use "with" to avoid possible fd leaks.
11 years ago
sre_parse.py
Issue #14260: The groupindex attribute of regular expression pattern object
11 years ago
ssl.py
issue23673
11 years ago
stat.py
Issue #21741: Add st_file_attributes to os.stat_result on Windows.
12 years ago
statistics.py
Issue #22823: Use set literals instead of creating a set from a list
12 years ago
string.py
Issue #23671: string.Template now allows to specify the "self" parameter as
11 years ago
stringprep.py
Merged revisions 55007-55179 via svnmerge from
19 years ago
struct.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
subprocess.py
Add a subprocess.run() function than returns a CalledProcess instance for a
11 years ago
sunau.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
symbol.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
symtable.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
sysconfig.py
Closes #23437: Make user scripts directory versioned on Windows (patch by pmoore)
12 years ago
tabnanny.py
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
14 years ago
tarfile.py
Issue 23193: Add numeric_owner to tarfile.TarFile.extract() and tarfile.TarFile.extractall().
11 years ago
telnetlib.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
tempfile.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
textwrap.py
Escaped backslashes in docstrings.
11 years ago
this.py
Fix most trivially-findable print statements.
20 years ago
threading.py
Merge: #11866: Eliminate race condition in the computation of names for new threads.
12 years ago
timeit.py
Issue #18983: Allow selection of output units in timeit.
11 years ago
token.py
Issue #22831: Use "with" to avoid possible fd leaks.
11 years ago
tokenize.py
Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with
12 years ago
trace.py
Issue #23731: Implement PEP 488.
11 years ago
traceback.py
Issue #23883: Add missing entries to traceback.__all__.
11 years ago
tracemalloc.py
Issue #23731: Implement PEP 488.
11 years ago
tty.py
final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be
26 years ago
turtle.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
types.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
uu.py
Issue #10266: uu.decode didn't close in_file explicitly when it was given
16 years ago
uuid.py
Issue #23326: Removed __ne__ implementations. Since fixing default __ne__
12 years ago
warnings.py
Issue #23731: Implement PEP 488.
11 years ago
wave.py
Issue #23865: close() methods in multiple modules now are idempotent and more
11 years ago
weakref.py
Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with an iterator alive.
12 years ago
webbrowser.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
xdrlib.py
Suppress a couple more DeprecationWarnings in the test suite.
12 years ago
zipapp.py
#23657 Don't explicitly do an isinstance check for str in zipapp
11 years ago
zipfile.py
Issue #23731: Implement PEP 488.
11 years ago