summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Add test.test_support.guard_warnings_filter . This function returns a contextBrett Cannon2006-12-136-26/+37
| | | | | manager that protects warnings.filter from being modified once the context is exited.
* Remove unneeded imports of 'warnings'.Brett Cannon2006-12-132-2/+0
|
* Remove an unneeded import of 'warnings'.Brett Cannon2006-12-131-1/+0
|
* Fix typo.Walter Dörwald2006-12-121-1/+1
|
* Patch by "cuppatea" (SF #1503765)Vinay Sajip2006-12-111-4/+5
|
* Patch by Jeremy Katz (SF #1609407)Vinay Sajip2006-12-111-2/+2
|
* Move errno imports back to individual functions.Georg Brandl2006-12-111-2/+3
|
* Fix a typoNeal Norwitz2006-12-111-1/+1
|
* - Fix the build of the library reference in info format.Matthias Klose2006-12-093-14/+35
|
* Patch #1608267: fix a race condition in os.makedirs() is the directoryGeorg Brandl2006-12-092-3/+11
| | | | to be created is already there.
* #1577756: svnversion doesn't react to LANG=C, use LC_ALL=C to forceGeorg Brandl2006-12-081-1/+1
| | | | English output.
* Add test for SF bug 1576657Raymond Hettinger2006-12-081-0/+11
|
* Port Georg's dictobject.c fix keys that were tuples got unpacked on the way ↵Raymond Hettinger2006-12-081-1/+15
| | | | | | to setting a KeyError (svn revision 52535, sf bug 1576657).
* Port Armin's fix for a dict resize vulnerability (svn revision 46589, sf bug ↵Raymond Hettinger2006-12-081-6/+31
| | | | 1456209).
* Eliminate two redundant calls to PyObject_Hash().Raymond Hettinger2006-12-081-4/+23
|
* RFE #1592899: mention string.maketrans() in docs for str.translate,Georg Brandl2006-12-072-1/+4
| | | | remove reference to the old regex module in the former's doc.
* Fix a bad assumption that all objects assigned to '__loader__' on a moduleBrett Cannon2006-12-061-1/+2
| | | | will have a '_files' attribute.
* Patch #1610437: fix a tarfile bug with long filename headers.Georg Brandl2006-12-063-11/+21
|
* Fix pickle doc typoGeorge Yoshida2006-12-051-1/+1
| | | | Patch #1608758
* fix a versionchanged tagGeorge Yoshida2006-12-041-1/+1
|
* - Fix build failure on kfreebsd and on the hurd.Matthias Klose2006-12-032-1/+3
|
* Patch #1371075: Make ConfigParser accept optional dict typeMartin v. Löwis2006-12-034-11/+68
| | | | for ordering, sorting, etc.
* Patch #1544279: Improve thread-safety of the socket module by movingMartin v. Löwis2006-12-033-53/+48
| | | | | 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-032-3/+3
|
* Add name to credits (for untokenize).Raymond Hettinger2006-12-021-1/+1
|
* Move xdrlib tests from the module into a separate test script,Walter Dörwald2006-12-013-78/+54
| | | | port the tests to unittest and add a few new tests.
* Update version.Guido van Rossum2006-11-301-2/+2
|
* Forgot a case where the locals can now be a general mappingArmin Rigo2006-11-291-1/+3
| | | | instead of just a dictionary. (backporting...)
* Fix #1563807: _ctypes built on AIX fails with ld ffi error.Thomas Heller2006-11-282-1/+3
| | | | | | | The contents of ffi_darwin.c must be compiled unless __APPLE__ is defined and __ppc__ is not. Will backport.
* Bug #1603789: grammatical error in Tkinter docs.Georg Brandl2006-11-271-1/+1
|
* Bug #1603321: make pstats.Stats accept Unicode file paths.Georg Brandl2006-11-261-1/+1
|
* Disable _XOPEN_SOURCE on NetBSD 1.x.Martin v. Löwis2006-11-253-1/+13
| | | | Will backport to 2.5
* Fix bug #1598620: A ctypes structure cannot contain itself.Thomas Heller2006-11-243-3/+45
|
* ... and the number of the counting shall be three.Raymond Hettinger2006-11-231-1/+1
|
* Fix and/add typoRaymond Hettinger2006-11-231-2/+2
|
* a test for an error condition not covered by existing testsMichael W. Hudson2006-11-231-0/+7
| | | | (noticed this when writing the equivalent code for pypy)
* Bug #1601630: little improvement to getopt docsGeorg Brandl2006-11-231-3/+6
|
* Change decode() so that it works with a buffer (i.e. unicode(..., 'utf-8-sig'))Walter Dörwald2006-11-232-1/+5
| | | | SF bug #1601501.
* Patch #1362975: Rework CodeContext indentation algorithm toMartin v. Löwis2006-11-223-18/+64
| | | | | 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-212-0/+11
| | | | | and _CRT_NONSTDC_NO_DEPRECATE. Will backport.
* Fix SF #1599879, socket.gethostname should ref getfqdn directly.Neal Norwitz2006-11-211-2/+2
|
* Oops, convert tabs to spacesNeal Norwitz2006-11-211-2/+2
|
* Bug #1599782: Fix segfault on bsddb.db.DB().type().Neal Norwitz2006-11-213-2/+6
| | | | | | | | | 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.
* Jython compatibility fix: if uu.decode() opened its output file, be sure toAndrew M. Kuchling2006-11-201-0/+4
| | | | close it.
* Further markup fix.Georg Brandl2006-11-201-1/+1
|
* markup fixGeorge Yoshida2006-11-201-1/+1
|
* Speed up function calls into the math module by using METH_O.Neal Norwitz2006-11-192-63/+57
| | | | | 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-194-4/+33
| | | | in xmlrpclib.
* Add a test case of data w/ bytes > 127Andrew M. Kuchling2006-11-191-0/+3
|
* Make cStringIO.truncate raise IOError for negativeMartin v. Löwis2006-11-193-1/+15
| | | | | arguments (even for -1). Fixes the last bit of #1359365.