summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* update pydoc-topicsv2.7b1Benjamin Peterson2010-04-101-20/+20
|
* bump version to 2.7b1Benjamin Peterson2010-04-102-2/+2
|
* Fix typo in commentNick Coghlan2010-04-101-1/+1
|
* Try to turn some buildbots green by allowing test_multiprocessing to pass ↵Nick Coghlan2010-04-101-6/+22
| | | | even if it hits the sys.exc_clear code in the threading module, and improve the test coverage by making the ctypes dependencies a bit more granular (two of the cited ctypes objects don't exist on my system)
* Revert r79915 (temporary commit to check for buildbots -> the fix was ↵Antoine Pitrou2010-04-091-36/+11
| | | | successful)
* Temporarily commit fix to issue #8108, to check for buildbot responseAntoine Pitrou2010-04-091-11/+36
|
* Issue #8348: Fix test ftp url in test_urllib2net.Martin v. Löwis2010-04-081-1/+1
|
* Issue #8204: Fix test_ttk notebook test by forcing focus.Martin v. Löwis2010-04-081-0/+4
|
* Issue #8344: Fix test_ttk bug on FreeBSD.Martin v. Löwis2010-04-081-2/+2
|
* Switch regrtest to use StringIO instead of cStringIO for ↵Michael Foord2010-04-082-7/+11
| | | | test_multiprocessing on Windows. Issue 8333.
* unittest.result.TestResult does not create its buffers until they're used. ↵Michael Foord2010-04-072-6/+11
| | | | It uses StringIO not cStringIO. Issue 8333.
* Issue #8337: Disable the remaining test also for now.Martin v. Löwis2010-04-071-1/+1
|
* Use some more interesting test values for (unsigned) long long ctypes tests,Mark Dickinson2010-04-071-0/+6
| | | | | in the hope of getting more information about the test_ctypes failures on Sparc (see issue #8314).
* #7301: add the environment variable $PYTHONWARNINGS to supplement the -WPhilip Jenvey2010-04-061-0/+39
| | | | | command line option patch from Brian Curtin
* Fix module directory finding logic for dotted paths in unittest test discovery.Michael Foord2010-04-061-1/+13
|
* remove a optimization that resulted in unexpected behavior #8929Benjamin Peterson2010-04-061-0/+7
|
* use skip decoratorBenjamin Peterson2010-04-061-4/+2
|
* Issue #8193: Fix test_zlib failure with zlib 1.2.4.Antoine Pitrou2010-04-061-1/+1
|
* Fix Issue8262 - changing RuntimeError wording to "Threads can only be ↵Senthil Kumaran2010-04-061-1/+1
| | | | started once"
* Issue #8321: Give access to OpenSSL version numbers from the `ssl` module,Antoine Pitrou2010-04-052-0/+29
| | | | | using the new attributes `ssl.OPENSSL_VERSION`, `ssl.OPENSSL_VERSION_INFO` and `ssl.OPENSSL_VERSION_NUMBER`.
* Fix a failing test on an apparently slow Windows buildbot.Brian Curtin2010-04-052-3/+4
| | | | | | | On slower Windows machines, waiting 0.1 seconds can sometimes not be enough for a subprocess to start and be ready to accept signals, causing the test to fail. One buildbot is also choking on input()/EOFError so that was changed to not depend on input.
* Classes that override __eq__ also need to define __hash__.Raymond Hettinger2010-04-052-0/+9
|
* Use a more robust infinity check in _Py_HashDouble.Mark Dickinson2010-04-051-0/+9
| | | | | This fixes a test_decimal failure on FreeBSD 8.0. (modf apparently doesn't follow C99 Annex F on FreeBSD.)
* Issue 8316: make test_gdb robust in the face of differing terminalR. David Murray2010-04-051-14/+13
| | | | widths. Patch by Dave Malcolm.
* fix escape_encode to return the correct consumed sizePhilip Jenvey2010-04-051-0/+3
|
* fix dis on new style classes #8310Benjamin Peterson2010-04-041-4/+4
|
* Add tests for functools.total_ordering.Raymond Hettinger2010-04-041-0/+69
|
* Add tests for cmp_to_key.Raymond Hettinger2010-04-044-24/+10
| | | | | | Adopt PEP 8 compliant function name. Factor-out existing uses cmp_to_key. Update documentation to use internal pointers instead of external resource.
* Add functools.CmpToKey()Raymond Hettinger2010-04-041-0/+45
|
* Issue #8300 (__index__ handling in struct.pack): Remove redundant checkMark Dickinson2010-04-041-10/+27
| | | | and improve test coverage. Thanks Meador Inge for the patch.
* Use more specific assert* methods in test_struct.Ezio Melotti2010-04-041-8/+8
|
* Expand test coverage for deque.count().Raymond Hettinger2010-04-031-0/+17
|
* import bsddb more robustlyBenjamin Peterson2010-04-031-0/+6
|
* Remove useless (?) import from r79706Antoine Pitrou2010-04-031-1/+0
|
* Silence DeprecationWarnings from uses of has_key and <> in plat-mac.Mark Dickinson2010-04-0315-118/+118
|
* Add count() method to collections.deque().Raymond Hettinger2010-04-031-0/+7
|
* Replace backquotes with repr(), to silence a SyntaxWarning.Mark Dickinson2010-04-031-1/+1
|
* Ensure 'module removed' warning messages contain the word 'module' or 'package'.Mark Dickinson2010-04-032-2/+2
| | | | | This should fix the test_py3kwarn failure on OS X. test_support.import_module also requires this.
* stop CObject deprecation warnings in test___all__Benjamin Peterson2010-04-032-0/+3
|
* remove deprecation warnings silence attemptingBenjamin Peterson2010-04-031-2/+1
|
* spellingBenjamin Peterson2010-04-031-1/+1
|
* silence PyCObject warnings in bsddbBenjamin Peterson2010-04-031-0/+1
|
* remove unneeded argumentBenjamin Peterson2010-04-031-2/+1
|
* wrapBenjamin Peterson2010-04-031-3/+3
|
* Minor tweak to unittest command line usage messageMichael Foord2010-04-031-1/+2
|
* Adding -b command line option to the unittest usage message.Michael Foord2010-04-031-6/+8
|
* Use more specific assert* methods in test_decimal.Ezio Melotti2010-04-031-43/+43
|
* Issue #8300: Let struct.pack use __index__ to convert and pack non-integers.Mark Dickinson2010-04-031-0/+18
| | | | Based on a patch by Meador Inge.
* Fix a couple of issues with the test_structmembersType class in _testcapimoduleMark Dickinson2010-04-031-2/+2
| | | | | | | | | | | | | - rename to _test_structmembersType to avoid the class being automatically called by test_capi - allow space for trailing NUL in inplace_member field of all_structmembers - use T_STRING_INPLACE instead of T_INPLACE_STRING as keyword argument to _test_structmembersType initializer - don't attempt to initialize inplace_member field if T_STRING_INPLACE argument wasn't supplied.
* Add subtract() method to collections.Counter() objects.Raymond Hettinger2010-04-032-0/+39
|