summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* Issue #27066: Fixed SystemError if a custom opener (for open()) returns aBarry Warsaw2016-06-081-1/+7
|\ | | | | | | negative number without setting an exception.
| * Issue #27066: Fixed SystemError if a custom opener (for open()) returnsBarry Warsaw2016-06-081-1/+6
| | | | | | | | a negative number without setting an exception.
* | Issue #27164: Merge raw Deflate zdict support from 3.5Martin Panter2016-06-051-18/+44
|\ \ | |/
| * Issue #27164: Allow decompressing raw Deflate streams with predefined zdictMartin Panter2016-06-051-18/+44
| | | | | | | | Based on patch by Xiang Zhang.
* | issue27186: add open/io.open; patch by Jelle ZijlstraEthan Furman2016-06-041-16/+32
| |
* | issue27186: add C version of os.fspath(); patch by Jelle ZijlstraEthan Furman2016-06-042-1/+84
| |
* | merge 3.5Benjamin Peterson2016-06-021-19/+2
|\ \ | |/
| * remove (hilarious) defaults for various constants getpath.c needsBenjamin Peterson2016-06-021-19/+2
| |
* | replace custom validation logic in the parse module with a simple DFA ↵Benjamin Peterson2016-06-021-2452/+93
| | | | | | | | | | | | validator (closes #26526) Patch from A. Skrobov.
* | Issue #27171: Fix typo in exception messageMartin Panter2016-06-021-1/+1
| |
* | Issue #27171: Merge typo fixes from 3.5Martin Panter2016-06-024-7/+7
|\ \ | |/
| * Issue #27171: Fix typos in documentation, comments, and test function namesMartin Panter2016-06-024-7/+7
| |
* | Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-302-2/+2
|\ \ | |/
| * Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-302-2/+2
| |
* | Fix issue27146 - add stdio.h include to posixmodule.c for ctermid().Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-05-281-0/+2
|\ \ | |/
| * Fix issue27146 - add stdio.h include to posixmodule.c for ctermid().Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-05-281-0/+2
| |
* | Issue #20699: Merge io bytes-like fixes from 3.5Martin Panter2016-05-286-12/+13
|\ \ | |/
| * Issue #20699: Document that “io” methods accept bytes-like objectsMartin Panter2016-05-286-12/+13
| | | | | | | | | | | | | | | | This matches the usage of ZipFile and BufferedWriter. This still requires return values to be bytes() objects. Also document and test that the write() methods should only access their argument before they return.
* | Issue #5784: Merge zlib from 3.5Martin Panter2016-05-272-11/+17
|\ \ | |/
| * Issue #5784: Expand documentation and tests for zlib wbits parameterMartin Panter2016-05-272-11/+17
| | | | | | | | Based on documentation by AM Kuchling.
* | Issue #27076: Merge spelling from 3.5Martin Panter2016-05-265-13/+13
|\ \ | |/
| * Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-265-13/+13
| | | | | | | | Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
* | merge 3.5 (#27093)Benjamin Peterson2016-05-241-11/+15
|\ \ | |/
| * fix indentation and add curlies (closes #27093)Benjamin Peterson2016-05-241-11/+15
| |
* | Issue #26857: The gethostbyaddr_r() workaround is no longer needed withStefan Krah2016-05-221-1/+5
| | | | | | | | api-level >= 23. Patch by Xavier de Gaye.
* | Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"Serhiy Storchaka2016-05-201-0/+95
|\ \ | |/ | | | | format unit.
| * Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"Serhiy Storchaka2016-05-201-0/+95
| | | | | | | | format unit.
* | Issue #27056: Fix _Unpickler_Read() to avoid integer overflowVictor Stinner2016-05-201-1/+1
| |
* | Optimize pickle.load() and pickle.loads()Victor Stinner2016-05-201-19/+26
| | | | | | | | | | Issue #27056: Optimize pickle.load() and pickle.loads(), up to 10% faster to deserialize a lot of small objects.
* | - make some internal symbols staticdoko@ubuntu.com2016-05-173-3/+3
| |
* | Issue #26995: Added tests for "f", "d", "D", "S", "Y", and "U" format codesSerhiy Storchaka2016-05-161-0/+63
|\ \ | |/ | | | | in PyArg_ParseTuple().
| * Issue #26995: Added tests for "f", "d", "D", "S", "Y", and "U" format codesSerhiy Storchaka2016-05-161-0/+63
| | | | | | | | in PyArg_ParseTuple().
| * Backported tests for issue #18531.Serhiy Storchaka2016-05-161-0/+22
| |
* | merge from 3.5Senthil Kumaran2016-05-151-1/+1
|\ \ | |/ | | | | issue27018 - Fix the documentation of select.epoll.register method.
| * issue27018 - Fix the documentation of select.epoll.register method.Senthil Kumaran2016-05-151-1/+1
| |
* | Issue #26870: Add readline.set_auto_history(), originally by Tyler CromptonMartin Panter2016-05-151-1/+20
| |
* | Merge ctypes from 3.5Martin Panter2016-05-141-4/+0
|\ \ | |/
| * Remove outdated PEP 291 compatibility requirement commentMartin Panter2016-05-141-4/+0
| |
* | Issue #25745: Fixed leaking a userptr in curses panel destructor.Serhiy Storchaka2016-05-081-0/+5
|\ \ | |/
| * Issue #25745: Fixed leaking a userptr in curses panel destructor.Serhiy Storchaka2016-05-081-0/+5
| |
* | Issue #18531: Single var-keyword argument of dict subtype was passedSerhiy Storchaka2016-05-081-0/+22
| | | | | | | | unscathed to the C-defined function. Now it is converted to exact dict.
* | Issue #23815: Fixed crashes related to directly created instances of types inSerhiy Storchaka2016-05-082-3/+7
|\ \ | |/ | | | | _tkinter and curses.panel modules.
| * Issue #23815: Fixed crashes related to directly created instances of types inSerhiy Storchaka2016-05-082-3/+7
| | | | | | | | _tkinter and curses.panel modules.
* | Merge typo fixes from 3.5Martin Panter2016-05-082-3/+3
|\ \ | |/
| * Corrections for a/an in code comments and documentationMartin Panter2016-05-082-3/+3
| |
* | Issue #26512: Merge rounding doc from 3.5Martin Panter2016-05-081-4/+4
|\ \ | |/
| * Issue #26512: Clarify Integral; tidy up table of rounding functionsMartin Panter2016-05-081-4/+4
| | | | | | | | Based on patch by Julien.
* | Issue #26924: Fix Windows buildbotsBerker Peksag2016-05-071-1/+1
| | | | | | | | | | | | | | | | sem_unlink is defined as #define SEM_UNLINK(name) 0 under Windows.
* | Issue #26924: Do not define _multiprocessing.sem_unlink under AndroidBerker Peksag2016-05-071-1/+1
| | | | | | | | Android declares sem_unlink but doesn't implement it.
* | Issue #26708: Use the "const" qualifier for immutable strings.Serhiy Storchaka2016-05-071-37/+39
| | | | | | | | This can help to avoid unintentional modification.