summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Sigh. The crucial change was still missing from the previousGuido van Rossum2003-04-161-1/+1
* For StringVar results to strings. Document that boolean things are ofMartin v. Löwis2003-04-162-4/+10
* - super() no longer ignores data descriptors, except __class__. SeeGuido van Rossum2003-04-162-4/+14
* Minor source formatting fixes.Raymond Hettinger2003-04-161-2/+2
* Mostly reformatting, splitting long lines, whitespace normalizationBarry Warsaw2003-04-161-33/+35
* As discussed on python-dev, revised docs to note thatRaymond Hettinger2003-04-161-1/+8
* Add version info for name2codepoint and codepoint2nameNeal Norwitz2003-04-161-2/+2
* When on MacOSX, and only in a framework build, addJack Jansen2003-04-161-0/+13
* The identify() description didn't match the code. Fixed.Jack Jansen2003-04-161-1/+1
* Refer people to the help pages on failure to load the database.Jack Jansen2003-04-161-1/+3
* Added a note on getting 404 Not Found errors when loading the database.Jack Jansen2003-04-161-1/+11
* Added support for per-user installs.Jack Jansen2003-04-161-19/+71
* Allow switching of install dir after creation of preferences.Jack Jansen2003-04-161-7/+10
* Add two dictionaries to htmlentitydefs: name2codepoint mapsWalter Dörwald2003-04-163-257/+289
* Fix three (!) object leaks in the code for assignment to __bases__.Guido van Rossum2003-04-151-1/+3
* Adapted GUI for per-user install. Doesn't do anything yet, thoughJack Jansen2003-04-151-14/+22
* Test SystemEvents too.Jack Jansen2003-04-151-1/+4
* Use object interface for global vars. Fixes #721171.Martin v. Löwis2003-04-151-127/+94
* Ouch, it's Carlo Verre, not Verre Carlo.Guido van Rossum2003-04-152-6/+6
* Add a few errors tests for range().Walter Dörwald2003-04-151-0/+6
* Fix copy & paste error in comment.Walter Dörwald2003-04-151-1/+1
* Fix the test so that it works even when /etc/group has two entriesWalter Dörwald2003-04-151-1/+12
* Fix the test so that it works even when /etc/passwd has two entriesWalter Dörwald2003-04-151-1/+12
* - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences()Guido van Rossum2003-04-155-17/+28
* - Use the tarfile module to unpack tarfiles.Jack Jansen2003-04-151-62/+187
* test_range(): The C code changed to raise TypeError in one of theseTim Peters2003-04-151-1/+1
* Move the call to _Py_PrintReferences() a bit further down. ThisGuido van Rossum2003-04-151-7/+12
* Some errors from range() should be TypeError, not ValueError.Guido van Rossum2003-04-151-3/+3
* Port test_pwd.py to PyUnit. Check that getpwall() andWalter Dörwald2003-04-154-239/+319
* Extend SF patch #707257: Improve code generationRaymond Hettinger2003-04-151-8/+20
* The date class is now properly subclassable. (SF bug #720908)Guido van Rossum2003-04-143-5/+16
* Close off the "Verre Carlo hack" as discussed on python-dev.Guido van Rossum2003-04-142-0/+39
* super_getattro(): kill some dead code; explain a mystery.Guido van Rossum2003-04-141-18/+4
* - list.insert(i, x) now interprets negative i as it would beGuido van Rossum2003-04-144-6/+20
* Add a nameAndrew M. Kuchling2003-04-141-1/+2
* Prompted by Tim's comment, when handle_range_longs() sees anGuido van Rossum2003-04-141-9/+9
* SF patch #720991 by Gary Herron:Guido van Rossum2003-04-147-4/+89
* Typo fixAndrew M. Kuchling2003-04-141-1/+1
* Fix docstring typoAndrew M. Kuchling2003-04-141-1/+1
* Patch #709178: remove -static option from cygwinccompilerJason Tishler2003-04-141-5/+30
* Make readers and writers participate in garbage collection.Jeremy Hylton2003-04-141-14/+71
* Get test working if gzip support is not availableNeal Norwitz2003-04-141-1/+2
* handle_range_longs(): refcount handling is very delicate here, andTim Peters2003-04-131-31/+50
* Mention timeit moduleAndrew M. Kuchling2003-04-131-34/+54
* Use simpler importAndrew M. Kuchling2003-04-131-1/+1
* Must declare vrbls at the tops of blocks in C89 (wouldn't compile).Tim Peters2003-04-131-1/+2
* Oops, _propdeclarations and friends are needed: gensuitemodule uses themJack Jansen2003-04-1256-12422/+13583
* use PyModule_Add{Int,String}Constant() where appropriateSkip Montanaro2003-04-121-12/+6
* tighten up string checksSkip Montanaro2003-04-121-17/+18
* add writerows docstringSkip Montanaro2003-04-121-6/+24