summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Patch 1439 by Bill Janssen. I think this will work.Guido van Rossum2007-11-141-85/+21
* Fix for bug #1442 pythonstartup addition of minor error checkingChristian Heimes2007-11-141-0/+10
* Moved the initalization of the exception before the initialization of sys.Christian Heimes2007-11-141-3/+3
* Paths and file names from the fs should always be decoded with PyUnicode_Deco...Christian Heimes2007-11-141-3/+4
* Another #1415 fix for Windows GUI appsChristian Heimes2007-11-131-2/+6
* Fixed space -> tabChristian Heimes2007-11-131-3/+3
* Fix for #1415 pythonw.exe fails because std streams a missingChristian Heimes2007-11-134-13/+63
* Correction for issue1265 (pdb bug with "with" statement).Amaury Forgeot d'Arc2007-11-132-9/+59
* Add -i option. Don't exit when the command fails. Redirect stderr to stdout.Guido van Rossum2007-11-121-12/+34
* Another fix for #1414Christian Heimes2007-11-122-2/+5
* Fix for refleak tests through regrtest.py -R:: bug #1414Christian Heimes2007-11-123-38/+42
* Patch 1420 by Ron Adam.Guido van Rossum2007-11-124-49/+58
* Let's do as Guido says and return None instead of -1Christian Heimes2007-11-121-3/+2
* Stop Python code from instantiating a new stdprinter with sys.stderr.__class__()Christian Heimes2007-11-121-11/+90
* Merged revisions 58939-58946 via svnmerge fromChristian Heimes2007-11-124-38/+46
* Merged revisions 58930-58938 via svnmerge fromChristian Heimes2007-11-124-16/+54
* Minimal change that disables (AFAICT) the interpolation of \u and \U insideGuido van Rossum2007-11-122-8/+160
* Fixed some of the bugs in the readline module. #1425 is still open and severa...Christian Heimes2007-11-111-14/+19
* Merged revisions 58886-58929 via svnmerge fromGuido van Rossum2007-11-1016-39/+349
* No need to include windows.h twiceAmaury Forgeot d'Arc2007-11-101-5/+1
* Bug #1415Christian Heimes2007-11-101-2/+2
* seek() has to accept any int-like numberChristian Heimes2007-11-091-2/+4
* It works w/o the newline on my system but you are right. A newline is nicer.Christian Heimes2007-11-092-2/+2
* I've created three bat files based on the howto http://wiki.python.org/moin/B...Christian Heimes2007-11-083-0/+73
* Issue 1406: use widechar api for os.environ, on Windows.Thomas Heller2007-11-081-3/+65
* Fixed bug #1081: file.seek allows float argumentsChristian Heimes2007-11-083-0/+10
* Fixed #1403 where compileall and py_compile choked on an encoding header in a...Christian Heimes2007-11-082-1/+4
* Added unit test to verify that #1087 is invalid. os.popen is using subprocess.Christian Heimes2007-11-081-0/+9
* Applied patch #1127 from Quentin Gallet Gilles: No tests for inspect.getfulla...Christian Heimes2007-11-082-4/+45
* Added tests from Raghuram Devarakonda for bug #1395 'py3k: duplicated line en...Christian Heimes2007-11-081-1/+69
* Fixed memoryview constructor. It allowed arbitrary keyword arguments. The bug...Christian Heimes2007-11-082-3/+33
* Cosmetic changes to Christian's patch r58903.Guido van Rossum2007-11-071-6/+4
* Patch for bug http://bugs.python.org/issue1293Christian Heimes2007-11-071-1/+19
* Reset original sys.stdout, stderr and displayhook even in the case of an errorChristian Heimes2007-11-071-9/+10
* Change a variable to Py_ssize_t to silence a compiler warning (and because itBrett Cannon2007-11-061-1/+1
* Remove an unused local variable.Brett Cannon2007-11-061-1/+0
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-06148-3512/+2528
* Merged revisions 58862-58885 via svnmerge fromGuido van Rossum2007-11-063-8/+186
* Fixed bug #1384 Windows fix for inspect testsChristian Heimes2007-11-061-12/+20
* Merged revisions 58817-58861 via svnmerge fromGuido van Rossum2007-11-059-35/+95
* Applied patch #1379 with a minor tweak.Christian Heimes2007-11-041-2/+2
* Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success.Christian Heimes2007-11-043-5/+17
* Disabled test_sys_path_with_unicode for nowChristian Heimes2007-11-042-5/+4
* Re-add two paragraphs that seem to have been lost during the merge from trunk.Georg Brandl2007-11-031-4/+13
* Patch 1171 by mfenniak -- allow subclassing of bytes.Guido van Rossum2007-11-032-6/+92
* Merged revisions 58742-58816 via svnmerge fromGuido van Rossum2007-11-0220-88/+142
* Fixes for issue 1752184, ensuring type objects are always createdGuido van Rossum2007-11-024-6/+15
* Patch 1373 by Adam Hupp.Guido van Rossum2007-11-021-56/+20
* Removed non ASCII text from test as requested by Guido.Christian Heimes2007-11-011-4/+5
* Fixes issue1371 and reenables those tests.Gregory P. Smith2007-11-013-21/+53