summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Only setup canvas when it is first created.Martin v. Löwis2006-07-031-0/+3
| | | | Fixes #1514703
* Correct arithmetic in access on Win32. Fixes #1513646.Martin v. Löwis2006-07-021-0/+3
|
* The sqlite3 module did cut off data from the SQLite database at the first nullGerhard Häring2006-07-021-0/+4
| | | | character before sending it to a custom converter. This has been fixed now.
* Release all forwarded functions in .close. Fixes #1513223.Martin v. Löwis2006-07-011-0/+3
|
* Added entry for fileConfig() bugfix.Vinay Sajip2006-07-011-4/+7
|
* Patch #1509163: MS Toolkit Compiler no longer availableMartin v. Löwis2006-06-291-0/+5
|
* Protect the thread api calls in the _ctypes extension module withinThomas Heller2006-06-291-0/+3
| | | | #ifdef WITH_THREADS/#endif blocks. Found by Sam Rushing.
* Add new utility function, reap_children(), to test_support. This shouldNeal Norwitz2006-06-291-0/+6
| | | | | | | | | | be called at the end of each test that spawns children (perhaps it should be called from regrtest instead?). This will hopefully prevent some of the unexplained failures in the buildbots (hppa and alpha) during tests that spawn children. The problems were not reproducible. There were many zombies that remained at the end of several tests. In the worst case, this shouldn't cause any more problems, though it may not help either. Time will tell.
* document recent bugfixes in sgmllibFred Drake2006-06-291-0/+6
|
* Mention the expat upgrade and pyexpat fix I put in 2.5b1.Trent Mick2006-06-281-0/+4
|
* Fix end_fill().Georg Brandl2006-06-281-0/+2
|
* Fix bug #1512695: cPickle.loads could crash if it was interrupted withNeal Norwitz2006-06-281-0/+6
| | | | | | a KeyboardInterrupt since PyTuple_Pack was passed a NULL. Will backport.
* Verify buildbot picks up these changes (really needs testing after last ↵Neal Norwitz2006-06-271-1/+1
| | | | change to Makefile.pre.in)
* Try again: test unimportant change to verify buildbot does not try to buildNeal Norwitz2006-06-271-0/+1
|
* Test unimportant change to verify buildbot does not try to buildNeal Norwitz2006-06-271-1/+0
|
* Fix SF bug #1513032, 'make install' failure on FreeBSD 5.3.Neal Norwitz2006-06-271-0/+5
| | | | No need to install lib-old, it's empty in 2.5.
* Instead of doing a make test, run the regression tests out of the installedNeal Norwitz2006-06-271-5/+17
| | | | | | copy. This will hopefully catch problems where directories are added under Lib/ but not to Makefile.pre.in. This breaks out the 2 runs of the test suite with and without -O which is also nicer.
* Ignore some more warnings in the dynamic linker on an older gentooNeal Norwitz2006-06-271-0/+9
|
* Bug #1511381: codec_getstreamcodec() in codec.c is corrected toHye-Shik Chang2006-06-231-0/+3
| | | | | | omit a default "error" argument for NULL pointer. This allows the parser to take a codec from cjkcodecs again. (Reported by Taewook Kang and reviewed by Walter Doerwald)
* 'warning's was improperly requiring that a command-line Warning category beBrett Cannon2006-06-221-0/+4
| | | | | | | both a subclass of Warning and a subclass of types.ClassType. The latter is no longer true thanks to new-style exceptions. Closes bug #1510580. Thanks to AMK for the test.
* Copy the wsgiref package during make install.Neal Norwitz2006-06-221-0/+2
|
* fix [ 1509132 ] compiler module builds incorrect AST for TryExceptFinallyGeorg Brandl2006-06-211-1/+18
|
* Preparing for 2.5b1.Anthony Baxter2006-06-191-1/+1
|
* Patch #1506645: add Python wrappers for the curses functionsWalter Dörwald2006-06-191-0/+2
| | | | | is_term_resized, resize_term and resizeterm. This uses three separate configure checks (one for each function).
* Add news entry about error msg improvement.Georg Brandl2006-06-191-0/+4
|
* Prevent spurious leaks when running regrtest.py -R. There may be moreNeal Norwitz2006-06-181-1/+1
| | | | | | | | issues that crop up from time to time, but this change seems to have been pretty stable (no spurious warnings) for about a week. Other modules which use threads may require similar use of threading_setup/threading_cleanup from test_support.
* Patch #815924: Restore ability to pass type= and icon=Martin v. Löwis2006-06-171-0/+3
|
* Patch #812986: Update the canvas even if not tracing.Martin v. Löwis2006-06-171-0/+2
|
* Patch #1494750: Destroy master after deleting children.Martin v. Löwis2006-06-171-0/+3
|
* Patch #1096231: Add default argument to wm_iconbitmap.Martin v. Löwis2006-06-172-0/+3
|
* Patch #763580: Add name and value arguments toMartin v. Löwis2006-06-171-0/+3
| | | | Tkinter variable classes.
* SF patch 1504676: Make sgmllib char and entity references pluggableFred Drake2006-06-161-0/+1
| | | | (implementation/tests contributed by Sam Ruby)
* - bsddb: multithreaded DB access using the simple bsddb module interfaceGregory P. Smith2006-06-151-0/+6
| | | | | | now works reliably. It has been updated to use automatic BerkeleyDB deadlock detection and the bsddb.dbutils.DeadlockWrap wrapper to retry database calls that would previously deadlock. [SF python bug #775414]
* Patch #1446489 (zipfile: support for ZIP64)Ronald Oussoren2006-06-151-0/+1
|
* Bug #1117556: SimpleHTTPServer now tries to find and use the system'sGeorg Brandl2006-06-141-0/+3
| | | | mime.types file for determining MIME types.
* Bug #1339007: Shelf objects now don't raise an exception in theirGeorg Brandl2006-06-141-0/+3
| | | | __del__ method when initialization failed.
* Patch #1455898: Incremental mode for "mbcs" codec.Martin v. Löwis2006-06-141-0/+3
|
* SequenceMatcher.get_matching_blocks(): This now guarantees thatTim Peters2006-06-141-0/+6
| | | | | | | | | | | adjacent triples in the result list describe non-adjacent matching blocks. That's _nice_ to have, and Guido said he wanted it. Not a bugfix candidate: Guido or not ;-), this changes visible endcase semantics (note that some tests had to change), and nothing about this was documented before. Since it was working as designed, and behavior was consistent with the docs, it wasn't "a bug".
* If a classic class defined a __coerce__() method that just returned its twoBrett Cannon2006-06-131-0/+3
| | | | | | | | arguments in reverse, the interpreter would infinitely recourse trying to get a coercion that worked. So put in a recursion check after a coercion is made and the next call to attempt to use the coerced values. Fixes bug #992017 and closes crashers/coerce.py .
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-131-0/+3
| | | | | | | | | | Heavily revised, comprising revisions: 46640 - original trunk revision (backed out in r46655) 46647 - markup fix (backed out in r46655) 46692:46918 merged from branch aimacintyre-sf1454481 branch tested on buildbots (Windows buildbots had problems not related to these changes).
* Patch #1503046, Conditional compilation of zlib.(de)compressobj.copyNeal Norwitz2006-06-121-0/+1
| | | | | copy is only in newer versions of zlib. This should allow zlibmodule to work with older versions like the Tru64 buildbot.
* Fix the socket tests so they can be run concurrently. Backport candidateNeal Norwitz2006-06-121-0/+2
|
* Get rid of f_restricted too. Doc the other 4 ints that were already removedNeal Norwitz2006-06-121-0/+3
| | | | at the NeedForSpeed sprint.
* Bug #1498146: fix optparse to handle Unicode strings in option help,Greg Ward2006-06-111-0/+3
| | | | description, and epilog.
* SF #1366250: optparse docs: fix inconsistency in variable name; minor tweaks.Greg Ward2006-06-111-0/+2
|
* Bug #1361643: fix textwrap.dedent() so it handles tabs appropriately,Greg Ward2006-06-111-0/+3
| | | | | i.e. do *not* expand tabs, but treat them as whitespace that is not equivalent to spaces. Add a couple of test cases. Clarify docs.
* An object with __call__ as an attribute, when called, will have that ↵Brett Cannon2006-06-091-0/+6
| | | | | | attribute checked for __call__ itself, and will continue to look until it finds an object without the attribute. This can lead to an infinite recursion. Closes bug #532646, again. Will be backported.
* RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as ↵Georg Brandl2006-06-091-0/+3
| | | | first argument.
* Add note about wsgirefAndrew M. Kuchling2006-06-091-0/+2
|
* Add note about XMLGenerator bugfixAndrew M. Kuchling2006-06-091-0/+4
|