cpython/Lib
2013-11-02 17:08:24 +02:00
..
asyncio asyncio: Better-looking errors when ssl module cannot be imported. In part by Arnaud Faure. 2013-11-01 14:22:30 -07:00
collections whitespace cleanup 2013-10-13 02:27:22 +02:00
concurrent Fix import of SimpleQueue. 2013-10-16 17:06:22 +01:00
ctypes
curses
dbm #17198: merge with 3.3. 2013-07-07 13:16:05 +02:00
distutils Bump to 3.3.3rc1. 2013-10-27 09:22:59 +01:00
email #18891: Complete new provisional email API. 2013-10-16 22:48:40 -04:00
encodings
html #15114: The html.parser module now raises a DeprecationWarning when the strict argument of HTMLParser or the HTMLParser.error method are used. 2013-11-02 17:08:24 +02:00
http merge 3.3 (#19435) 2013-10-30 12:51:16 -04:00
idlelib Bump to 3.3.3rc1. 2013-10-27 09:22:59 +01:00
importlib Abstract out stat calls in importlib for easier experimentation. 2013-11-01 14:04:24 -04:00
json #18958: Improve error message for json.load(s) while passing a string that starts with a UTF-8 BOM. 2013-10-21 02:10:55 +03:00
lib2to3 Issue #18037: Do not escape '\u' and '\U' in raw strings. 2013-10-08 21:08:48 +03:00
logging Issue #19182: Fixed socket leak on exception when connecting. 2013-10-06 18:36:00 +01:00
msilib
multiprocessing Merge. 2013-10-28 23:23:04 +00:00
plat-aix4
plat-darwin
plat-freebsd4
plat-freebsd5
plat-freebsd6
plat-freebsd7
plat-freebsd8
plat-generic
plat-linux
plat-netbsd1
plat-next3
plat-sunos5
plat-unixware7 Merged revisions 55817-55961 via svnmerge from 2007-06-13 18:07:49 +00:00
pydoc_data Update pydoc topics. 2013-10-27 09:08:16 +01:00
site-packages
sqlite3 #18741: merge with 3.3. 2013-08-17 16:13:22 +03:00
test #15114: The html.parser module now raises a DeprecationWarning when the strict argument of HTMLParser or the HTMLParser.error method are used. 2013-11-02 17:08:24 +02:00
tkinter Issue #19085. Try to fix tkinter tests on Windows. 2013-11-02 16:41:23 +02:00
turtledemo Issue # 17177: Stop using imp in turtledemo 2013-06-15 17:33:27 -04:00
unittest Issue #19352: Fix unittest discovery when a module can be reached through several paths (e.g. under Debian/Ubuntu with virtualenv). 2013-10-23 19:15:05 +02:00
urllib
venv Closes #19349: Merged fix from 3.3. 2013-10-31 18:44:48 +00:00
wsgiref Closes #19258: close WSGI server after handling request in demo code. 2013-10-14 16:52:13 +02:00
xml merge 3.3 (#19127) 2013-09-29 11:15:49 -04:00
xmlrpc
__future__.py
__phello__.foo.py
_bootlocale.py Fix wrong exception in _bootlocale (apparently this error condition is never triggered) 2013-10-12 15:00:44 +02:00
_collections_abc.py Issue #19218: set __name__ of _collections_abc to collections.abc in order to fix tests and keep beautiful qualified names. 2013-10-13 02:21:33 +02:00
_compat_pickle.py
_dummy_thread.py
_markupbase.py
_osx_support.py Issue #19400: Prevent extension module build failures with Xcode 5 on OS X 2013-10-25 16:03:35 -07:00
_pyio.py Issue #17003: Unified the size argument names in the io module with common 2013-09-16 23:18:10 +03:00
_sitebuiltins.py
_strptime.py
_threading_local.py Issue #9707: Rewritten reference implementation of threading.local which 2010-09-07 22:06:17 +00:00
_weakrefset.py
abc.py
aifc.py Issue #19131: The aifc module now correctly reads and writes sampwidth of 2013-10-12 18:23:21 +03:00
antigravity.py Another hidden treasure. 2009-06-03 17:21:17 +00:00
argparse.py
ast.py
asynchat.py
asyncore.py Do not raise exception on close() on account of socket attribute still being None: 2013-04-09 17:21:25 +02:00
base64.py Close #17839: support bytes-like objects in base64 module 2013-10-03 00:43:22 +10:00
bdb.py issue13183 - Fix pdb skipping frames after hitting a breakpoint and running step. Patch by Xavier de Gaye 2012-05-01 10:07:49 +08:00
binhex.py remove unused imports (closes #12432) 2011-06-28 10:25:04 -05:00
bisect.py
bz2.py Issue #19223: Add support for the 'x' mode to the bz2 module. 2013-10-19 00:11:06 +02:00
calendar.py
cgi.py Closes #17335: remove no-op assignment. 2013-10-13 22:16:48 +02:00
cgitb.py
chunk.py
cmd.py
code.py Closes #17730: in code.interact(), when banner="", do not print anything. 2013-10-13 21:49:06 +02:00
codecs.py
codeop.py
colorsys.py
compileall.py
configparser.py Merged fix for issue #18260 from 3.3 2013-06-23 19:12:12 +02:00
contextlib.py Close #19330 by using public classes in contextlib 2013-10-26 18:08:15 +10:00
copy.py
copyreg.py Closes #13258: Use callable() built-in in the standard library. 2011-10-28 14:45:05 +02:00
cProfile.py
crypt.py Issue #18405: Improve the entropy of crypt.mksalt(). 2013-08-14 01:39:14 +02:00
csv.py #18155: Regex-escape delimiter, in case it is a regex special char. 2013-06-29 18:40:53 -04:00
datetime.py improve comment 2013-08-29 17:29:30 -04:00
decimal.py
difflib.py #18705: merge with 3.3. 2013-08-17 15:53:55 +03:00
dis.py Close #18538: `python -m dis` now uses argparse. 2013-08-25 00:48:17 +10:00
doctest.py
dummy_threading.py
enum.py Close #19156: add tests and fix for Enum helper edge cases. Patch from CliffM. 2013-10-06 17:19:54 -07:00
filecmp.py
fileinput.py
fnmatch.py Set cache sizes to a power-of-two 2013-02-17 01:33:37 -08:00
formatter.py Issue #18716: Deprecate the formatter module 2013-10-04 11:38:59 -04:00
fractions.py
ftplib.py Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read by 2013-10-20 17:02:10 +03:00
functools.py Close #10042: functools.total_ordering now handles NotImplemented 2013-10-02 00:02:03 +10:00
genericpath.py
getopt.py
getpass.py
gettext.py
glob.py
gzip.py Issue #19222: Add support for the 'x' mode to the gzip module. 2013-10-19 00:11:13 +02:00
hashlib.py Issue #18742: Rework the internal hashlib construtor to pave the road for ABCs. 2013-10-22 14:59:12 +02:00
heapq.py Issue #18962: Optimize the single iterator case for heapq.merge() 2013-09-11 01:15:40 -05:00
hmac.py
imaplib.py merge with 3.3 2013-10-27 07:46:09 +01:00
imghdr.py Replace IOError with OSError (#16715) 2012-12-25 16:47:37 +02:00
imp.py
inspect.py Issue #19030: final pieces for proper location of various class attributes located in the metaclass. 2013-10-20 22:37:39 -07:00
io.py
ipaddress.py #17400: correct handling of 100.64.0.0/10, fixing the docs and updating NEWS 2013-10-24 09:47:10 -07:00
keyword.py
linecache.py
locale.py Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io module instead of the full locale module. 2013-10-12 00:13:50 +02:00
lzma.py Issue #19201: Add support for the 'x' mode to the lzma module. 2013-10-19 00:06:19 +02:00
macpath.py
macurl2path.py Increase the coverage of macurl2path. Patch by Colin Williams. 2013-10-23 21:50:56 -07:00
mailbox.py
mailcap.py
mimetypes.py Issue #15207: Fix mimetypes to read from correct area in Windows registry (Original patch by Dave Chambers) 2013-10-22 20:03:47 +01:00
modulefinder.py
netrc.py
nntplib.py merge with 3.3 2013-10-27 07:46:09 +01:00
ntpath.py
nturl2path.py Replace IOError with OSError (#16715) 2012-12-25 16:47:37 +02:00
numbers.py
opcode.py
operator.py Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) 2013-07-04 17:43:24 -04:00
optparse.py
os.py Issue #19218: Rename collections.abc to _collections_abc in order to speed up interpreter start 2013-10-13 02:04:20 +02:00
pdb.py merge with 3.3 2013-10-14 16:08:25 +02:00
pickle.py Issue #18783: Removed existing mentions of Python long type in docstrings, 2013-08-27 20:17:03 +03:00
pickletools.py
pipes.py Merge doc changes from 3.2 (#10454, #12298) 2011-09-02 00:03:20 +02:00
pkgutil.py Close #19409: add missing import in pkgutil 2013-10-27 00:27:39 +10:00
platform.py #8964: merge with 3.3. 2013-10-21 03:05:46 +03:00
plistlib.py
poplib.py merge with 3.3 2013-10-27 07:46:09 +01:00
posixpath.py
pprint.py Remove builtin "caching" in pprint 2013-10-03 21:29:36 +02:00
profile.py
pstats.py
pty.py
py_compile.py
pyclbr.py #14798: pyclbr now raises ImportError instead of KeyError for missing packages 2012-05-18 21:59:49 +03:00
pydoc.py Issue #19030: final pieces for proper location of various class attributes located in the metaclass. 2013-10-20 22:37:39 -07:00
queue.py
quopri.py
random.py Issue #19218: Rename collections.abc to _collections_abc in order to speed up interpreter start 2013-10-13 02:04:20 +02:00
re.py Back out accidentally pushed changeset b51218966201. 2013-10-13 09:32:59 +02:00
reprlib.py
rlcompleter.py
runpy.py
sched.py
selectors.py Close resources owned by subclass before calling super().close(). 2013-10-31 11:01:40 -07:00
shelve.py
shlex.py Revert "Issue #16121: Fix line number accounting in shlex" 2013-02-23 23:12:35 +01:00
shutil.py
site.py Issue #19375: The site module adding a "site-python" directory to sys.path, if it exists, is now deprecated. 2013-10-25 21:39:26 +02:00
smtpd.py
smtplib.py
sndhdr.py
socket.py
socketserver.py
sre_compile.py Issue #19329: Optimized compiling charsets in regular expressions. 2013-10-27 08:20:29 +02:00
sre_constants.py
sre_parse.py Issue #19365: Optimized the parsing of long replacement string in re.sub*() 2013-10-23 22:27:52 +03:00
ssl.py merge with 3.3 2013-10-27 07:46:09 +01:00
stat.py
statistics.py remove unused imports from statistics module 2013-10-25 02:11:17 +02:00
string.py Merge #13579: teach string.Formatter about 'a'. 2012-08-19 17:45:40 -04:00
stringprep.py
struct.py Issue #17804: New function `struct.iter_unpack` allows for streaming struct unpacking. 2013-04-27 00:20:04 +02:00
subprocess.py Close #19284: Handle -R properly in flag helper 2013-10-18 22:39:50 +10:00
sunau.py Issue #18919: If the close() method of a writer in the sunau or wave module 2013-10-12 21:36:10 +03:00
symbol.py remain symbol.main to symbol._main mirroring token.py 2013-02-05 10:13:22 -05:00
symtable.py merge 3.3 (#19393) 2013-10-26 13:22:08 -04:00
sysconfig.py Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX. 2013-10-19 22:06:26 +02:00
tabnanny.py Replace IOError with OSError (#16715) 2012-12-25 16:47:37 +02:00
tarfile.py Close #18281: superfluous stat constants removed from tarfile 2013-10-12 18:13:02 -07:00
telnetlib.py (Merge 3.3) Close #19339: telnetlib module is now using time.monotonic() when 2013-10-26 09:20:38 +02:00
tempfile.py Issue14255 Don't flatten case of tempdir 2013-10-25 18:38:16 +01:00
textwrap.py Add shorten to __all_ (issues #18585 and #18725). 2013-10-16 13:07:53 +03:00
this.py
threading.py Changed a comment to end grammar bikeshedding ;-) 2013-10-26 11:56:16 -05:00
timeit.py
token.py Replace IOError with OSError (#16715) 2012-12-25 16:47:37 +02:00
tokenize.py
trace.py
traceback.py merge with 3.3 2013-10-13 23:34:06 +02:00
tty.py
turtle.py
types.py Close #19030: inspect.getmembers and inspect.classify_class_attrs 2013-10-18 00:27:39 -07:00
uu.py
uuid.py
warnings.py Close #19379: Lazily import linecache in the warnings module, to make startup with warnings faster until a warning gets printed. 2013-10-24 22:23:42 +02:00
wave.py Issue #19276: Fixed the wave module on 64-bit big-endian platforms. 2013-10-17 23:05:19 +03:00
weakref.py
webbrowser.py
xdrlib.py
zipfile.py add filtering of individual files to PyZipFile 2013-10-22 04:09:28 +02:00