summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* | | Silenced minor GCC warnings.Serhiy Storchaka2015-02-263-2/+17
* | | Issue #15955: Add an option to limit the output size in bz2.decompress().Antoine Pitrou2015-02-262-72/+224
* | | Back-out wcstok deprecation suppression and updates calls to use wcstok_s.Steve Dower2015-02-261-3/+3
* | | Issue #23152: Move declarations back to posixmodule.c.Serhiy Storchaka2015-02-221-0/+6
* | | Issue #23152: Move declaration into a header and exclude from stable API.Serhiy Storchaka2015-02-221-9/+0
* | | Issue #23152: Renames time_t_to_FILE_TIME to _Py_time_t_to_FILE_TIME, removes...Steve Dower2015-02-211-22/+4
* | | Issue #23152: Renames attribute_data_to_stat to _Py_attribute_data_to_statSteve Dower2015-02-211-3/+3
* | | Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Wind...Steve Dower2015-02-215-162/+53
* | | Issue #23215: Multibyte codecs with custom error handlers that ignores errorsSerhiy Storchaka2015-02-201-8/+11
|\ \ \ | |/ /
| * | Issue #23215: Multibyte codecs with custom error handlers that ignores errorsSerhiy Storchaka2015-02-201-8/+11
* | | Issue #5700: io.FileIO() called flush() after closing the file.Serhiy Storchaka2015-02-201-7/+14
|\ \ \ | |/ /
| * | Issue #5700: io.FileIO() called flush() after closing the file.Serhiy Storchaka2015-02-201-7/+14
| * | Shoould be Py_MIN, not Py_MAX.Serhiy Storchaka2015-02-161-1/+1
* | | Regenerated Argument Clinic checksums.Serhiy Storchaka2015-02-204-7/+7
* | | Improve struct cache locality by bring commonly accessed fields close together.Raymond Hettinger2015-02-201-1/+1
* | | Issue #22883: Got rid of outdated references to PyInt and PyString in comments.Serhiy Storchaka2015-02-175-12/+9
* | | Issue #23450: Fixed possible integer overflows.Serhiy Storchaka2015-02-164-46/+60
* | | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-1612-30/+40
|\ \ \ | |/ /
| * | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-1612-30/+40
* | | Fixed few compiler warnings.Serhiy Storchaka2015-02-162-5/+4
* | | Issue #23096: Pickle representation of floats with protocol 0 now is the sameSerhiy Storchaka2015-02-151-1/+1
* | | Issue #13637: Improve exception message of a2b_* functions.Berker Peksag2015-02-141-2/+2
|\ \ \ | |/ /
| * | Issue #13637: Improve exception message of a2b_* functions.Berker Peksag2015-02-141-2/+2
* | | Issue #23450: Fix signal.set_wakeup_fd() on WindowsVictor Stinner2015-02-121-11/+14
* | | Merge 3.4 (faulthandler)Victor Stinner2015-02-111-4/+5
|\ \ \ | |/ /
| * | Issue #23433: Fix faulthandler._stack_overflow()Victor Stinner2015-02-111-4/+5
* | | Update copyright.Raymond Hettinger2015-02-111-1/+1
* | | merge 3.4 (#23361)Benjamin Peterson2015-02-101-2/+12
|\ \ \ | |/ /
| * | merge 3.3 (#23361)Benjamin Peterson2015-02-101-2/+12
| |\ \ | | |/
| | * add overflow checking (closes #23361)Benjamin Peterson2015-02-101-2/+12
* | | Issue #23285: PEP 475 -- Retry system calls failing with EINTR.Charles-François Natali2015-02-073-308/+441
* | | Issue #23392: Added tests for marshal C API that works with FILE*.Serhiy Storchaka2015-02-061-0/+166
|\ \ \ | |/ /
| * | Issue #23392: Added tests for marshal C API that works with FILE*.Serhiy Storchaka2015-02-061-0/+166
* | | Issue #14203: Temporary fix for the compile failure on Windows.Stefan Krah2015-02-031-0/+4
* | | Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer()Stefan Krah2015-02-033-14/+36
* | | Issue #15381: Fixed a bug in BytesIO.write().Serhiy Storchaka2015-02-031-9/+10
* | | Issue #14203: Remove obsolete support for view==NULL in PyBuffer_FillInfo()Stefan Krah2015-02-031-0/+34
* | | Issue #15381: Try to fix refcount bug. Empty and 1-byte buffers are always sh...Serhiy Storchaka2015-02-031-1/+3
* | | Issue #15381: Optimized io.BytesIO to make less allocations and copyings.Serhiy Storchaka2015-02-031-186/+152
* | | Issue #22818: Splitting on a pattern that could match an empty string nowSerhiy Storchaka2015-02-031-0/+13
* | | Issue #23099: Closing io.BytesIO with exported buffer is rejected now toSerhiy Storchaka2015-02-031-0/+1
|\ \ \ | |/ /
| * | Issue #23099: Closing io.BytesIO with exported buffer is rejected now toSerhiy Storchaka2015-02-031-0/+1
* | | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests.Serhiy Storchaka2015-02-021-20/+6
|\ \ \ | |/ /
| * | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests.Serhiy Storchaka2015-02-021-20/+6
| |\ \ | | |/
| | * Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests.Serhiy Storchaka2015-02-021-20/+6
* | | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-026-59/+79
|\ \ \ | |/ /
| * | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-026-59/+79
* | | Optimization guides suggest copying memory in an ascending direction when pos...Raymond Hettinger2015-02-021-3/+3
* | | merge 3.4 (#23364, #23363)Benjamin Peterson2015-02-021-2/+16
|\ \ \ | |/ /
| * | merge 3.3 (#23364, #23363)Benjamin Peterson2015-02-021-2/+16
| |\ \ | | |/