summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Patch #453627: Adds a list of tests that are expected to be skipped for UnixW...Martin v. Löwis2001-09-051-0/+24
* Patch #428326: New class threading.Timer.Martin v. Löwis2001-09-051-1/+30
* Implement PEP250: Use Lib/site-packages under windows.Thomas Heller2001-09-051-311/+306
* [Bug #404274] Restore some special-case code for AIX and BeOS under 1.5.2.Andrew M. Kuchling2001-09-051-1/+28
* Another / that should be a // (previously not caught because ofGuido van Rossum2001-09-051-1/+1
* Add a test for the final branch in repr.Repr.repr1(), which deals withGuido van Rossum2001-09-051-0/+5
* Return reasonable results for math.log(long) and math.log10(long) (we wereTim Peters2001-09-051-3/+37
* [Bug #444589] Record empty directories in the install_data commandAndrew M. Kuchling2001-09-041-4/+12
* [Bug #436732] install.py does not record a created *.pth file in theAndrew M. Kuchling2001-09-041-2/+5
* Revert one of the "division fixes" in test_long. It intends to try bothTim Peters2001-09-041-2/+2
* Make pprint more locale-friendly; patch contributed by Denis S. Otkidach.Fred Drake2001-09-041-3/+21
* Convert docstring to "raw" string.Fred Drake2001-09-041-13/+13
* The first batch of changes recommended by the fixdiv tool. These areGuido van Rossum2001-09-0419-38/+38
* Added docstrings by Neal Norwitz. This closes SF bug #450980.Fred Drake2001-09-045-3/+89
* Added docstring by Neal Norwitz. This closes SF bug #450981.Fred Drake2001-09-041-35/+86
* Added docstring by Neal Norwitz. This closes SF bug #450979.Fred Drake2001-09-041-4/+10
* HTMLParser is allowed to be more strict than sgmllib, so let's notFred Drake2001-09-042-37/+17
* Suppressing all DeprecationWarning messages was a bit of a problem forGuido van Rossum2001-09-041-3/+3
* Suppress the warning about regex here.Guido van Rossum2001-09-041-0/+4
* Enhanced the test for DOCTYPE declarations, added a test for dealing withFred Drake2001-09-041-14/+23
* Added reasonable parsing of the DOCTYPE declaration, fixed edge casesFred Drake2001-09-041-12/+260
* On the mac some library paths returned were outdated, some were outright funny.Jack Jansen2001-09-041-5/+3
* Whitespace normalization.Tim Peters2001-09-044-4/+3
* Fixed a typo and added more tests.Tim Peters2001-09-041-1/+12
* Change long/long true division to return as many good bits as it can;Tim Peters2001-09-041-0/+38
* Raise OverflowError when appropriate on long->float conversion. Most ofTim Peters2001-09-041-0/+37
* builtin_dir(): Treat classic classes like types. Use PyDict_Keys insteadTim Peters2001-09-042-11/+32
* Don't use dir() to find instance attribute names.Neil Schemenauer2001-09-031-3/+7
* Restore a line deleted by mistake.Tim Peters2001-09-031-0/+2
* New restriction on pow(x, y, z): If z is not None, x and y must be ofTim Peters2001-09-034-25/+41
* Make dir() wordier (see the new docstring). The new behavior is a mixedTim Peters2001-09-033-11/+55
* Made a doctest out of the examples in Guido's type/class tutorial.Tim Peters2001-09-031-0/+498
* Make dictionary() a real constructor. Accepts at most one argument, "aTim Peters2001-09-021-1/+51
* Whitespace normalization (tabs -> 4 spaces) in the Mac expectations.Guido van Rossum2001-09-021-35/+35
* Add Listbox.itemconfig[ure] call. (A "recent" addition to Tk -- 8.0Guido van Rossum2001-09-011-5/+26
* Allow for the possibility that globals['__name__'] does not exist;Guido van Rossum2001-08-311-1/+4
* Correct name mangling algorithm, and add a comment.Guido van Rossum2001-08-311-2/+1
* SF bug #456621: normpath on Win32 not collapsing c:\\..Tim Peters2001-08-302-8/+35
* metaclass(): add some more examples of metaclasses, including oneGuido van Rossum2001-08-301-0/+104
* SF patch #455966: Allow leading 0 in float/imag literals.Tim Peters2001-08-302-2/+46
* Fix _convert_NAME() so that it doesn't store locals for class bodies.Jeremy Hylton2001-08-303-15/+15
* Add testcases for inheritance from tricky builtins (numbers, strings,Guido van Rossum2001-08-301-0/+74
* Revert the previous patch to test_pow.py and move the test to test_unary.pyFred Drake2001-08-302-10/+8
* Added a regression test for the negation-of-exponentiation optimizationFred Drake2001-08-301-0/+11
* spurious popJeremy Hylton2001-08-301-1/+0
* win_getpass(): if sys.stdin is not sys.__stdin__, useGuido van Rossum2001-08-301-0/+2
* Add a new function imp.lock_held(), and use it to skip test_threaded_importTim Peters2001-08-301-4/+6
* Flush output more aggressively. This makes things look better ifNeil Schemenauer2001-08-291-0/+2
* Track the block stack more reasonably in order to handle continue inJeremy Hylton2001-08-291-13/+45
* Improve stack depth computation for try/except and try/finallyJeremy Hylton2001-08-291-1/+4