summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix a typo and be more specificAntoine Pitrou2009-03-281-3/+7
|
* Typo fixGuilherme Polo2009-03-281-1/+1
|
* give os.symlink and os.link() better parameter names #5564Benjamin Peterson2009-03-282-4/+7
|
* #5324: document __subclasses__().Georg Brandl2009-03-281-0/+11
|
* Publicize the GC untracking optimizationAntoine Pitrou2009-03-281-0/+8
|
* Fix typo.Georg Brandl2009-03-281-1/+1
|
* Adjusted _tkinter to compile without warnings when WITH_THREAD is notGuilherme Polo2009-03-272-6/+32
| | | | defined (part of issue #5035)
* fix another nameBenjamin Peterson2009-03-261-1/+1
|
* update email tests to use SkipTestBenjamin Peterson2009-03-261-2/+2
|
* ** is required hereBenjamin Peterson2009-03-261-1/+1
|
* add missing importBenjamin Peterson2009-03-261-0/+1
|
* must pass argument to get expected behavior ;)Benjamin Peterson2009-03-261-1/+1
|
* fix incorrect auto-translation of TestSkipped -> unittest.SkipTestBenjamin Peterson2009-03-2631-75/+75
|
* fix namingBenjamin Peterson2009-03-261-1/+1
|
* remove test_support.TestSkipped and just use unittest.SkipTestBenjamin Peterson2009-03-2644-108/+99
|
* apply the second part of #4242's patch; classify all the implementation ↵Benjamin Peterson2009-03-261-45/+109
| | | | details in test_descr
* rename TestCase.skip() to skipTest() because it causes annoying problems ↵Benjamin Peterson2009-03-263-4/+4
| | | | with trial #5571
* add some useful utilities for skipping tests with unittest's new skipping ↵Benjamin Peterson2009-03-261-1/+67
| | | | | | | ability most significantly apply a modified portion of the patch from #4242 with patches for skipping implementation details
* add support for PyPyBenjamin Peterson2009-03-262-0/+20
|
* roll old test in with new oneBenjamin Peterson2009-03-261-18/+17
|
* more and more implementations now support sys.subversionBenjamin Peterson2009-03-262-16/+11
|
* add much better tests for python version information parsingBenjamin Peterson2009-03-262-24/+48
|
* remove uneeded functionBenjamin Peterson2009-03-261-11/+4
|
* Separate initialization from clearing.Raymond Hettinger2009-03-251-3/+4
|
* this can be slightly less uglyBenjamin Peterson2009-03-251-1/+1
|
* add shorthands for expected failures and unexpected successBenjamin Peterson2009-03-251-2/+2
|
* News item for the platform.py fix (r70594).Marc-André Lemburg2009-03-251-0/+4
|
* Remove the sys.version_info shortcut, since they cause the APIsMarc-André Lemburg2009-03-252-28/+33
| | | | | | | | | to return different information than the _sys_version() output used in previous Python versions. This also fixes issue5561: platform.python_version_tuple returns tuple of ints, should be strings Added more tests for the various platform functions.
* clarify the type of data returnedSkip Montanaro2009-03-251-2/+2
|
* another style nitBenjamin Peterson2009-03-241-1/+2
|
* fix newline issue in test summaryBenjamin Peterson2009-03-241-1/+3
|
* this is better written using assertRaisesBenjamin Peterson2009-03-241-6/+2
|
* fix typoBenjamin Peterson2009-03-241-1/+1
|
* add new skipping things to __all__Benjamin Peterson2009-03-241-2/+4
|
* update docstringBenjamin Peterson2009-03-241-1/+2
|
* remove special metadataBenjamin Peterson2009-03-241-4/+0
|
* some cleanup and modernizationBenjamin Peterson2009-03-241-41/+50
|
* Add links to related resources.Raymond Hettinger2009-03-241-0/+6
|
* update from CVSBenjamin Peterson2009-03-231-1/+1
|
* forgot to document that setUp can be skipped (silly me...)Benjamin Peterson2009-03-231-2/+5
|
* refactor unittest docsBenjamin Peterson2009-03-231-389/+413
|
* comply with the evilJavaNamingScheme for attribute namesBenjamin Peterson2009-03-233-11/+11
| | | | It seems my love of PEP 8 overrode the need for consistentcy
* implement test skipping and expected failuresBenjamin Peterson2009-03-234-26/+443
| | | | patch by myself #1034053
* complain when there's no last exceptionBenjamin Peterson2009-03-231-0/+2
|
* revert r70552; wrong fixBenjamin Peterson2009-03-231-5/+5
|
* fix very old names for exception terms #5543Benjamin Peterson2009-03-231-5/+5
|
* The tracking statistics were actually too pessimisticAntoine Pitrou2009-03-232-3/+4
|
* Issue #4688: Add a heuristic so that tuples and dicts containing onlyAntoine Pitrou2009-03-2311-2/+401
| | | | | | | | | untrackable objects are not tracked by the garbage collector. This can reduce the size of collections and therefore the garbage collection overhead on long-running programs, depending on their particular use of datatypes. (trivia: this makes the "binary_trees" benchmark from the Computer Language Shootout 40% faster)
* Make imported name private and wrap long-line.Raymond Hettinger2009-03-231-3/+4
|
* Issue #5512: speed up the long division algorithm for Python longs.Mark Dickinson2009-03-232-94/+156
| | | | | | | | | | | | | | | The basic algorithm remains the same; the most significant speedups come from the following three changes: (1) normalize by shifting instead of multiplying and dividing (2) the old algorithm usually did an unnecessary extra iteration of the outer loop; remove this. As a special case, this means that long divisions with a single-digit result run twice as fast as before. (3) make inner loop much tighter. Various benchmarks show speedups of between 50% and 150% for long integer divisions and modulo operations.