summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* Do not print additional shutdown message when gc.DEBUG_SAVEALL is setAntoine Pitrou2010-09-141-1/+2
* - Issue #9817: Add expat COPYING file; add expat, libffi and expat licensesMatthias Klose2010-09-121-0/+21
* Fixed refcount bug. I placed Py_INCREF in create_comerror() for compatibilityHirokazu Yamamoto2010-09-121-0/+1
* Isse #8589: Decode PYTHONWARNINGS from utf-8 on Mac OS XVictor Stinner2010-09-121-2/+6
* Remove compatibility code for Python < 2.1, < 2.2 and < 2.4.Georg Brandl2010-09-111-42/+0
* Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error onVictor Stinner2010-09-111-0/+12
* Issue #9579, #9580: Fix os.confstr() for value longer than 255 bytes and encodeVictor Stinner2010-09-101-20/+22
* Issue #8589: surrogateescape error handler is not available at startupVictor Stinner2010-09-101-6/+11
* Issue #9402: pyexpat uses Py_DECREF() instead of PyObject_DEL()Victor Stinner2010-09-101-15/+8
* Issue #941346: Improve the build process under AIX and allow Python toAntoine Pitrou2010-09-101-7/+11
* Untabify file.Amaury Forgeot d'Arc2010-09-101-3/+3
* Issue #9410: Various optimizations to the pickle module, leading toAntoine Pitrou2010-09-091-519/+1830
* #6394: Add os.getppid() support for Windows.Amaury Forgeot d'Arc2010-09-071-2/+52
* Issue #9758: When fcntl.ioctl() was called with mutable_flag set to True,Antoine Pitrou2010-09-071-1/+1
* More docstring updatesAmaury Forgeot d'Arc2010-09-061-4/+5
* Issue #5506: BytesIO objects now have a getbuffer() method exporting aAntoine Pitrou2010-09-063-0/+145
* Implement #7566 - os.path.sameopenfile for Windows.Brian Curtin2010-09-061-0/+28
* Clean up the fix to #9324 with some of the suggestions raised on python-devBrian Curtin2010-09-061-11/+10
* hashlib has two new constant attributes: algorithms_guaranteed andGregory P. Smith2010-09-061-1/+69
* Issue #9293: I/O streams now raise `io.UnsupportedOperation` when anAntoine Pitrou2010-09-053-21/+14
* Fix for issue9662, patch by Łukasz Langa in issue5504.Ronald Oussoren2010-09-053-3/+9
* #9776: fix some spacing.Georg Brandl2010-09-051-3/+3
* #9747: fix copy-paste error in getresgid() doc.Georg Brandl2010-09-051-1/+1
* Inline cmp_lt().Raymond Hettinger2010-09-051-15/+11
* Issue #7451: Improve decoding performance of JSON objects, and reduceAntoine Pitrou2010-09-041-45/+82
* Fix typos in error messages (thanks Arfrever).Antoine Pitrou2010-09-041-2/+2
* Issue #7736: Release the GIL around calls to opendir() and closedir()Antoine Pitrou2010-09-041-1/+10
* Welcome to the UTF-8 world.Florent Xicluna2010-09-0317-17/+17
* Fix invalid bytes for UTF-8Éric Araujo2010-09-031-1/+1
* Issue #3805: clean up implementation of the _read method in _ssl.c.Antoine Pitrou2010-09-031-29/+30
* Fix Issue9753: socket.dup() does not always work right on WindowsDaniel Stutzbach2010-09-031-8/+5
* BytesIO.getvalue() and StringIO.getvalue() are METH_NOARGS.Antoine Pitrou2010-09-022-2/+2
* Try to fix some buildbot failures on test_sslAntoine Pitrou2010-09-011-0/+1
* Issue #8990: array.fromstring() and array.tostring() get renamed toAntoine Pitrou2010-09-011-17/+77
* Issue #9693 - msg 115273: attempt to fix ssl module failures on certain OpenS...Giampaolo Rodolà2010-09-011-0/+3
* Fix line wrappingRaymond Hettinger2010-09-011-4/+2
* Issue 5553: Improved Py_LOCAL_INLINE to actually inline under compilers other...Daniel Stutzbach2010-08-311-3/+0
* Fix issue issue9706: provides a better error handling for various SSL operationsGiampaolo Rodolà2010-08-291-3/+20
* Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() privateAntoine Pitrou2010-08-281-0/+8
* Issue #1868: Eliminate subtle timing issues in thread-local objects byAntoine Pitrou2010-08-281-43/+38
* Add file needed to make distclean.Martin v. Löwis2010-08-281-0/+430
* Issue #9704: Add zlib files necessary to run configureMartin v. Löwis2010-08-288-0/+2387
* Issue #1027206: getnameinfo is now restricted to numeric addresses as input.Martin v. Löwis2010-08-251-0/+1
* Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use m...Daniel Stutzbach2010-08-243-9/+8
* tabbing no longer applicableBenjamin Peterson2010-08-241-1/+1
* Under OS X, history_get from readline returns a const char *, but the localBrett Cannon2010-08-221-3/+3
* Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex andMartin v. Löwis2010-08-221-10/+18
* Issue #9617: Signals received during a low-level write operation aren'tAntoine Pitrou2010-08-211-0/+10
* PYTHONFSENCODING is not available on Windows or Mac OS XVictor Stinner2010-08-191-7/+9
* Decode NIS data to fs encoding, using the surrogate error handler.Martin v. Löwis2010-08-191-8/+18