- 9b69ed9 In test_site, correctly escape backslashes in path names. by Amaury Forgeot d'Arc · 17 years ago
- 8f40f06 test_macos can be skipped on non-mac platforms. by Amaury Forgeot d'Arc · 17 years ago
- da9c9be Fix test_socket_ssl the easy way and remove it per #1489 by Benjamin Peterson · 17 years ago
- 7248fd8 The ssl certificate at https://sf.net is not valid. by Amaury Forgeot d'Arc · 17 years ago
- a3b6baa Remove test_listener_client to remove possible race condition in the multiprocessing tests by Jesse Noller · 17 years ago
- 1862382 Attempt RLock creation prior to test execution on Linux, if it raises the OSError in issue 3111, skip the test suite by Jesse Noller · 17 years ago
- aa4e47a add needed import by Benjamin Peterson · 17 years ago
- ed77f2e skip test_multiprocessing when /dev/shm doesn't exist. This seems to be a chroot problem in the buildbot env. by Benjamin Peterson · 17 years ago
- 59f3ade Issue 3048: Fixed sys.sizeof test fails with wide unicode. by Robert Schuppenies · 17 years ago
- da3a1b1 reduce the test_multiprocessing load to ones that shouldn't hang. These will be reenabled gradually as we find the problems. by Benjamin Peterson · 17 years ago
- a8919fe Issue 3110: Crash with weakref subclass, by Amaury Forgeot d'Arc · 17 years ago
- a161f60 Forward-port new test from r64300. by Georg Brandl · 17 years ago
- a0205d0 silence the test when it is skipped on some platforms. should fix a buildbot. by Gregory P. Smith · 17 years ago
- 06510b2 Run svneol.py on all sources. by Martin v. Löwis · 17 years ago
- dfd7949 convert multiprocessing to unix line endings by Benjamin Peterson · 17 years ago
- 73e9ffc Fixed: sys.getsizeof does not take the actual length of the tuples into account. by Robert Schuppenies · 17 years ago
- 04097a6 Fix typo in method name. The LT class implemented less than. The LE class by Neal Norwitz · 17 years ago
- 26305a0 add py3k warnings to rfc822 by Benjamin Peterson · 17 years ago
- a03722f deprecated mimetools by Benjamin Peterson · 17 years ago
- ffae306 Sounds obvious, but I didn't even realize that you can put non-string by Armin Rigo · 17 years ago
- 0fbcf69 give the threading API PEP 8 names by Benjamin Peterson · 17 years ago
- e29a103 Add test for heapq using both __lt__ and __le__. by Raymond Hettinger · 17 years ago
- e605e4f fix import of multiprocessing by juggling imports by Benjamin Peterson · 17 years ago
- 4267be6 Multi-arg form for set.difference() and set.difference_update(). by Raymond Hettinger · 17 years ago
- 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 17 years ago
- 190d56e add the multiprocessing package to fulfill PEP 371 by Benjamin Peterson · 17 years ago
- d529986 convert test_struct to a unittest thanks to Giampaolo Rodola by Benjamin Peterson · 17 years ago
- 610a93e Handle the case with zero arguments. by Raymond Hettinger · 17 years ago
- 31296c0 backport of 64096 by Benjamin Peterson · 17 years ago
- 8e8de4a Correct test_pydoc for win32 platforms, to account for normalized URLs: by Amaury Forgeot d'Arc · 17 years ago
- b67b53d Fixed test to reflect new filedispatcher semantics, as well as two by Josiah Carlson · 17 years ago
- 901c997 Issue 3048: Fixed sys.getsizeof for unicode objects. by Robert Schuppenies · 17 years ago
- 8509db5 Add the "ast" module, containing helpers to ease use of the "_ast" classes. by Georg Brandl · 17 years ago
- 1a72d88 Applying updated patch from Issue 1736190, which addresses partial by Josiah Carlson · 17 years ago
- 602d8db Added better pickling support to xrange objects. Cleaned up the unit test. by Alexandre Vassalotti · 17 years ago
- 1f2f61a Issue 2582: Fix pickling of xrange objects. by Alexandre Vassalotti · 17 years ago
- 5c4d3d0 Let set.intersection() and set.intersection_update() take multiple input arguments. by Raymond Hettinger · 17 years ago
- ee4bcad Let set.union() and set.update() accept multiple inputs. by Raymond Hettinger · 17 years ago
- ecbdd2e Issue #2138: Add math.factorial(). by Raymond Hettinger · 17 years ago
- e98839a Issue3065: Fixed pickling of named tuples. Added tests. by Raymond Hettinger · 17 years ago
- f4fcdb6 warn about parameter tuple unpacking by Benjamin Peterson · 17 years ago
- d5efd20 Warn about assigning to Py3k keywords (True and False) by Benjamin Peterson · 17 years ago
- 2fe3ef8 change Py3k backquote warning to a SyntaxWarning and add a test by Benjamin Peterson · 17 years ago
- bf0610a Revert unwanted changes. by Georg Brandl · 17 years ago
- 7be19aa Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc() by Georg Brandl · 17 years ago
- 6a5a177 Finished bug #2451. Fixed the retrying part to make it more robust. by Facundo Batista · 17 years ago
- 5640ce2 MacOS X: Enable 4-way universal builds by Ronald Oussoren · 17 years ago
- 80af6da Fixed complex.__getnewargs__() to not emit another complex object. by Alexandre Vassalotti · 17 years ago
- c5393c6 make test_mutex more elegant by Benjamin Peterson · 17 years ago
- a2a89a8 Change all functions that expect one unicode character to accept a pair of by Walter Dörwald · 17 years ago
- 137d824 Fix issue 2782: be less strict about the format string type in strftime. by Gregory P. Smith · 17 years ago
- 8856dda Adds a Thread.getIdent() method to provide the _get_ident() value for by Gregory P. Smith · 17 years ago
- ac19d85 Deprecate htmllib and sgmllib for 3.0. by Georg Brandl · 17 years ago
- 9359aff Fix test_sys. by Robert Schuppenies · 17 years ago
- 12f8107 Fix test_descrtut. by Georg Brandl · 17 years ago
- 7a6de8b Some style nits. Also clarify in the docstrings what __sizeof__ does. by Georg Brandl · 17 years ago
- 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 17 years ago
- 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 17 years ago
- 8df4e22 Fix typo in testSum by Mark Dickinson · 17 years ago
- 4f1b1ed Fixed the semantic of timeout for socket.create_connection and by Facundo Batista · 17 years ago
- abb34fe UserString.MutableString has been removed in Python 3.0. by Brett Cannon · 17 years ago
- dbd2f6d Better integration between Python testing and bsddb3 by Jesus Cea · 17 years ago
- b1a54a3 Do not close external file objects passed to tarfile.open(mode='w:bz2') by Lars Gustäbel · 17 years ago
- 1d31023 Improvements for test_py3kwarn by Benjamin Peterson · 17 years ago
- 838c7b3 remove some __getslice__ by Benjamin Peterson · 17 years ago
- c1c83bb remove duplication in test module by Benjamin Peterson · 17 years ago
- 4036fd4 Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until by Gregory P. Smith · 17 years ago
- 3aa84a7 warn about some members of the commands module by Benjamin Peterson · 17 years ago
- eeb2b21 add __all__ to test_support by Benjamin Peterson · 17 years ago
- 9e6468b Fix issue2669: bsddb simple/legacy interface iteration silently fails by Gregory P. Smith · 17 years ago
- e08e3d0 #2959: allow multiple close() calls for GzipFile. by Georg Brandl · 17 years ago
- 392c6fc ConfigParser renaming reversal part 3: move module into place and adapt imports. by Georg Brandl · 17 years ago
- a6168f9 Queue renaming reversal part 3: move module into place and by Georg Brandl · 17 years ago
- 8107290 * Give the test_bsddb3 tests a unique temporary directory to run their by Gregory P. Smith · 17 years ago
- e152a77 socketserver renaming reversal part 3: move the module into the right by Georg Brandl · 17 years ago
- 7d3d04d Don't try to get the window size if it was never set before. by Martin v. Löwis · 17 years ago
- 27e4a17 Issue #1390: Raise ValueError in toxml when an invalid comment would by Martin v. Löwis · 17 years ago
- badd7da Skip math.sum tests on non IEEE 754 platforms, and on IEEE 754 platforms by Mark Dickinson · 17 years ago
- 2ee0e8e Revert the renaming of repr to reprlib. by Brett Cannon · 17 years ago
- d055835 Better error reporting in test_math.py by Mark Dickinson · 17 years ago
- c11c339 Add tests for math.sum (Issue #2819) by Mark Dickinson · 17 years ago
- 3a7305e fix test_pydoc so it works on make installed Python installations by Benjamin Peterson · 17 years ago
- 83d4534 remove redundant invocation of json doctests by Benjamin Peterson · 17 years ago
- 948ee7a use more specific asserts in test_opcode by Benjamin Peterson · 17 years ago
- a4e4ef1 check for toolbox glue before testing platform.mac_ver intensly by Benjamin Peterson · 17 years ago
- 88659b0 #2592: delegate nb_index and the floor/truediv slots in weakref.proxy. by Georg Brandl · 17 years ago
- 112aa50 Patch #1775025: allow opening zipfile members via ZipInfo instances. by Georg Brandl · 17 years ago
- b7e419e Use inspect.getabsfile() to get the documented module's filename. by Georg Brandl · 17 years ago
- fb3de1f Improve diffing logic and output for test_pydoc. by Georg Brandl · 17 years ago
- bcdafa4 Remove html package and fix test_htmlparser. by Georg Brandl · 17 years ago
- dffbf5f Revert copy_reg -> copyreg rename. by Georg Brandl · 17 years ago
- 6634bf2 Tkinter rename reversal: remove tkinter package, adapt imports and docs. by Georg Brandl · 17 years ago
- 7bb1653 Argh, this is the *actual* test that works under Windows. by Georg Brandl · 17 years ago
- b740f6a Activate two more test cases in test_httpservers. by Georg Brandl · 17 years ago
- d995e11 revert creation of the html.entities and html.parser modules by Fred Drake · 17 years ago
- d21dabc change some imports in tests so they will not be skipped in 3.0 by Benjamin Peterson · 17 years ago
- 913c15c fix test_platform (os was not imported) by Benjamin Peterson · 17 years ago
- 6e7e079 Fix test_pyclbr after another platform-dependent function was added to urllib. by Georg Brandl · 17 years ago
- 7a0f4c7 - Add unittests for platform.mac_ver (or rather, ensure that the unittest for by Ronald Oussoren · 17 years ago
- f5c38da bring test_pydoc up to my high standards (now that I have them) by Benjamin Peterson · 17 years ago