| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #8899: time.struct_time now has class and atribute docstrings. | Alexander Belopolsky | 2010-06-05 | 1 | -10/+16 |
| | | |||||
| * | Issue #8864: Define _XOPEN_SOURCE on Solaris for the | Martin v. Löwis | 2010-06-04 | 1 | -0/+6 |
| | | | | | multiprocessing module. | ||||
| * | Issue8810: Clearing up docstring for tzinfo.utcoffset. | Sean Reifscheider | 2010-06-04 | 1 | -1/+2 |
| | | |||||
| * | Untabify Modules/config.c.in. | Mark Dickinson | 2010-05-29 | 1 | -18/+17 |
| | | |||||
| * | Issue #7150: Raise OverflowError if the result of adding or subtracting | Alexander Belopolsky | 2010-05-27 | 1 | -13/+16 |
| | | | | | timedelta from date or datetime falls outside of the MINYEAR:MAXYEAR range. | ||||
| * | Issue #5640: Fix Shift-JIS incremental encoder for error handlers different | Victor Stinner | 2010-05-21 | 1 | -1/+1 |
| | | | | | than strict | ||||
| * | Clear the OpenSSL error queue each time an error is signalled. | Antoine Pitrou | 2010-05-16 | 1 | -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.c | Victor Stinner | 2010-05-15 | 1 | -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 Windows | Amaury Forgeot d'Arc | 2010-05-15 | 1 | -1/+1 |
| | | |||||
| * | Improve _ssl.c formatting | Antoine Pitrou | 2010-05-12 | 1 | -34/+27 |
| | | |||||
| * | Issue #8681: Make the zlib module's error messages more informative when | Antoine Pitrou | 2010-05-11 | 1 | -4/+17 |
| | | | | | the zlib itself doesn't give any detailed explanation. | ||||
| * | Issue #8674: fix another bogus overflow check in audioop module. | Mark Dickinson | 2010-05-11 | 1 | -17/+8 |
| | | |||||
| * | Use ';' after initialization macros to avoid confusing re-indenters | Andrew M. Kuchling | 2010-05-10 | 1 | -40/+40 |
| | | |||||
| * | Break long line in macros | Andrew M. Kuchling | 2010-05-10 | 1 | -7/+14 |
| | | |||||
| * | Move { out of #if...#else block; this confuses Emacs' C-mode | Andrew M. Kuchling | 2010-05-10 | 1 | -4/+6 |
| | | |||||
| * | Issue #8674: Fix incorrect and UB-inducing overflow checks in audioop | Mark Dickinson | 2010-05-10 | 1 | -28/+21 |
| | | | | | module. Thanks Tomas Hoger for the patch. | ||||
| * | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 119 | -71052/+71052 |
| | | |||||
| * | Issue #8644: Improve accuracy of timedelta.total_seconds method. | Mark Dickinson | 2010-05-09 | 1 | -3/+19 |
| | | | | | (Backport of r80979 to py3k.) Thanks Alexander Belopolsky. | ||||
| * | Skip signal handler re-installation if it is not necessary. Issue 8354. | Jean-Paul Calderone | 2010-05-08 | 1 | -0/+5 |
| | | |||||
| * | Issue #8571: Fix an internal error when compressing or decompressing a | Antoine Pitrou | 2010-05-07 | 1 | -3/+4 |
| | | | | | | chunk larger than 1GB with the zlib module's compressor and decompressor objects. | ||||
| * | Untabify Modules/posixmodule.c (2) | Victor Stinner | 2010-05-06 | 1 | -10/+10 |
| | | | | | Fix some more functions by hand | ||||
| * | Untabify Modules/posixmodule.c | Victor Stinner | 2010-05-05 | 1 | -5047/+5047 |
| | | | | | | Run Antoine Pitrou "untabify" script + manual editions (OS/2 and some continuation lines). | ||||
| * | Remove extraneous whitespace. | Brett Cannon | 2010-05-05 | 3 | -51/+51 |
| | | |||||
| * | Remove an unnecessary variable. | Brett Cannon | 2010-05-05 | 1 | -3/+0 |
| | | | | | Found using Clang's static analyzer. | ||||
| * | Untabify Modules/_io/fileio.c | Antoine Pitrou | 2010-05-05 | 1 | -705/+705 |
| | | |||||
| * | Untabify Modules/_ssl.c | Antoine Pitrou | 2010-05-05 | 1 | -1346/+1346 |
| | | |||||
| * | On Windows, ctypes does no longer check the stack before and after | Thomas Heller | 2010-05-04 | 13 | -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 Cannon | 2010-05-04 | 1 | -2/+2 |
| | | |||||
| * | Remove an unneeded variable assignment. | Brett Cannon | 2010-05-04 | 1 | -1/+0 |
| | | | | | Found using Clang's static analyzer. | ||||
| * | Strip out extraneous whitespace, cast a some `const char *` to `void *` when | Brett Cannon | 2010-05-04 | 1 | -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 Cannon | 2010-05-04 | 1 | -1/+1 |
| | | | | | Found using Clang's static analyzer. | ||||
| * | Prevent a possible NULL de-reference and an unneeded variable assignment. | Brett Cannon | 2010-05-04 | 1 | -2/+2 |
| | | | | | Found using Clang's static analyzer. | ||||
| * | Remove a redundant string length check and variable assignment. | Brett Cannon | 2010-05-04 | 1 | -5/+1 |
| | | | | | Found with Clang's static analyzer. | ||||
| * | Fix two potential uninitialization errors and an unneeded assignment. | Brett Cannon | 2010-05-03 | 1 | -4/+6 |
| | | | | | Found using Clang's static analyzer. | ||||
| * | Remove unused variables and a variable initialization. | Brett Cannon | 2010-05-03 | 1 | -6/+6 |
| | | | | | Found using Clang's static analyzer. | ||||
| * | Remove unneeded variable assignment. | Brett Cannon | 2010-05-03 | 1 | -3/+1 |
| | | | | | Found using Clang's static analyzer. | ||||
| * | Remove unneeded variable mutation and initializations. | Brett Cannon | 2010-05-03 | 1 | -4/+6 |
| | | | | | Found using Clang's static analyzer. | ||||
| * | Clean up whitespace and remove unneeded variable initialization as found by | Brett Cannon | 2010-05-03 | 1 | -56/+52 |
| | | | | | Clang. | ||||
| * | Remove an unused variable. | Brett Cannon | 2010-05-03 | 1 | -2/+1 |
| | | | | | Found using Clang's static analyzer. | ||||
| * | Remove unneeded variable initialization. | Brett Cannon | 2010-05-03 | 1 | -3/+0 |
| | | | | | Found using Clang's static analyzer. | ||||
| * | Issue #7865: The close() method of :mod:`io` objects should not swallow | Antoine Pitrou | 2010-05-03 | 4 | -17/+24 |
| | | | | | | exceptions raised by the implicit flush(). Also ensure that calling close() several times is supported. Patch by Pascal Chambon. | ||||
| * | Issue #4687: Fix accuracy of garbage collection runtimes displayed with | Antoine Pitrou | 2010-05-02 | 1 | -1/+1 |
| | | | | | gc.DEBUG_STATS. | ||||
| * | Issue #7834: Fix connect() of Bluetooth L2CAP sockets with recent versions | Antoine Pitrou | 2010-04-29 | 1 | -0/+1 |
| | | | | | of the Linux kernel. Patch by Yaniv Aknin. | ||||
| * | Issue 8202: when using the -m command line switch, sys.argv[0] is now '-m' ↵ | Nick Coghlan | 2010-04-28 | 1 | -2/+2 |
| | | | | | instead of '-c' while searching for the module to be executed | ||||
| * | Issue #8549: Fix compiling the _ssl extension under AIX. Patch by | Antoine Pitrou | 2010-04-27 | 1 | -1/+1 |
| | | | | | Sridhar Ratnakumar. | ||||
| * | Fixing obscure syslog corner-case when sys.argv = None, syslog() would call | Sean Reifscheider | 2010-04-25 | 1 | -5/+10 |
| | | | | | openlog() for every logged message. | ||||
| * | The do_handshake() method of SSL objects now adjusts the blocking mode of | Antoine Pitrou | 2010-04-24 | 1 | -1/+6 |
| | | | | | the SSL structure if necessary (as other methods already do). | ||||
| * | Small comment documentation change to clarify "ident" selection. | Sean Reifscheider | 2010-04-23 | 1 | -1/+2 |
| | | |||||
| * | issue8451: Making syslog module use sys.argv[0] for "ident". | Sean Reifscheider | 2010-04-23 | 1 | -11/+86 |
| | | |||||
| * | Issue #8108: Fix the unwrap() method of SSL objects when the socket has | Antoine Pitrou | 2010-04-22 | 1 | -6/+63 |
| | | | | | | | | | | a non-infinite timeout. Also make that method friendlier with applications wanting to continue using the socket in clear-text mode, by disabling OpenSSL's internal readahead. Thanks to Darryl Miles for guidance. Issue #8108: test_ftplib's non-blocking SSL server now has proper handling of SSL shutdowns. | ||||
