Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and ↵ | Ezio Melotti | 2010-12-01 | 21 | -186/+203 |
| | | | | assertRaisesRegex. | ||||
* | Fix test failure in debug builds and add NEWS entry for r86908 | Ezio Melotti | 2010-12-01 | 2 | -3/+5 |
| | |||||
* | #10535: Enable silenced warnings in unittest by default | Ezio Melotti | 2010-12-01 | 8 | -22/+228 |
| | |||||
* | Doc and docstring nits. | Raymond Hettinger | 2010-12-01 | 2 | -2/+6 |
| | |||||
* | Fix #10591. Fix test_os for refleak runs. | Brian Curtin | 2010-11-30 | 1 | -2/+1 |
| | | | | Split a common setUp/tearDown into the appropriate parts. | ||||
* | Issue #8685: Speed up set difference `a - b` when source set `a` is | Antoine Pitrou | 2010-11-30 | 2 | -7/+25 |
| | | | | much larger than operand `b`. Patch by Andrew Bennetts. | ||||
* | Add link to specification. | Raymond Hettinger | 2010-11-30 | 1 | -0/+1 |
| | |||||
* | Documentation nits. | Raymond Hettinger | 2010-11-30 | 1 | -3/+3 |
| | |||||
* | Add example, tighten text, and minor clean-ups. | Raymond Hettinger | 2010-11-30 | 4 | -37/+50 |
| | |||||
* | Fix typo: "ofbytes" should be "of bytes" | Daniel Stutzbach | 2010-11-30 | 1 | -3/+3 |
| | |||||
* | Add some internal links. | Raymond Hettinger | 2010-11-30 | 2 | -2/+3 |
| | |||||
* | Issue #9598: untabify.py will now respect encoding cookie in the files it ↵ | Alexander Belopolsky | 2010-11-30 | 1 | -3/+4 |
| | | | | processes | ||||
* | Let’s keep “throw” for the generator method and use “raise” elsewhere. | Éric Araujo | 2010-11-30 | 4 | -4/+4 |
| | |||||
* | Issue #10552: Partially fixed a sort error in Tools/unicode/gencodec.py | Alexander Belopolsky | 2010-11-30 | 1 | -7/+10 |
| | |||||
* | Actually fix what I attempted to fix in r86888... | Brian Curtin | 2010-11-30 | 1 | -3/+3 |
| | |||||
* | Issue 9873: the URL parsing functions now accept ASCII encoded byte ↵ | Nick Coghlan | 2010-11-30 | 5 | -137/+603 |
| | | | | sequences in addition to character strings | ||||
* | Try to fix failures on platforms that can't encode the test characters. | Brian Curtin | 2010-11-30 | 1 | -1/+6 |
| | | | | Skip the test if encoding fails. | ||||
* | Fix typo. | Georg Brandl | 2010-11-30 | 1 | -1/+1 |
| | |||||
* | Remove redundant includes of headers that are already included by Python.h. | Georg Brandl | 2010-11-30 | 22 | -32/+0 |
| | |||||
* | Include structseq.h in Python.h, and remove now-redundant includes in ↵ | Georg Brandl | 2010-11-30 | 14 | -12/+3 |
| | | | | individual sources. | ||||
* | Fix input type for zlib. | Georg Brandl | 2010-11-30 | 1 | -2/+2 |
| | |||||
* | #10584: fix bad links. | Georg Brandl | 2010-11-30 | 1 | -2/+2 |
| | |||||
* | Neaten-up a bit. | Raymond Hettinger | 2010-11-30 | 3 | -15/+12 |
| | |||||
* | Issue 10220: switch to using string constants rather than integers for ↵ | Nick Coghlan | 2010-11-30 | 2 | -1/+12 |
| | | | | inspect.getgeneratorstate() return values and make debugging friendly str() and repr() for generator states a requirement in the test suite | ||||
* | Issue 10586: change the new functools.lru_cache implementation to expose the ↵ | Nick Coghlan | 2010-11-30 | 5 | -19/+69 |
| | | | | maximum and current cache sizes through the public statistics API. This API is now a single function that returns a named tuple. | ||||
* | Issue #10572: Moved json tests to Lib/test/json_tests. | Alexander Belopolsky | 2010-11-30 | 18 | -4/+4 |
| | | | | Approved by Raymond Hettinger. | ||||
* | Issue #10323: Predictable final state for slice(). | Raymond Hettinger | 2010-11-30 | 3 | -3/+13 |
| | |||||
* | Use booleans where applicable. | Georg Brandl | 2010-11-29 | 2 | -21/+21 |
| | |||||
* | Code style cleanup in bdb. | Georg Brandl | 2010-11-29 | 1 | -31/+21 |
| | |||||
* | Fix heading style inconsistencies. | Georg Brandl | 2010-11-29 | 1 | -3/+3 |
| | |||||
* | Fix indentation bug. | Georg Brandl | 2010-11-29 | 1 | -9/+10 |
| | |||||
* | Remove the comment used while testing. | Senthil Kumaran | 2010-11-29 | 1 | -1/+0 |
| | |||||
* | Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. | Senthil Kumaran | 2010-11-29 | 5 | -9/+31 |
| | | | | | Handle multiple breakpoints at same line. Update docs/test. Patch by Xavier de Gaye. | ||||
* | Issue #10565: Iterator ABC should require both __next__ and __iter__. | Raymond Hettinger | 2010-11-29 | 3 | -3/+13 |
| | |||||
* | Use assertCountEqual instead of assertItemsEqual | Ezio Melotti | 2010-11-29 | 2 | -2/+2 |
| | |||||
* | Do not add an obsolete unittest name to Py3.2. | Raymond Hettinger | 2010-11-29 | 2 | -10/+0 |
| | |||||
* | Fix for #8879. | Brian Curtin | 2010-11-28 | 2 | -2/+23 |
| | | | | | | | Amaury noticed that this was originally written in a way that would fail on names that can't be encoded with the mbcs codec. Restructured the function to work with wide names first then narrow names second, to fall in line with the way other functions are written in posixmodule.c. | ||||
* | Add callable() to the built-in functions table. | Ezio Melotti | 2010-11-28 | 1 | -9/+9 |
| | |||||
* | there's now a setup.py switch for this | Benjamin Peterson | 2010-11-28 | 1 | -1/+1 |
| | |||||
* | Windows: fix leak in posix_listdir. | Stefan Krah | 2010-11-27 | 1 | -0/+1 |
| | |||||
* | Issue #10518: Bring back the callable() builtin. | Antoine Pitrou | 2010-11-27 | 5 | -14/+61 |
| | | | | Approved by Guido (BDFL) and Georg (RM). | ||||
* | Add version-added note twice for new difflib SequenceMatcher autojunk parameter. | Terry Reedy | 2010-11-27 | 1 | -0/+6 |
| | |||||
* | Make doc for PyErr_Format() up to date. | Antoine Pitrou | 2010-11-27 | 1 | -74/+5 |
| | |||||
* | Roumen Petrov's fix for when all paths are absolute. (Issue 10520) | Barry Warsaw | 2010-11-27 | 1 | -1/+2 |
| | |||||
* | Fix additional leaks. | Stefan Krah | 2010-11-27 | 1 | -0/+2 |
| | |||||
* | Issue 10242: unittest.assertItemsEqual makes too many assumptions. | Raymond Hettinger | 2010-11-27 | 5 | -39/+60 |
| | |||||
* | Replace _nbits() with int.bit_length(). | Raymond Hettinger | 2010-11-27 | 1 | -17/+1 |
| | |||||
* | Rewrap long lines + minor edits | Éric Araujo | 2010-11-26 | 1 | -11/+11 |
| | |||||
* | Use link-generating markup (see #9312) | Éric Araujo | 2010-11-26 | 1 | -1/+2 |
| | |||||
* | Fixed deprecation warnings. | Alexander Belopolsky | 2010-11-26 | 1 | -2/+2 |
| |