summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Issue #3329: Implement the PEP 445Victor Stinner2013-07-071-0/+163
* Apply the PyObject_VAR_HEAD and Py_SIZE macrosRaymond Hettinger2013-07-061-40/+39
* Refactor deque_traverse().Raymond Hettinger2013-07-061-6/+6
* Remove unnecessary branches from count() and reverse().Raymond Hettinger2013-07-061-6/+3
* Speed-up deque indexing by changing the deque block length to a power of two.Raymond Hettinger2013-07-061-1/+1
* (Merge 3.3) Issue #18343: faulthandler.register() now keeps the previous signalVictor Stinner2013-07-011-1/+2
|\
| * Issue #18343: faulthandler.register() now keeps the previous signal handlerVictor Stinner2013-07-011-1/+2
* | Singular form just like the other error message.Christian Heimes2013-07-011-1/+1
|\ \ | |/
| * Singular form just like the other error message.Christian Heimes2013-07-011-1/+1
* | Issue #18339: Negative ints keys in unpickler.memo dict no longer cause aChristian Heimes2013-07-011-0/+5
|\ \ | |/
| * Issue #18339: Negative ints keys in unpickler.memo dict no longer cause aChristian Heimes2013-07-011-0/+5
* | Fix segfault in pyexpat.c caused by 84375Christian Heimes2013-06-291-1/+1
* | Fix resource leak in pickle moduleChristian Heimes2013-06-291-1/+3
* | Fix NULL ptr dereferencing in local_timezone(). nameo can be NULLChristian Heimes2013-06-291-1/+1
* | Fix memory leak in pyexpat PyUnknownEncodingHandlerChristian Heimes2013-06-291-1/+3
* | Fix os.confstr(): the result type of the C function is size_t, not intVictor Stinner2013-06-251-2/+2
* | Fix time.mktime() and datetime.datetime.timestamp() on AIXVictor Stinner2013-06-252-4/+20
* | (Merge 3.3) Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999Victor Stinner2013-06-251-1/+1
|\ \ | |/
| * Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999Victor Stinner2013-06-251-1/+1
* | _ssl.c: strip trailing spacesVictor Stinner2013-06-241-3/+3
* | (Merge 3.3) Issue #18135: ssl.SSLSocket.write() now raises an OverflowError ifVictor Stinner2013-06-241-2/+7
|\ \ | |/
| * Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the inputVictor Stinner2013-06-241-2/+7
* | If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified.Victor Stinner2013-06-244-16/+16
* | Issue #9566: recv(), recvfrom(), send(), sendall() and sendto() methodsVictor Stinner2013-06-241-5/+32
* | Issue #9566: _winapi.WriteFile() now truncates length to DWORD_MAX (4294967295)Victor Stinner2013-06-241-2/+5
* | Issue #9566: zlib: Explicit cast to unsigned int to fix a compiler warning on...Victor Stinner2013-06-241-4/+4
* | Issue #9566: _io: Use Py_SAFE_DOWNCAST for fix a compiler warning on Windows x64Victor Stinner2013-06-241-1/+1
* | mergeRaymond Hettinger2013-06-233-34/+8
|\ \
| * | Issue #11016: Don't define macros and constants that are already set by pyport.hChristian Heimes2013-06-231-31/+5
| * | Define S_IFMT and S_IFLNK in pyport.h so posixmodule.c can use named constant...Christian Heimes2013-06-231-2/+2
| * | Check for correct macro, code uses S_ISDIR().Christian Heimes2013-06-231-1/+1
| |\ \ | | |/
| | * Check for correct macro, code uses S_ISDIR().Christian Heimes2013-06-231-1/+1
* | | Misc improvements to collections.deque()Raymond Hettinger2013-06-231-72/+93
|/ /
* | Issue #11016: Detect integer conversion on conversion from Python int to C mo...Victor Stinner2013-06-231-13/+27
* | Fix a typo in S_ISDIR, S_ISCHR, S_ISBLK and S_ISREG.Christian Heimes2013-06-231-7/+7
* | (Merge 3.3) Issue #18135: Fix a possible integer overflow inVictor Stinner2013-06-231-10/+16
|\ \ | |/
| * Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write()Victor Stinner2013-06-231-5/+11
| * _ssl.c: strip trailing spacesVictor Stinner2013-06-231-5/+5
* | Issue #11016: Try to fix compilaton of the new _stat.c module on WindowsVictor Stinner2013-06-221-0/+4
* | Merge from 3.3Andrew Kuchling2013-06-221-2/+3
|\ \ | |/
| * Closes #18220: expand itertools.islice docstring to 2 linesAndrew Kuchling2013-06-221-1/+2
| * Close #18285: add 'repeat' parameter to docstring for productAndrew Kuchling2013-06-221-1/+1
* | Issue #11016: Add C implementation of the stat module as _statChristian Heimes2013-06-222-0/+572
* | Merge from 3.3Andrew Kuchling2013-06-221-3/+8
|\ \ | |/
| * #18113: avoid segfault if Py_XDECREF triggers code that calls set_panel_userp...Andrew Kuchling2013-06-221-3/+8
* | Merge from 3.3Andrew Kuchling2013-06-211-1/+1
|\ \ | |/
| * Closes #18239: correct description of count() in module docstringAndrew Kuchling2013-06-211-1/+1
* | Grammatical mistake in a commentBrett Cannon2013-06-211-1/+1
* | merge 3.3 (#18248)Benjamin Peterson2013-06-192-2/+2
|\ \ | |/
| * fix libffi build on AIX (closes #18248)Benjamin Peterson2013-06-192-2/+2