| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | update pydoc-topicsv2.7b1 | Benjamin Peterson | 2010-04-10 | 1 | -20/+20 |
| | | |||||
| * | bump version to 2.7b1 | Benjamin Peterson | 2010-04-10 | 2 | -2/+2 |
| | | |||||
| * | Fix typo in comment | Nick Coghlan | 2010-04-10 | 1 | -1/+1 |
| | | |||||
| * | Try to turn some buildbots green by allowing test_multiprocessing to pass ↵ | Nick Coghlan | 2010-04-10 | 1 | -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 Pitrou | 2010-04-09 | 1 | -36/+11 |
| | | | | | successful) | ||||
| * | Temporarily commit fix to issue #8108, to check for buildbot response | Antoine Pitrou | 2010-04-09 | 1 | -11/+36 |
| | | |||||
| * | Issue #8348: Fix test ftp url in test_urllib2net. | Martin v. Löwis | 2010-04-08 | 1 | -1/+1 |
| | | |||||
| * | Issue #8204: Fix test_ttk notebook test by forcing focus. | Martin v. Löwis | 2010-04-08 | 1 | -0/+4 |
| | | |||||
| * | Issue #8344: Fix test_ttk bug on FreeBSD. | Martin v. Löwis | 2010-04-08 | 1 | -2/+2 |
| | | |||||
| * | Switch regrtest to use StringIO instead of cStringIO for ↵ | Michael Foord | 2010-04-08 | 2 | -7/+11 |
| | | | | | test_multiprocessing on Windows. Issue 8333. | ||||
| * | unittest.result.TestResult does not create its buffers until they're used. ↵ | Michael Foord | 2010-04-07 | 2 | -6/+11 |
| | | | | | It uses StringIO not cStringIO. Issue 8333. | ||||
| * | Issue #8337: Disable the remaining test also for now. | Martin v. Löwis | 2010-04-07 | 1 | -1/+1 |
| | | |||||
| * | Use some more interesting test values for (unsigned) long long ctypes tests, | Mark Dickinson | 2010-04-07 | 1 | -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 -W | Philip Jenvey | 2010-04-06 | 1 | -0/+39 |
| | | | | | | command line option patch from Brian Curtin | ||||
| * | Fix module directory finding logic for dotted paths in unittest test discovery. | Michael Foord | 2010-04-06 | 1 | -1/+13 |
| | | |||||
| * | remove a optimization that resulted in unexpected behavior #8929 | Benjamin Peterson | 2010-04-06 | 1 | -0/+7 |
| | | |||||
| * | use skip decorator | Benjamin Peterson | 2010-04-06 | 1 | -4/+2 |
| | | |||||
| * | Issue #8193: Fix test_zlib failure with zlib 1.2.4. | Antoine Pitrou | 2010-04-06 | 1 | -1/+1 |
| | | |||||
| * | Fix Issue8262 - changing RuntimeError wording to "Threads can only be ↵ | Senthil Kumaran | 2010-04-06 | 1 | -1/+1 |
| | | | | | started once" | ||||
| * | Issue #8321: Give access to OpenSSL version numbers from the `ssl` module, | Antoine Pitrou | 2010-04-05 | 2 | -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 Curtin | 2010-04-05 | 2 | -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 Hettinger | 2010-04-05 | 2 | -0/+9 |
| | | |||||
| * | Use a more robust infinity check in _Py_HashDouble. | Mark Dickinson | 2010-04-05 | 1 | -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 terminal | R. David Murray | 2010-04-05 | 1 | -14/+13 |
| | | | | | widths. Patch by Dave Malcolm. | ||||
| * | fix escape_encode to return the correct consumed size | Philip Jenvey | 2010-04-05 | 1 | -0/+3 |
| | | |||||
| * | fix dis on new style classes #8310 | Benjamin Peterson | 2010-04-04 | 1 | -4/+4 |
| | | |||||
| * | Add tests for functools.total_ordering. | Raymond Hettinger | 2010-04-04 | 1 | -0/+69 |
| | | |||||
| * | Add tests for cmp_to_key. | Raymond Hettinger | 2010-04-04 | 4 | -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 Hettinger | 2010-04-04 | 1 | -0/+45 |
| | | |||||
| * | Issue #8300 (__index__ handling in struct.pack): Remove redundant check | Mark Dickinson | 2010-04-04 | 1 | -10/+27 |
| | | | | | and improve test coverage. Thanks Meador Inge for the patch. | ||||
| * | Use more specific assert* methods in test_struct. | Ezio Melotti | 2010-04-04 | 1 | -8/+8 |
| | | |||||
| * | Expand test coverage for deque.count(). | Raymond Hettinger | 2010-04-03 | 1 | -0/+17 |
| | | |||||
| * | import bsddb more robustly | Benjamin Peterson | 2010-04-03 | 1 | -0/+6 |
| | | |||||
| * | Remove useless (?) import from r79706 | Antoine Pitrou | 2010-04-03 | 1 | -1/+0 |
| | | |||||
| * | Silence DeprecationWarnings from uses of has_key and <> in plat-mac. | Mark Dickinson | 2010-04-03 | 15 | -118/+118 |
| | | |||||
| * | Add count() method to collections.deque(). | Raymond Hettinger | 2010-04-03 | 1 | -0/+7 |
| | | |||||
| * | Replace backquotes with repr(), to silence a SyntaxWarning. | Mark Dickinson | 2010-04-03 | 1 | -1/+1 |
| | | |||||
| * | Ensure 'module removed' warning messages contain the word 'module' or 'package'. | Mark Dickinson | 2010-04-03 | 2 | -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 Peterson | 2010-04-03 | 2 | -0/+3 |
| | | |||||
| * | remove deprecation warnings silence attempting | Benjamin Peterson | 2010-04-03 | 1 | -2/+1 |
| | | |||||
| * | spelling | Benjamin Peterson | 2010-04-03 | 1 | -1/+1 |
| | | |||||
| * | silence PyCObject warnings in bsddb | Benjamin Peterson | 2010-04-03 | 1 | -0/+1 |
| | | |||||
| * | remove unneeded argument | Benjamin Peterson | 2010-04-03 | 1 | -2/+1 |
| | | |||||
| * | wrap | Benjamin Peterson | 2010-04-03 | 1 | -3/+3 |
| | | |||||
| * | Minor tweak to unittest command line usage message | Michael Foord | 2010-04-03 | 1 | -1/+2 |
| | | |||||
| * | Adding -b command line option to the unittest usage message. | Michael Foord | 2010-04-03 | 1 | -6/+8 |
| | | |||||
| * | Use more specific assert* methods in test_decimal. | Ezio Melotti | 2010-04-03 | 1 | -43/+43 |
| | | |||||
| * | Issue #8300: Let struct.pack use __index__ to convert and pack non-integers. | Mark Dickinson | 2010-04-03 | 1 | -0/+18 |
| | | | | | Based on a patch by Meador Inge. | ||||
| * | Fix a couple of issues with the test_structmembersType class in _testcapimodule | Mark Dickinson | 2010-04-03 | 1 | -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 Hettinger | 2010-04-03 | 2 | -0/+39 |
| | | |||||
