| Commit message (Expand) | Author | Age | Files | Lines |
* | Rename 'getset' to 'property'. | Guido van Rossum | 2001-09-06 | 3 | -19/+19 |
|
|
* | Add missing period in docstring. | Fred Drake | 2001-09-06 | 1 | -1/+1 |
|
|
* | Two small changes to the resource usage option: | Guido van Rossum | 2001-09-06 | 2 | -4/+5 |
|
|
* | Added tests for key deletion for both Weak*Dictionary flavors. | Fred Drake | 2001-09-06 | 1 | -0/+22 |
|
|
* | Add __delitem__() support for WeakKeyDictionary. | Fred Drake | 2001-09-06 | 1 | -0/+7 |
|
|
* | Skip instead of fail this test if the socket module has no ssl | Guido van Rossum | 2001-09-06 | 1 | -0/+3 |
|
|
* | Patch #416079: fix the debug string output when receiving telnet commands. | Martin v. Löwis | 2001-09-06 | 1 | -5/+82 |
|
|
* | Changed TestResult to store only the text representation of an error. | Steve Purcell | 2001-09-06 | 1 | -10/+15 |
|
|
* | Dubious assumptions: | Tim Peters | 2001-09-06 | 1 | -5/+10 |
|
|
* | Enable large file support on Win32 systems. | Tim Peters | 2001-09-06 | 1 | -4/+4 |
|
|
* | Rework the way we try to check for libm overflow, given that C99 no longer | Tim Peters | 2001-09-05 | 1 | -1/+1 |
|
|
* | LongReprTest fails on the Mac because it uses filenames with more than | Jack Jansen | 2001-09-05 | 1 | -1/+2 |
|
|
* | Class FieldStorage: add two new methods, getfirst() and getlist(), | Guido van Rossum | 2001-09-05 | 1 | -0/+22 |
|
|
* | class Listbox: add itemcget, to satisfy SF patch #457713. | Guido van Rossum | 2001-09-05 | 1 | -1/+5 |
|
|
* | [ #458701 ] Patch to zipfile.py for Java | Finn Bock | 2001-09-05 | 1 | -5/+9 |
|
|
* | Remove a debug print left in the code by Fred. | Guido van Rossum | 2001-09-05 | 1 | -1/+0 |
|
|
* | Patch #449815: Set filesystemencoding based on CODESET. | Martin v. Löwis | 2001-09-05 | 1 | -1/+15 |
|
|
* | Patch #453627: Adds a list of tests that are expected to be skipped for UnixW... | Martin v. Löwis | 2001-09-05 | 1 | -0/+24 |
|
|
* | Patch #428326: New class threading.Timer. | Martin v. Löwis | 2001-09-05 | 1 | -1/+30 |
|
|
* | Implement PEP250: Use Lib/site-packages under windows. | Thomas Heller | 2001-09-05 | 1 | -311/+306 |
|
|
* | [Bug #404274] Restore some special-case code for AIX and BeOS under 1.5.2. | Andrew M. Kuchling | 2001-09-05 | 1 | -1/+28 |
|
|
* | Another / that should be a // (previously not caught because of | Guido van Rossum | 2001-09-05 | 1 | -1/+1 |
|
|
* | Add a test for the final branch in repr.Repr.repr1(), which deals with | Guido van Rossum | 2001-09-05 | 1 | -0/+5 |
|
|
* | Return reasonable results for math.log(long) and math.log10(long) (we were | Tim Peters | 2001-09-05 | 1 | -3/+37 |
|
|
* | [Bug #444589] Record empty directories in the install_data command | Andrew M. Kuchling | 2001-09-04 | 1 | -4/+12 |
|
|
* | [Bug #436732] install.py does not record a created *.pth file in the | Andrew M. Kuchling | 2001-09-04 | 1 | -2/+5 |
|
|
* | Revert one of the "division fixes" in test_long. It intends to try both | Tim Peters | 2001-09-04 | 1 | -2/+2 |
|
|
* | Make pprint more locale-friendly; patch contributed by Denis S. Otkidach. | Fred Drake | 2001-09-04 | 1 | -3/+21 |
|
|
* | Convert docstring to "raw" string. | Fred Drake | 2001-09-04 | 1 | -13/+13 |
|
|
* | The first batch of changes recommended by the fixdiv tool. These are | Guido van Rossum | 2001-09-04 | 19 | -38/+38 |
|
|
* | Added docstrings by Neal Norwitz. This closes SF bug #450980. | Fred Drake | 2001-09-04 | 5 | -3/+89 |
|
|
* | Added docstring by Neal Norwitz. This closes SF bug #450981. | Fred Drake | 2001-09-04 | 1 | -35/+86 |
|
|
* | Added docstring by Neal Norwitz. This closes SF bug #450979. | Fred Drake | 2001-09-04 | 1 | -4/+10 |
|
|
* | HTMLParser is allowed to be more strict than sgmllib, so let's not | Fred Drake | 2001-09-04 | 2 | -37/+17 |
|
|
* | Suppressing all DeprecationWarning messages was a bit of a problem for | Guido van Rossum | 2001-09-04 | 1 | -3/+3 |
|
|
* | Suppress the warning about regex here. | Guido van Rossum | 2001-09-04 | 1 | -0/+4 |
|
|
* | Enhanced the test for DOCTYPE declarations, added a test for dealing with | Fred Drake | 2001-09-04 | 1 | -14/+23 |
|
|
* | Added reasonable parsing of the DOCTYPE declaration, fixed edge cases | Fred Drake | 2001-09-04 | 1 | -12/+260 |
|
|
* | On the mac some library paths returned were outdated, some were outright funny. | Jack Jansen | 2001-09-04 | 1 | -5/+3 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-09-04 | 4 | -4/+3 |
|
|
* | Fixed a typo and added more tests. | Tim Peters | 2001-09-04 | 1 | -1/+12 |
|
|
* | Change long/long true division to return as many good bits as it can; | Tim Peters | 2001-09-04 | 1 | -0/+38 |
|
|
* | Raise OverflowError when appropriate on long->float conversion. Most of | Tim Peters | 2001-09-04 | 1 | -0/+37 |
|
|
* | builtin_dir(): Treat classic classes like types. Use PyDict_Keys instead | Tim Peters | 2001-09-04 | 2 | -11/+32 |
|
|
* | Don't use dir() to find instance attribute names. | Neil Schemenauer | 2001-09-03 | 1 | -3/+7 |
|
|
* | Restore a line deleted by mistake. | Tim Peters | 2001-09-03 | 1 | -0/+2 |
|
|
* | New restriction on pow(x, y, z): If z is not None, x and y must be of | Tim Peters | 2001-09-03 | 4 | -25/+41 |
|
|
* | Make dir() wordier (see the new docstring). The new behavior is a mixed | Tim Peters | 2001-09-03 | 3 | -11/+55 |
|
|
* | Made a doctest out of the examples in Guido's type/class tutorial. | Tim Peters | 2001-09-03 | 1 | -0/+498 |
|
|
* | Make dictionary() a real constructor. Accepts at most one argument, "a | Tim Peters | 2001-09-02 | 1 | -1/+51 |
|
|