summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* Issue #7673: Fix security vulnerability (CVE-2010-2089) in the audioop module,Victor Stinner2010-07-031-73/+71
| | | | ensure that the input string length is a multiple of the frame size
* Revert r81681 (issue 8810).Alexander Belopolsky2010-07-031-2/+1
|
* Issue #9125: Update parser module for "except ... as ..." syntax.Mark Dickinson2010-06-301-4/+7
|
* Fix indentation of Python code example in C comment.Mark Dickinson2010-06-251-11/+11
|
* Issue #9075: In the ssl module, remove the setting of a `debug` flagAntoine Pitrou2010-06-251-1/+0
| | | | on an OpenSSL structure.
* Fix #8959 by reverting revision 80761.Thomas Heller2010-06-2113-297/+1898
|
* Fix Issue4452 - Incorrect docstring of os.setpgrpSenthil Kumaran2010-06-171-1/+1
|
* Issue #8986: erfc was raising OverflowError on Linux for arguments inMark Dickinson2010-06-131-6/+16
| | | | | the (approximate) range (-27.3, 30.0), as a result of an escaped errno value.
* Revert r80580 due to some unintended side effects. See issue #8202 for details.Nick Coghlan2010-06-131-3/+5
|
* Fix possible undefined behaviour from signed overflow in struct module.Mark Dickinson2010-06-111-22/+29
| | | | Backport of revisions 81897, 81898 and 81902 from py3k.
* Remove extra ] from itertools.count docstring.Ezio Melotti2010-06-111-1/+1
|
* Issue #8930: fix some C code indentationAntoine Pitrou2010-06-091-68/+68
|
* Issue #8899: time.struct_time now has class and atribute docstrings.Alexander Belopolsky2010-06-051-10/+16
|
* Issue #8864: Define _XOPEN_SOURCE on Solaris for theMartin v. Löwis2010-06-041-0/+6
| | | | multiprocessing module.
* Issue8810: Clearing up docstring for tzinfo.utcoffset.Sean Reifscheider2010-06-041-1/+2
|
* Untabify Modules/config.c.in.Mark Dickinson2010-05-291-18/+17
|
* Issue #7150: Raise OverflowError if the result of adding or subtractingAlexander Belopolsky2010-05-271-13/+16
| | | | timedelta from date or datetime falls outside of the MINYEAR:MAXYEAR range.
* Issue #5640: Fix Shift-JIS incremental encoder for error handlers differentVictor Stinner2010-05-211-1/+1
| | | | than strict
* Clear the OpenSSL error queue each time an error is signalled.Antoine Pitrou2010-05-161-0/+3
| | | | When the error queue is not emptied, strange things can happen on the next SSL call, depending on the OpenSSL version.
* reindent _cursesmodule.cVictor Stinner2010-05-151-1910/+1910
| | | | | Use untabify.py + emacs (python3 mode) + manual editions for Py_BEGIN_ALLOW_THREADS / Py_END_ALLOW_THREADS
* Remove unused variable, and fix a compilation warning on WindowsAmaury Forgeot d'Arc2010-05-151-1/+1
|
* Improve _ssl.c formattingAntoine Pitrou2010-05-121-34/+27
|
* Issue #8681: Make the zlib module's error messages more informative whenAntoine Pitrou2010-05-111-4/+17
| | | | the zlib itself doesn't give any detailed explanation.
* Issue #8674: fix another bogus overflow check in audioop module.Mark Dickinson2010-05-111-17/+8
|
* Use ';' after initialization macros to avoid confusing re-indentersAndrew M. Kuchling2010-05-101-40/+40
|
* Break long line in macrosAndrew M. Kuchling2010-05-101-7/+14
|
* Move { out of #if...#else block; this confuses Emacs' C-modeAndrew M. Kuchling2010-05-101-4/+6
|
* Issue #8674: Fix incorrect and UB-inducing overflow checks in audioopMark Dickinson2010-05-101-28/+21
| | | | module. Thanks Tomas Hoger for the patch.
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-09119-71052/+71052
|
* Issue #8644: Improve accuracy of timedelta.total_seconds method.Mark Dickinson2010-05-091-3/+19
| | | | (Backport of r80979 to py3k.) Thanks Alexander Belopolsky.
* Skip signal handler re-installation if it is not necessary. Issue 8354.Jean-Paul Calderone2010-05-081-0/+5
|
* Issue #8571: Fix an internal error when compressing or decompressing aAntoine Pitrou2010-05-071-3/+4
| | | | | chunk larger than 1GB with the zlib module's compressor and decompressor objects.
* Untabify Modules/posixmodule.c (2)Victor Stinner2010-05-061-10/+10
| | | | Fix some more functions by hand
* Untabify Modules/posixmodule.cVictor Stinner2010-05-051-5047/+5047
| | | | | Run Antoine Pitrou "untabify" script + manual editions (OS/2 and some continuation lines).
* Remove extraneous whitespace.Brett Cannon2010-05-053-51/+51
|
* Remove an unnecessary variable.Brett Cannon2010-05-051-3/+0
| | | | Found using Clang's static analyzer.
* Untabify Modules/_io/fileio.cAntoine Pitrou2010-05-051-705/+705
|
* Untabify Modules/_ssl.cAntoine Pitrou2010-05-051-1346/+1346
|
* On Windows, ctypes does no longer check the stack before and afterThomas Heller2010-05-0413-1898/+297
| | | | | | | | | calling a foreign function. This allows to use the unmodified libffi library. Remove most files from _ctypes/libffi_msvc, only two include files stay (updated from _ctypes/libffi/...). Other files are used in the cross-platform _ctypes/libffi directory.
* Fix some whitespace.Brett Cannon2010-05-041-2/+2
|
* Remove an unneeded variable assignment.Brett Cannon2010-05-041-1/+0
| | | | Found using Clang's static analyzer.
* Strip out extraneous whitespace, cast a some `const char *` to `void *` whenBrett Cannon2010-05-041-21/+21
| | | | | passed to free() and make a `char *` to a `const char *` as found by Clang's static analyzer.
* Fix a Py_DECREF to a Py_XDECREF.Brett Cannon2010-05-041-1/+1
| | | | Found using Clang's static analyzer.
* Prevent a possible NULL de-reference and an unneeded variable assignment.Brett Cannon2010-05-041-2/+2
| | | | Found using Clang's static analyzer.
* Remove a redundant string length check and variable assignment.Brett Cannon2010-05-041-5/+1
| | | | Found with Clang's static analyzer.
* Fix two potential uninitialization errors and an unneeded assignment.Brett Cannon2010-05-031-4/+6
| | | | Found using Clang's static analyzer.
* Remove unused variables and a variable initialization.Brett Cannon2010-05-031-6/+6
| | | | Found using Clang's static analyzer.
* Remove unneeded variable assignment.Brett Cannon2010-05-031-3/+1
| | | | Found using Clang's static analyzer.
* Remove unneeded variable mutation and initializations.Brett Cannon2010-05-031-4/+6
| | | | Found using Clang's static analyzer.
* Clean up whitespace and remove unneeded variable initialization as found byBrett Cannon2010-05-031-56/+52
| | | | Clang.