summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Added news on recent changes to loggingVinay Sajip2006-12-141-4/+10
|
* Add test.test_support.guard_warnings_filter . This function returns a contextBrett Cannon2006-12-131-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 Klose2006-12-091-0/+2
|
* Patch #1608267: fix a race condition in os.makedirs() is the directoryGeorg Brandl2006-12-091-0/+3
| | | | to be created is already there.
* Patch #1610437: fix a tarfile bug with long filename headers.Georg Brandl2006-12-061-0/+2
|
* - Fix build failure on kfreebsd and on the hurd.Matthias Klose2006-12-031-0/+2
|
* Patch #1371075: Make ConfigParser accept optional dict typeMartin v. Löwis2006-12-031-0/+3
| | | | for ordering, sorting, etc.
* Patch #1544279: Improve thread-safety of the socket module by movingMartin v. Löwis2006-12-031-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öwis2006-12-031-3/+0
|
* Fix #1563807: _ctypes built on AIX fails with ld ffi error.Thomas Heller2006-11-281-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öwis2006-11-251-0/+2
| | | | Will backport to 2.5
* Fix bug #1598620: A ctypes structure cannot contain itself.Thomas Heller2006-11-241-0/+2
|
* Patch #1362975: Rework CodeContext indentation algorithm toMartin v. Löwis2006-11-221-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_DEPRECATEMartin v. Löwis2006-11-211-0/+7
| | | | | and _CRT_NONSTDC_NO_DEPRECATE. Will backport.
* Bug #1599782: Fix segfault on bsddb.db.DB().type().Neal Norwitz2006-11-211-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 Norwitz2006-11-191-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 InstanceTypeMartin v. Löwis2006-11-191-0/+3
| | | | in xmlrpclib.
* Make cStringIO.truncate raise IOError for negativeMartin v. Löwis2006-11-191-0/+3
| | | | | arguments (even for -1). Fixes the last bit of #1359365.
* Patch [ 1586791 ] better error msgs for some TypeErrorsGeorg Brandl2006-11-191-0/+3
|
* Patch #1472877: Fix Tix subwidget name resolution.Martin v. Löwis2006-11-181-0/+2
| | | | Will backport to 2.5.
* Patch #1594554: Always close a tkSimpleDialog on ok(), evenMartin v. Löwis2006-11-181-0/+3
| | | | | if an exception occurs. Will backport to 2.5.
* Patch #1538878: Don't make tkSimpleDialog dialogs transient ifMartin v. Löwis2006-11-181-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'sGeorg Brandl2006-11-161-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 Brandl2006-11-161-0/+3
| | | | to facilitate usage as a decorator.
* Fix typo.Walter Dörwald2006-11-151-1/+1
|
* Patch #1360200: Use unmangled_version RPM spec field to deal withMartin v. Löwis2006-11-121-0/+3
| | | | | file name mangling. Will backport to 2.5.
* Patch #1359217: Ignore 2xx response before 150 response.Martin v. Löwis2006-11-121-0/+3
| | | | Will backport to 2.5.
* Bug #1067760: Deprecate passing floats to file.seek.Martin v. Löwis2006-11-121-0/+2
|
* Patch #1355023: support whence argument for GzipFile.seek.Martin v. Löwis2006-11-121-0/+2
|
* Patch #1065257: Support passing open files as body inMartin v. Löwis2006-11-121-0/+3
| | | | HTTPConnection.request().
* Reword entryAndrew M. Kuchling2006-11-101-2/+2
|
* [Patch #1514543] mailbox (Maildir): avoid losing messages on name clashAndrew M. Kuchling2006-11-091-0/+4
| | | | | | | | | | | Two changes: Where possible, use link()/remove() to move files into a directory; this makes it easier to avoid overwriting an existing file. Use _create_carefully() to create files in tmp/, which uses O_EXCL. Backport candidate.
* [Patch #1514544 by David Watson] use fsync() to ensure data is really on diskAndrew M. Kuchling2006-11-091-0/+4
|
* [Bug #1569790] mailbox.Maildir.get_folder() loses factory informationAndrew M. Kuchling2006-11-091-0/+4
| | | | | | | Both the Maildir and MH classes had this bug; the patch fixes both classes and adds a test. Will backport to 25-maint.
* Patch #1592250: Add elidge argument to Tkinter.Text.search.Martin v. Löwis2006-11-091-0/+2
|
* Patch #838546: Make terminal become controlling in pty.fork().Martin v. Löwis2006-11-091-0/+2
| | | | Will backport to 2.5.
* Patch #1351744: Add askyesnocancel helper for tkMessageBox.Martin v. Löwis2006-11-081-0/+2
|
* News entry for 52662.Martin v. Löwis2006-11-081-0/+2
|
* Bug #1588287: fix invalid assertion for `1,2` in debug builds.Neal Norwitz2006-11-041-0/+2
| | | | Will backport
* - Patch #1060577: Extract list of RPM files from spec file inMartin v. Löwis2006-11-041-0/+3
| | | | | bdist_rpm Will backport to 2.5.
* Bug #1576657: when setting a KeyError for a tuple key, make sure thatGeorg Brandl2006-10-291-0/+3
| | | | the tuple isn't used as the "exception arguments tuple".
* Bug #1586613: fix zlib and bz2 codecs' incremental en/decoders.Georg Brandl2006-10-291-0/+2
|
* Patch #1583880: fix tarfile's problems with long names and posix/Georg Brandl2006-10-291-0/+3
| | | | GNU modes.
* Bug #1586448: the compiler module now emits the same bytecode forGeorg Brandl2006-10-291-0/+4
| | | | | list comprehensions as the builtin compiler, using the LIST_APPEND opcode.
* Fix codecs.EncodedFile which did not use file_encoding in 2.5.0, andGeorg Brandl2006-10-291-0/+4
| | | | | fix all codecs file wrappers to work correctly with the "with" statement (bug #1586513).
* Fix bug #1565514, SystemError not raised on too many nested blocks.Neal Norwitz2006-10-281-0/+2
| | | | | | | It seems like this should be a different error than SystemError, but I don't have any great ideas and SystemError was raised in 2.4 and earlier. Will backport.
* Patch #1552024: add decorator support to unparse.py demo script.Georg Brandl2006-10-271-2/+5
|
* Modulefinder now handles absolute and relative imports, includingThomas Heller2006-10-271-0/+5
| | | | | | tests. Will backport to release25-maint.
* WindowsError.str should display the windows error code,Thomas Heller2006-10-271-0/+3
| | | | | | | not the posix error code; with test. Fixes #1576174. Will backport to release25-maint.
* Patch #1567274: Support SMTP over TLS.Martin v. Löwis2006-10-272-0/+3
|