Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Deprecate the sets module. | Brett Cannon | 2007-01-13 | 1 | -0/+3 |
| | |||||
* | patch #1610795: BSD version of ctypes.util.find_library, by Martin | Thomas Heller | 2007-01-12 | 1 | -0/+2 |
| | | | | Kammerhofer. | ||||
* | Fixes for 64-bit Windows: In ctypes.wintypes, correct the definitions | Thomas Heller | 2007-01-11 | 1 | -0/+4 |
| | | | | | of HANDLE, WPARAM, LPARAM data types. Make parameterless foreign function calls work. | ||||
* | - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092). | Matthias Klose | 2007-01-11 | 1 | -0/+2 |
| | |||||
* | Change the ctypes version number to "1.1.0". | Thomas Heller | 2007-01-10 | 1 | -0/+2 |
| | |||||
* | Added entry about addition of _open() method to logging.FileHandler. | Vinay Sajip | 2007-01-09 | 1 | -0/+4 |
| | |||||
* | Added entries about removal of some bare except clauses from logging. | Vinay Sajip | 2007-01-08 | 1 | -0/+9 |
| | |||||
* | Add Josiah to SF for maintaining asyncore/asynchat | Neal Norwitz | 2007-01-06 | 1 | -0/+3 |
| | |||||
* | Add Collin Winter for access to update PEP 3107 | Neal Norwitz | 2007-01-05 | 1 | -0/+3 |
| | |||||
* | Prevent crash on shutdown which can occur if we are finalizing | Neal Norwitz | 2007-01-05 | 1 | -0/+3 |
| | | | | | | | and the module dict has been cleared already and some object raises a warning (like in a __del__). Will backport. | ||||
* | Support linking of the bsddb module against BerkeleyDB 4.5.x | Gregory P. Smith | 2007-01-05 | 1 | -0/+2 |
| | | | | (will backport to 2.5) | ||||
* | Bug #1566280: Explicitly invoke threading._shutdown from Py_Main, | Martin v. Löwis | 2007-01-04 | 1 | -0/+3 |
| | | | | | to avoid relying on atexit. Will backport to 2.5. | ||||
* | Add EnvironmentVarGuard to test.test_support. Provides a context manager to | Brett Cannon | 2007-01-04 | 1 | -0/+4 |
| | | | | temporarily set or unset environment variables. | ||||
* | Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument. | Lars Gustäbel | 2006-12-27 | 1 | -0/+2 |
| | | | | Will backport to 2.5. | ||||
* | [Rest of patch #1182394] Add ._current() method so that we can use the ↵ | Andrew M. Kuchling | 2006-12-27 | 2 | -0/+3 |
| | | | | written-in-C .hexdigest() method | ||||
* | Patch #1262036: Prevent TarFiles from being added to themselves under | Lars Gustäbel | 2006-12-23 | 1 | -0/+3 |
| | | | | | | certain conditions. Will backport to 2.5. | ||||
* | Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell() | Lars Gustäbel | 2006-12-23 | 1 | -0/+3 |
| | | | | | | work correctly together with readline(). Will backport to 2.5. | ||||
* | Lars asked for permission on on python-dev for work on tarfile.py | Neal Norwitz | 2006-12-21 | 1 | -0/+3 |
| | |||||
* | Bug #1590891: random.randrange don't return correct value for big number | Raymond Hettinger | 2006-12-20 | 1 | -0/+2 |
| | | | | Needs to be backported. | ||||
* | Patch #1484695: The tarfile module now raises a HeaderError exception | Georg Brandl | 2006-12-19 | 1 | -0/+3 |
| | | | | if a buffer given to frombuf() is invalid. | ||||
* | Added news on recent changes to logging | Vinay Sajip | 2006-12-14 | 1 | -4/+10 |
| | |||||
* | Add test.test_support.guard_warnings_filter . This function returns a context | Brett Cannon | 2006-12-13 | 1 | -0/+4 |
| | | | | | manager that protects warnings.filter from being modified once the context is exited. | ||||
* | - Fix the build of the library reference in info format. | Matthias Klose | 2006-12-09 | 1 | -0/+2 |
| | |||||
* | Patch #1608267: fix a race condition in os.makedirs() is the directory | Georg Brandl | 2006-12-09 | 1 | -0/+3 |
| | | | | to be created is already there. | ||||
* | Patch #1610437: fix a tarfile bug with long filename headers. | Georg Brandl | 2006-12-06 | 1 | -0/+2 |
| | |||||
* | - Fix build failure on kfreebsd and on the hurd. | Matthias Klose | 2006-12-03 | 1 | -0/+2 |
| | |||||
* | Patch #1371075: Make ConfigParser accept optional dict type | Martin v. Löwis | 2006-12-03 | 1 | -0/+3 |
| | | | | for ordering, sorting, etc. | ||||
* | Patch #1544279: Improve thread-safety of the socket module by moving | Martin v. Löwis | 2006-12-03 | 1 | -0/+3 |
| | | | | | the sock_addr_t storage out of the socket object. Will backport to 2.5. | ||||
* | Move IDLE news into NEWS.txt. | Martin v. Löwis | 2006-12-03 | 1 | -3/+0 |
| | |||||
* | Fix #1563807: _ctypes built on AIX fails with ld ffi error. | Thomas Heller | 2006-11-28 | 1 | -0/+2 |
| | | | | | | | The contents of ffi_darwin.c must be compiled unless __APPLE__ is defined and __ppc__ is not. Will backport. | ||||
* | Disable _XOPEN_SOURCE on NetBSD 1.x. | Martin v. Löwis | 2006-11-25 | 1 | -0/+2 |
| | | | | Will backport to 2.5 | ||||
* | Fix bug #1598620: A ctypes structure cannot contain itself. | Thomas Heller | 2006-11-24 | 1 | -0/+2 |
| | |||||
* | Patch #1362975: Rework CodeContext indentation algorithm to | Martin v. Löwis | 2006-11-22 | 1 | -0/+3 |
| | | | | | avoid hard-coding pixel widths. Also make the text's scrollbar a child of the text frame, not the top widget. | ||||
* | Conditionalize definition of _CRT_SECURE_NO_DEPRECATE | Martin v. Löwis | 2006-11-21 | 1 | -0/+7 |
| | | | | | and _CRT_NONSTDC_NO_DEPRECATE. Will backport. | ||||
* | Bug #1599782: Fix segfault on bsddb.db.DB().type(). | Neal Norwitz | 2006-11-21 | 1 | -0/+2 |
| | | | | | | | | | The problem is that _DB_get_type() can't be called without the GIL because it calls a bunch of PyErr_* APIs when an error occurs. There were no other cases in this file that it was called without the GIL. Removing the BEGIN/END THREAD around _DB_get_type() made everything work. Will backport. | ||||
* | Speed up function calls into the math module by using METH_O. | Neal Norwitz | 2006-11-19 | 1 | -0/+2 |
| | | | | | There should be no functional changes. However, the error msgs are slightly different. Also verified that the module dict is not NULL on init. | ||||
* | Patch #1070046: Marshal new-style objects like InstanceType | Martin v. Löwis | 2006-11-19 | 1 | -0/+3 |
| | | | | in xmlrpclib. | ||||
* | Make cStringIO.truncate raise IOError for negative | Martin v. Löwis | 2006-11-19 | 1 | -0/+3 |
| | | | | | arguments (even for -1). Fixes the last bit of #1359365. | ||||
* | Patch [ 1586791 ] better error msgs for some TypeErrors | Georg Brandl | 2006-11-19 | 1 | -0/+3 |
| | |||||
* | Patch #1472877: Fix Tix subwidget name resolution. | Martin v. Löwis | 2006-11-18 | 1 | -0/+2 |
| | | | | Will backport to 2.5. | ||||
* | Patch #1594554: Always close a tkSimpleDialog on ok(), even | Martin v. Löwis | 2006-11-18 | 1 | -0/+3 |
| | | | | | if an exception occurs. Will backport to 2.5. | ||||
* | Patch #1538878: Don't make tkSimpleDialog dialogs transient if | Martin v. Löwis | 2006-11-18 | 1 | -0/+3 |
| | | | | | | the parent window is withdrawn. This mirrors what dialog.tcl does. Will backport to 2.5. | ||||
* | Bug #1588217: don't parse "= " as a soft line break in binascii's | Georg Brandl | 2006-11-16 | 1 | -0/+4 |
| | | | | | a2b_qp() function, instead leave it in the string as quopri.decode() does. | ||||
* | Bug #1597824: return the registered function from atexit.register() | Georg Brandl | 2006-11-16 | 1 | -0/+3 |
| | | | | to facilitate usage as a decorator. | ||||
* | Fix typo. | Walter Dörwald | 2006-11-15 | 1 | -1/+1 |
| | |||||
* | Patch #1360200: Use unmangled_version RPM spec field to deal with | Martin v. Löwis | 2006-11-12 | 1 | -0/+3 |
| | | | | | file name mangling. Will backport to 2.5. | ||||
* | Patch #1359217: Ignore 2xx response before 150 response. | Martin v. Löwis | 2006-11-12 | 1 | -0/+3 |
| | | | | Will backport to 2.5. | ||||
* | Bug #1067760: Deprecate passing floats to file.seek. | Martin v. Löwis | 2006-11-12 | 1 | -0/+2 |
| | |||||
* | Patch #1355023: support whence argument for GzipFile.seek. | Martin v. Löwis | 2006-11-12 | 1 | -0/+2 |
| | |||||
* | Patch #1065257: Support passing open files as body in | Martin v. Löwis | 2006-11-12 | 1 | -0/+3 |
| | | | | HTTPConnection.request(). |