summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo (PyChecker)Andrew M. Kuchling2001-08-131-1/+1
|
* Catch curses.error instead of a non-existent global (PyChecker)Andrew M. Kuchling2001-08-131-2/+2
| | | | Edit comment
* Remove redundant importAndrew M. Kuchling2001-08-131-1/+0
|
* further work on font config and general feel improvementsSteven M. Gava2001-08-131-21/+24
|
* SF patch #445412 extract ndiff functionality to difflib, fromTim Peters2001-08-121-267/+575
| | | | David Goodger.
* Modify _Set to support iteration.Jeremy Hylton2001-08-121-0/+3
| | | | | Otherwise printlist(surprise) will fail with a TypeError, because map is called with an argument that doesn't support iteration.
* - Expand test for dynamic objects.Guido van Rossum2001-08-121-21/+33
| | | | | | - Remove various 'global' directives and move some global definitions inside the test functions that use them -- we have nested scopes so the old hacks using globals are no longer needed.
* Make the output of tests skipped readable (i.e., deliberately break itTim Peters2001-08-121-6/+30
| | | | into indented lines each of which probably fits on a typical screen line).
* dynamics(): add tests for dynamic *instances* (which are currentlyGuido van Rossum2001-08-121-1/+20
| | | | broken). Also fix an invalid reference to C (should be S).
* Test the unary operator changes to the compilerJeremy Hylton2001-08-121-0/+43
|
* Add the list of expected skips for Linux 2.x. Restructured the code aGuido van Rossum2001-08-121-28/+51
| | | | | little bit using a dictionary to avoid more code duplication as more platforms are supported.
* Move line; reported on python-dev by Mark Favas (thanks!).Tim Peters2001-08-121-1/+1
|
* Teach regrtest which tests we *expect* to skip on Win32. Please teach itTim Peters2001-08-121-0/+85
| | | | about your platform too.
* removed some cruftSteven M. Gava2001-08-121-7/+0
|
* _Condition.wait(): never sleep longer than the timeout time remaining,Tim Peters2001-08-121-4/+11
| | | | | and even if we have a long time left to wait, try the lock at least 20 times/second.
* The test assumed that the local pathname convention for "foo" would sort ↵Jack Jansen2001-08-111-2/+4
| | | | before "foo/bar", which is not true on the mac (where they are "foo" and ":foo:bar", respectively; ":foo" would be fine too, but "foo" is the preferred spelling). Fixed by sorting the output.
* Replace all type comparisons with isinstance() callsJeremy Hylton2001-08-111-9/+9
|
* repair posix fonts fixSteven M. Gava2001-08-112-38/+66
|
* Only catch the errors that can actually occur, as reported in bug #411881.Martin v. Löwis2001-08-112-5/+9
|
* support for help menu changesSteven M. Gava2001-08-111-0/+5
|
* some re-designSteven M. Gava2001-08-111-18/+27
|
* supports about changesSteven M. Gava2001-08-111-0/+50
|
* adjust help menu bindingsSteven M. Gava2001-08-111-0/+1
|
* Added tests for rich comparison operator functions.Fred Drake2001-08-112-119/+212
| | | | Converted tests to PyUnit.
* Add test for SF bug #442833 (multiple inheritance).Guido van Rossum2001-08-101-0/+14
|
* The message accompanying the TypeError exception on a readonlyGuido van Rossum2001-08-101-1/+1
| | | | attribute changed again.
* [Bug #414032] Make the 'sdist' command work when the distribution containsAndrew M. Kuchling2001-08-101-2/+18
| | | | | | libraries. This is done by adding a .get_source_files() method, contributed by Rene Liebscher and slightly modified. Remove an unused local variable spotted by PyChecker
* Allow AttributeError as well as TypeError for attribute-less objects.Guido van Rossum2001-08-101-1/+1
|
* Remove unused variableAndrew M. Kuchling2001-08-101-1/+0
|
* Fix typo caught by PyCheckerAndrew M. Kuchling2001-08-101-1/+1
|
* Add forgotten importAndrew M. Kuchling2001-08-101-0/+1
|
* Wrap a comment to fit in 80 columns.Fred Drake2001-08-101-6/+6
| | | | | Use construction-syntax for an exception to make the argument easier to read.
* Use .get_license()Andrew M. Kuchling2001-08-101-1/+1
|
* [Bug #412271, bug #449009] Use 'license' as the attribute name,Andrew M. Kuchling2001-08-101-11/+11
| | | | | | | though 'licence' is still supported for backward-compatibility (Should I add a warning to get_licence(), or not bother?) Also fixes an UnboundLocalError noticed by PyChecker
* Patch #441091 from Finn Bock: the more advanced flush options are notAndrew M. Kuchling2001-08-101-15/+20
| | | | | available in java, so only use the advanced flush options if they are defined in the zlib module.
* Disable the sub() optimization until Fredrik has time to look into SFGuido van Rossum2001-08-101-0/+1
| | | | | | bug #449000, "re.sub(r'\n', ...) broke". This was Fredrik's suggestion -- he's on vacation and said he wouldn't be able to work on this until next week.
* Check in a testcase for SF bug #449000: re.sub(r'\n', ...) broke.Guido van Rossum2001-08-102-0/+12
|
* Remove hard-coded NT constants that are already defined in errno on NT.Jeremy Hylton2001-08-101-11/+5
| | | | | Wrap some long lines. Remove unnecessary tuple unpack.
* Expose nl_langinfo through locale where available.Martin v. Löwis2001-08-101-0/+2
|
* Whitespace normalization.Tim Peters2001-08-0912-55/+54
|
* Skip test_mhlib on Windows -- too many Unix assumptions.Tim Peters2001-08-091-2/+6
|
* Fix two bugs detected by PyChecker: there's no need for redundantGuido van Rossum2001-08-091-1/+1
| | | | "import MacOS", and there *is* a need for "import operator".
* Import UnknownFileErrorAndrew M. Kuchling2001-08-091-1/+1
|
* Import the errno moduleAndrew M. Kuchling2001-08-091-1/+2
|
* Use correct variable nameAndrew M. Kuchling2001-08-091-1/+1
|
* Added tests for operator.floordiv() and operator.truediv().Fred Drake2001-08-092-0/+4
|
* Restore the test for 'object' that I removed when object wasGuido van Rossum2001-08-091-0/+24
| | | | uninstantiable. All is well now.
* Use type(x).__name__ to get the name of the type instead of parsingGuido van Rossum2001-08-091-1/+1
| | | | repr(type(x)).
* Unittests for mhlib, by Nick Mathewson.Guido van Rossum2001-08-091-0/+328
|
* SF patch #403640: incomplete proxy handling in URLLIBTim Peters2001-08-091-0/+62
| | | | Look specific to Windows. Don't know whether it works.