cpython/Lib
Christian Heimes b7bd5df809 Issue #16595: Add prlimit() to resource module
prlimit() is a Linux specific command that combines setrlimit, getrlimit and can set the limit
of other processes.
2013-10-22 11:21:54 +02:00
..
asyncio Switch subprocess stdin to a socketpair, attempting to fix issue #19293 (AIX hang). 2013-10-21 20:37:14 -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 #18981: merge with 3.3. 2013-09-13 23:54:41 +03:00
curses
dbm
distutils Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except when necessary. 2013-09-30 22:29:48 +02:00
email #18891: Complete new provisional email API. 2013-10-16 22:48:40 -04:00
encodings
html
http merge from 3.3 2013-09-29 18:59:27 -07:00
idlelib Version bump to 3.4.0a3. 2013-09-28 23:51:00 +01:00
importlib cleanup the construction of __qualname__ (closes #19301 again) 2013-10-20 17:50:28 -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 Issue #18999: Make multiprocessing use context objects. 2013-10-16 16:41:56 +01: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
pydoc_data Updated pydoc topics.py for 3.4a3 release. 2013-09-28 23:43:34 +01:00
site-packages
sqlite3 #18741: merge with 3.3. 2013-08-17 16:13:22 +03:00
test Issue #16595: Add prlimit() to resource module 2013-10-22 11:21:54 +02:00
tkinter Issue #19029: Change non-existing since 3.0 StringType to str. 2013-09-16 11:03:59 +03:00
turtledemo
unittest Issue #18996: TestCase.assertEqual() now more cleverly shorten differing 2013-09-23 23:07:00 +03:00
urllib Issue #18978: A more elegant technique for resolving the method 2013-09-08 12:54:33 -04:00
venv Closes #19139: Changed usage of __VENV_NAME__ and added __VENV_PROMPT__. 2013-10-02 11:36:16 +01: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 Issue #18571: Implementation of the PEP 446: file descriptors and file handles 2013-08-28 00:53:59 +02:00
__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 Issue #18808: Thread.join() now waits for the underlying thread state to be destroyed before returning. 2013-09-07 23:38:37 +02:00
_markupbase.py
_osx_support.py Issue #14499: Fix several problems with OS X universal build support: 2013-10-18 21:09:56 -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 #18705: merge with 3.3. 2013-08-17 15:53:55 +03:00
_threading_local.py
_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
argparse.py Issue #18920: argparse's default version action (for -v, --version) should 2013-09-06 06:49:15 -07:00
ast.py
asynchat.py Issue #18743: Fix references to non-existant "StringIO" module 2013-08-29 11:39:48 +03:00
asyncore.py
base64.py Close #17839: support bytes-like objects in base64 module 2013-10-03 00:43:22 +10:00
bdb.py
binhex.py
bisect.py
bz2.py Issue #19223: Add support for the 'x' mode to the bz2 module. 2013-10-19 00:11:06 +02:00
cProfile.py
calendar.py #18705: fix a number of typos. Patch by Févry Thibault. 2013-08-17 15:50:46 +03:00
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
contextlib.py contextlib doc updates and refactoring 2013-10-20 00:30:51 +10:00
copy.py
copyreg.py
crypt.py Issue #18405: Improve the entropy of crypt.mksalt(). 2013-08-14 01:39:14 +02:00
csv.py
datetime.py improve comment 2013-08-29 17:29:30 -04:00
decimal.py merge from 3.3 2013-09-07 23:20:06 -07:00
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 Fix tests for #11798 2013-08-29 01:24:39 +03:00
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
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 #18705: merge with 3.3. 2013-08-17 15:53:55 +03:00
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 #19254: Provide an optimized Python implementation of PBKDF2_HMAC 2013-10-19 14:12:02 +02:00
heapq.py Issue #19018: The heapq.merge() function no longer suppresses IndexError 2013-09-14 20:51:57 -07:00
hmac.py
imaplib.py
imghdr.py
imp.py merge for issue #18755 2013-08-23 11:52:19 -04:00
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; ipaddress should make it easy to identify rfc6598 addresses 2013-10-21 13:58:06 -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
mailbox.py Merge #19037: adjust file times *before* moving maildir files into place. 2013-09-18 08:36:36 -04:00
mailcap.py
mimetypes.py
modulefinder.py #18705: merge with 3.3. 2013-08-17 15:53:55 +03:00
netrc.py Merge #14984: only import pwd on POSIX. 2013-09-18 08:59:47 -04:00
nntplib.py
ntpath.py
nturl2path.py
numbers.py
opcode.py
operator.py
optparse.py #18705: fix a number of typos. Patch by Févry Thibault. 2013-08-17 15:50:46 +03:00
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 Issue #18783: Removed existing mentions of Python long type in docstrings, 2013-08-27 20:17:03 +03:00
pipes.py
pkgutil.py
platform.py #8964: merge with 3.3. 2013-10-21 03:05:46 +03:00
plistlib.py
poplib.py #18705: merge with 3.3. 2013-08-17 15:53:55 +03: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
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 Issue #18676: Change 'positive' to 'non-negative' in queue.py put and get 2013-08-10 18:17:13 -04:00
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 #18705: merge with 3.3. 2013-08-17 15:53:55 +03:00
runpy.py
sched.py
selectors.py Issue #16853: Add new selectors module. 2013-09-04 19:02:49 +02:00
shelve.py
shlex.py
shutil.py #18705: merge with 3.3. 2013-08-17 15:53:55 +03:00
site.py Issue #19205 fix 406529adf156 2013-10-12 00:28:17 +02:00
smtpd.py Issue #18922: Now The Lib/smtpd.py and Tools/i18n/msgfmt.py scripts write 2013-09-05 17:44:53 +03:00
smtplib.py
sndhdr.py
socket.py Switch the AF_* and SOCK_* constants in the socket module to IntEnum. 2013-08-31 15:13:30 -07:00
socketserver.py
sre_compile.py Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0 2013-09-20 21:24:39 +03:00
sre_constants.py Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0 2013-09-20 21:24:39 +03:00
sre_parse.py Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0 2013-09-20 21:24:39 +03:00
ssl.py #18705: merge with 3.3. 2013-08-17 15:53:55 +03:00
stat.py
statistics.py Issue #18606: Add the new "statistics" module (PEP 450). Contributed 2013-10-19 11:50:09 -07:00
string.py
stringprep.py
struct.py
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
symtable.py
sysconfig.py Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX. 2013-10-19 22:06:26 +02:00
tabnanny.py
tarfile.py Close #18281: superfluous stat constants removed from tarfile 2013-10-12 18:13:02 -07:00
telnetlib.py Issue #19170: telnetlib: use selectors. 2013-10-21 14:02:12 +02:00
tempfile.py Issue #18849: Fixed a Windows-specific tempfile bug where collision with an 2013-09-06 06:14:16 -07:00
textwrap.py Add shorten to __all_ (issues #18585 and #18725). 2013-10-16 13:07:53 +03:00
this.py
threading.py merge with 3.3 2013-10-13 10:44:04 +02:00
timeit.py
token.py
tokenize.py Issue #18873: The tokenize module, IDLE, 2to3, and the findnocoding.py script 2013-09-16 23:57:00 +03:00
trace.py
traceback.py merge with 3.3 2013-10-13 23:34:06 +02:00
tty.py
turtle.py #18705: merge with 3.3. 2013-08-17 15:53:55 +03:00
types.py Close #19030: inspect.getmembers and inspect.classify_class_attrs 2013-10-18 00:27:39 -07:00
uu.py
uuid.py Issue #18784: The uuid module no more attempts to load libc via ctypes.CDLL, 2013-09-13 07:49:36 +03:00
warnings.py
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