summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* Issue #17401: Output the closefd attribute as boolean.Serhiy Storchaka2014-12-021-4/+4
|
* Fix uninitialized variable after #22676.Antoine Pitrou2014-12-011-7/+17
|
* Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-012-2/+2
|\
| * Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-012-2/+2
| |
* | Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2014-11-281-0/+4
| | | | | | | | | | | | availability of the function is checked during the compilation. Patch written by Bernard Spil.
* | Issue 22940: fixes to editline supportNed Deily2014-11-261-1/+1
| |
* | only support append_history if readline has itBenjamin Peterson2014-11-261-0/+4
| |
* | add readline.append_history_file (closes #22940)Benjamin Peterson2014-11-261-0/+37
| | | | | | | | patch by "bru"
* | merge 3.4 (#22921)Benjamin Peterson2014-11-231-12/+0
|\ \ | |/
| * don't require OpenSSL SNI to pass hostname to ssl functions (#22921)Benjamin Peterson2014-11-231-6/+0
| | | | | | | | Patch by Donald Stufft.
* | Issue #22869: Split pythonrun into two modulesNick Coghlan2014-11-202-2/+2
| | | | | | | | | | | | | | - interpreter startup and shutdown code moved to a new pylifecycle.c module - Py_OptimizeFlag moved into the new module with the other global flags
* | merge 3.4 (#22849)Benjamin Peterson2014-11-121-1/+1
|\ \ | |/
| * fix possible double free in TextIOWrapper.__init__ (closes #22849)Benjamin Peterson2014-11-121-1/+1
| |
* | Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endianSerhiy Storchaka2014-11-101-3/+3
|\ \ | |/ | | | | platforms.
| * Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endianSerhiy Storchaka2014-11-101-2/+2
| | | | | | | | platforms.
* | Issue 20152, 22821: Port the fcntl module to Argument Clinic.Brett Cannon2014-11-102-210/+416
| | | | | | | | | | | | | | | | Along the way, fix an argumrnt to fcntl.fcntl to be an int instead of a long. Thanks to Serhiy Storchaka for reviewing my Clinic patch and for writing the patch to fix the long/int issue.
* | merge 3.4Benjamin Peterson2014-11-061-4/+4
|\ \ | |/
| * fix test where sizeof(long) != sizeof(int)Benjamin Peterson2014-11-061-4/+4
| |
* | Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows ↵Steve Dower2014-11-065-12/+81
|\ \ | |/ | | | | (large structs) Patch by mattip
| * Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows ↵Steve Dower2014-11-055-12/+81
| | | | | | | | (large structs) Patch by mattip
* | Issue #20597: Remove unused definition of PATH_MAX on Windows, MAXPATHLEN isVictor Stinner2014-11-051-1/+0
| | | | | | | | now preferred. Patch written by Jeffrey Armstrong.
* | Issue #22773: fix failing test with old readline versions due to issue #19884.Antoine Pitrou2014-11-041-0/+4
|\ \ | |/
| * Issue #22773: fix failing test with old readline versions due to issue #19884.Antoine Pitrou2014-11-041-0/+4
| |
* | Issue #17381: Fixed handling of case-insensitive ranges in regular expressions.Serhiy Storchaka2014-10-314-11/+50
| | | | | | | | Added new opcode RANGE_IGNORE.
* | merge with 3.4Georg Brandl2014-10-281-1/+1
|\ \ | |/
| * Fix typo.Georg Brandl2014-10-281-1/+1
| |
* | Issue #22676: Make the pickling of global objects which don't have a ↵Antoine Pitrou2014-10-231-36/+72
| | | | | | | | __module__ attribute less slow.
* | Issue #22592: Drop support of the Borland C compiler to build PythonVictor Stinner2014-10-222-22/+3
| | | | | | | | The distutils module still supports it to build extensions.
* | Issue #17401: document closefd in io.FileIO docs and add to reprRobert Collins2014-10-181-4/+6
| | | | | | | | | | | | | | | | | | | | closefd was documented in the open docs but not the matching FileIO class documented. Further, closefd, part of the core state for the object was not shown. In review it was noted that the open docs are a little confusing about the interaction between closefd and paths, so tweaked them at the same time.
* | Issue #20152: Convert the cmath module to Argument Clinic.Brett Cannon2014-10-142-222/+1118
| |
* | Issue #22615: Argument Clinic now supports the "type" argument for theLarry Hastings2014-10-132-57/+60
| | | | | | | | | | int converter. This permits using the int converter with enums and typedefs.
* | Merge: #13096: Fix segfault in CTypes POINTER handling of large values.R David Murray2014-10-121-2/+8
|\ \ | |/
| * #13096: Fix segfault in CTypes POINTER handling of large values.R David Murray2014-10-121-2/+8
| | | | | | | | Patch by Meador Inge.
* | #22568: merge with 3.4Georg Brandl2014-10-121-6/+6
|\ \ | |/
| * Closes #22568: fix UTIME_TO_* macros in posixmodule for rare cases.Georg Brandl2014-10-121-6/+6
| |
* | merge 3.4 (closes #22605)Benjamin Peterson2014-10-111-1/+1
|\ \ | |/
| * prevent passing NULL to memcpy (closes #22605)Benjamin Peterson2014-10-111-1/+1
| | | | | | | | Patch by Jakub Wilk.
* | Issue #20152: Port the array module to Argument Clinic.Brett Cannon2014-10-102-273/+866
| |
* | Issue #22584: Got rid of character tables in _sre.c and use standard macrosSerhiy Storchaka2014-10-101-34/+6
| | | | | | | | Py_TOLOWER, Py_ISSPACE, etc.
* | Closes #22579: Fix posixmodule.c to support any C compiler on WindowsVictor Stinner2014-10-091-1/+1
| |
* | Merge 3.4Victor Stinner2014-10-091-1/+1
|\ \ | |/
| * Issue #22588: Fix typo in _testcapi.test_incref_decref_API()Victor Stinner2014-10-091-1/+1
| |
* | (Merge 3.4) Issue #22568: Fix compilation of posixmodule.c with Open Watcom:Victor Stinner2014-10-091-21/+21
|\ \ | |/ | | | | | | rename "utime" variable to "ut" to avoid conflict with the C utime() function. Patch written by Jeffrey Armstrong.
| * Issue #22568: Fix compilation of posixmodule.c with Open Watcom: rename "utime"Victor Stinner2014-10-091-21/+21
| | | | | | | | | | variable to "ut" to avoid conflict with the C utime() function. Patch written by Jeffrey Armstrong.
* | Issue #21715: Extracted shared complicated code in the _io module to newSerhiy Storchaka2014-10-083-41/+6
|\ \ | |/ | | | | _PyErr_ChainExceptions() function.
| * Issue #21715: Extracted shared complicated code in the _io module to newSerhiy Storchaka2014-10-083-41/+6
| | | | | | | | _PyErr_ChainExceptions() function.
* | Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ↵Antoine Pitrou2014-10-084-160/+9
|\ \ | |/ | | | | | | | | exception tracebacks. Initial patch by Mark Shannon.
| * Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ↵Antoine Pitrou2014-10-084-160/+9
| | | | | | | | | | | | exception tracebacks. Initial patch by Mark Shannon.
* | Issue #21965: Add support for in-memory SSL to the ssl module.Antoine Pitrou2014-10-051-76/+456
| | | | | | | | Patch by Geert Jansen.
* | #16518: Bring error messages in harmony with docs ("bytes-like object")R David Murray2014-10-051-1/+1
| | | | | | | | | | | | | | | | | | | | Some time ago we changed the docs to consistently use the term 'bytes-like object' in all the contexts where bytes, bytearray, memoryview, etc are used. This patch (by Ezio Melotti) completes that work by changing the error messages that previously reported that certain types did "not support the buffer interface" to instead say that a bytes-like object is required. (The glossary entry for bytes-like object references the discussion of the buffer protocol in the docs.)