summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Duplicated description about the illegal continue usage can be found in ↵George Yoshida2006-05-121-5/+2
| | | | | | nearly the same place. They are same, so keep the original one and remove the later-added one.
* Fix alignment error on Itanium.Martin v. Löwis2006-05-121-3/+6
|
* At first there were 6 steps, but one was removed after that.George Yoshida2006-05-121-1/+1
|
* Move icon files into DLLs dir. Fixes #1477968.Martin v. Löwis2006-05-121-5/+5
|
* Dynamically allocate path name buffer for UnicodeMartin v. Löwis2006-05-122-17/+31
| | | | | | path name in listdir. Fixes #1431582. Stop overallocating MAX_PATH characters for ANSI path names. Stop assigning to errno.
* SF patch #1473132: Improve docs for tp_clear and tp_traverse,Tim Peters2006-05-123-4/+87
| | | | | | by Collin Winter. Bugfix candidate (but I'm not going to bother).
* Typo fix.Georg Brandl2006-05-111-1/+1
|
* BaseThreadedTestCase.setup(): stop special-casing WindowsError.Tim Peters2006-05-111-2/+0
| | | | | Rev 45964 fiddled with WindowsError, and broke test_bsddb3 on all the Windows buildbot slaves as a result. This should repair it.
* typo fixAndrew M. Kuchling2006-05-111-2/+2
|
* Grammar fixGeorge Yoshida2006-05-111-2/+2
|
* Change WindowsError to carry the Win32 error code in winerror,Martin v. Löwis2006-05-118-37/+234
| | | | | and the DOS error code in errno. Revert changes where WindowsError catch blocks unnecessarily special-case OSError.
* Don't mask a no memory error with a less meaningful one as discussed on ↵Neal Norwitz2006-05-111-3/+1
| | | | python-checkins
* Detect if %zd is supported by printf() during configure and setsBrett Cannon2006-05-113-0/+86
| | | | | | PY_FORMAT_SIZE_T appropriately. Removes warnings on OS X under gcc 4.0.1 when PY_FORMAT_SIZE_T is set to "" instead of "z" as is needed.
* Fix two small errors in argument lists.Georg Brandl2006-05-101-3/+3
|
* Clarify description of exception handlingAndrew M. Kuchling2006-05-101-8/+12
|
* Patch #721464: pdb.Pdb instances can now be given explicit stdin andGeorg Brandl2006-05-104-103/+112
| | | | | stdout arguments, making it possible to redirect input and output for remote debugging.
* Patch #1484695: Update the tarfile module to version 0.8. This fixesGeorg Brandl2006-05-105-183/+256
| | | | | a couple of issues, notably handling of long file names using the GNU LONGNAME extension.
* Bug #1484978: curses.panel: clarify that Panel objects are destroyed on ↵Georg Brandl2006-05-101-0/+3
| | | | garbage collection.
* Bug #1485447: subprocess: document that the "cwd" parameter isn't used to ↵Georg Brandl2006-05-101-6/+9
| | | | find the executable. Misc. other markup fixes.
* Bug #1482988: indicate more prominently that the Stats class is in the ↵Georg Brandl2006-05-101-2/+3
| | | | pstats module.
* Ignore reflog.txt, too.Thomas Wouters2006-05-100-0/+0
|
* Fix problems found by Coverity.Neal Norwitz2006-05-104-8/+12
| | | | | | | | | | | | | longobject.c: also fix an ssize_t problem <a> could have been NULL, so hoist the size calc to not use <a>. _ssl.c: under fail: self is DECREF'd, but it would have been NULL. _elementtree.c: delete self if there was an error. _csv.c: I'm not sure if lineterminator could have been anything other than a string. However, other string method calls are checked, so check this one too.
* Variant of patch #1478292. doctest.register_optionflag(name)Tim Peters2006-05-103-4/+26
| | | | | shouldn't create a new flag when `name` is already the name of an option flag.
* Disable a test that is unreliable.Thomas Heller2006-05-091-11/+16
|
* Micro optimization. In the first case, we know that frame->f_exc_typeNeal Norwitz2006-05-091-3/+1
| | | | | is NULL, so there's no reason to do anything with it. In the second case, we know frame->f_exc_type is not NULL, so we can just do an INCREF.
* Patch #1478993: take advantage of BaseException/Exception split in cookielibGeorg Brandl2006-05-083-29/+35
|
* Patch #1479302: Make urllib2 digest auth and basic auth play together.Georg Brandl2006-05-082-3/+21
|
* Add test for rev. 45934.Georg Brandl2006-05-081-0/+16
|
* Add missing PyMem_Free.Martin v. Löwis2006-05-081-0/+1
|
* Patch #1483395: add new TLDs to cookielibGeorg Brandl2006-05-071-4/+7
|
* Minor language editAndrew M. Kuchling2006-05-071-5/+5
|
* [Patch #1479977] Revised version of urllib2 HOWTO, edited by John J. LeeAndrew M. Kuchling2006-05-071-143/+308
|
* Handle ERROR_ALREADY_EXISTS.Martin v. Löwis2006-05-061-0/+8
|
* Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API.Martin v. Löwis2006-05-064-54/+211
|
* Use \versionchanged for the feature changeGeorge Yoshida2006-05-061-3/+3
|
* describe optional arguments for DocFileSuiteGeorge Yoshida2006-05-061-1/+5
|
* Clean up.Thomas Heller2006-05-051-6/+1
|
* oops - the function is exported as 'my_free', not 'free'.Thomas Heller2006-05-051-4/+4
|
* Fix memory leaks in the ctypes test suite, reported by valgrind, byThomas Heller2006-05-051-0/+8
| | | | free()ing the memory we allocate.
* Export the 'free' standard C function for use in the test suite.Thomas Heller2006-05-051-0/+5
|
* Update checks to consider Windows error numbers.Martin v. Löwis2006-05-041-3/+29
|
* Drop now-unnecessary arguments to posix_2str.Martin v. Löwis2006-05-041-3/+3
|
* Implement os.{chdir,rename,rmdir,remove} using Win32 directly.Martin v. Löwis2006-05-044-96/+178
|
* Patch #1475845: Raise IndentationError for unexpected indent.Martin v. Löwis2006-05-043-3/+23
|
* Bug #1481530: allow "from os.path import ..." with imputilGeorg Brandl2006-05-041-2/+5
|
* Don't fail the tests when libglut.so or libgle.so cannot be loaded.Thomas Heller2006-05-031-2/+16
|
* Bug #1385040: don't allow "def foo(a=1, b): pass" in the compiler package.Georg Brandl2006-05-033-7/+11
|
* Bug #1472191: convert breakpoint indices to ints before comparing them to intsGeorg Brandl2006-05-031-1/+7
|
* RFE #1472176: In httplib, don't encode the netloc and hostname with "idna" ↵Georg Brandl2006-05-031-4/+13
| | | | if not necessary.
* Add seamonkey to list of Windows browsers too.Georg Brandl2006-05-031-1/+2
|