| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add test for hash commutativity. | Raymond Hettinger | 2005-07-05 | 1 | -0/+10 |
|
|
* | Add doctest for examples in libweakref.tex to test_weakref. | Georg Brandl | 2005-07-02 | 1 | -0/+86 |
|
|
* | SF bug #1224347: int/long unification and hex() | Raymond Hettinger | 2005-06-29 | 1 | -1/+1 |
|
|
* | Adapt output file to new Cookie JS output. | Georg Brandl | 2005-06-27 | 1 | -4/+4 |
|
|
* | Fix test cases for doctest. | Georg Brandl | 2005-06-26 | 1 | -0/+3 |
|
|
* | SF bug #1224621: tokenize module does not detect inconsistent dedents | Raymond Hettinger | 2005-06-21 | 1 | -1/+19 |
|
|
* | test_asynchat is no longer expected to produce output. | Michael W. Hudson | 2005-06-20 | 2 | -4/+3 |
|
|
* | SF patch #1200018: Restore GC support to set objects | Raymond Hettinger | 2005-06-18 | 1 | -0/+10 |
|
|
* | Add tests for posix O_SHLOCK & O_EXLOCK. Missed checking this in with | Skip Montanaro | 2005-06-17 | 1 | -0/+31 |
|
|
* | [Patch #1005892 from Alexandr Zamaraev] Fix two errors in the curses test suite | Andrew M. Kuchling | 2005-06-15 | 1 | -1/+2 |
|
|
* | yet another cache to clear when leak hunting. | Michael W. Hudson | 2005-06-14 | 1 | -0/+2 |
|
|
* | Port test_long.py to unittest. | Walter Dörwald | 2005-06-13 | 1 | -508/+451 |
|
|
* | Fix bug | Michael W. Hudson | 2005-06-13 | 1 | -0/+9 |
|
|
* | Add untokenize() function to allow full round-trip tokenization. | Raymond Hettinger | 2005-06-10 | 2 | -4/+76 |
|
|
* | Convert asynchat test to unittest; exercise the client using a numeric value ... | Andrew M. Kuchling | 2005-06-09 | 1 | -14/+46 |
|
|
* | [Bug #1074261, patch #1074381] Restrict the size of chunks read from the file... | Andrew M. Kuchling | 2005-06-09 | 1 | -0/+23 |
|
|
* | Convert gzip test suite to use unittest | Andrew M. Kuchling | 2005-06-09 | 1 | -74/+110 |
|
|
* | [Patch #1171487, bug #1170331] Fix error in base64.b32decode when encoding a ... | Andrew M. Kuchling | 2005-06-08 | 1 | -0/+6 |
|
|
* | Tools/scripts/reindent.py _is_ your friend | Anthony Baxter | 2005-06-08 | 1 | -3/+3 |
|
|
* | [Bug #1172763] dumbdbm uses eval() on lines, so it chokes if there's an extra... | Andrew M. Kuchling | 2005-06-07 | 1 | -0/+18 |
|
|
* | Fix missing assignments of marshal.load() values. Closes #1214662. | Skip Montanaro | 2005-06-04 | 1 | -7/+7 |
|
|
* | Whitespace normalization. | Tim Peters | 2005-06-03 | 3 | -9/+9 |
|
|
* | Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly. | Georg Brandl | 2005-06-03 | 1 | -0/+10 |
|
|
* | [ 1197218 ] test_locale fix on modern linux | Anthony Baxter | 2005-06-03 | 1 | -8/+10 |
|
|
* | This is my patch: | Michael W. Hudson | 2005-06-03 | 1 | -1/+15 |
|
|
* | Bug #1213894: os.path.realpath didn't resolve symlinks that were the first | Georg Brandl | 2005-06-03 | 1 | -0/+20 |
|
|
* | M-x untabify | Michael W. Hudson | 2005-06-03 | 1 | -9/+9 |
|
|
* | [Bug #1177831] Exercise (?(id)yes|no) for a group other than the first one | Andrew M. Kuchling | 2005-06-02 | 1 | -0/+10 |
|
|
* | Fix compiler.ast.flatten function so that it works on lists. | Neil Schemenauer | 2005-06-02 | 1 | -0/+5 |
|
|
* | This is my patch: | Michael W. Hudson | 2005-05-27 | 1 | -0/+110 |
|
|
* | Fix test_site to not call open('...', 'wU'), as that now raises an error. | Michael W. Hudson | 2005-05-27 | 1 | -1/+1 |
|
|
* | Disallow opening files with modes 'aU' or 'wU' as specified by PEP | Skip Montanaro | 2005-05-20 | 1 | -0/+10 |
|
|
* | This test relied on short-circuiting details of dictobject.py to avoid | Armin Rigo | 2005-05-15 | 1 | -4/+2 |
|
|
* | Add better datetime support to xmlrpclib module. Closes patch #1120353. | Skip Montanaro | 2005-05-14 | 1 | -6/+38 |
|
|
* | Don't use 'is not' to compare strings. | Michael W. Hudson | 2005-05-04 | 1 | -1/+1 |
|
|
* | Fix error in a docstring where a single quote started the docstring but triple | Brett Cannon | 2005-04-30 | 1 | -1/+1 |
|
|
* | Make subclasses of int, long, complex, float, and unicode perform type | Brett Cannon | 2005-04-26 | 4 | -1/+245 |
|
|
* | Update test to the current readline() behaviour. | Walter Dörwald | 2005-04-21 | 1 | -0/+2 |
|
|
* | Fix tests dependent on the exception raised by non-settable descriptors. | Barry Warsaw | 2005-04-20 | 3 | -5/+6 |
|
|
* | Whitespace normalization. | Tim Peters | 2005-04-20 | 2 | -2/+2 |
|
|
* | Flush out support for ``class B(): pass`` syntax by adding support to the | Brett Cannon | 2005-04-09 | 2 | -0/+6 |
|
|
* | Add test for ``class B1(): pass``. | Brett Cannon | 2005-04-09 | 1 | -1/+2 |
|
|
* | test_default_encoding_issues(): Fully restore sys.setdefaultencoding. | Tim Peters | 2005-04-08 | 1 | -0/+7 |
|
|
* | Fix for SF bug #1175396: readline() will now read one more character, if | Walter Dörwald | 2005-04-04 | 1 | -9/+82 |
|
|
* | Fix testcase for 64bit BSD systems: long is 8 bytes for those systems | Hye-Shik Chang | 2005-04-04 | 1 | -2/+8 |
|
|
* | Fix for rather inaccurately titled bug | Michael W. Hudson | 2005-03-30 | 1 | -0/+10 |
|
|
* | Whitespace normalization. | Tim Peters | 2005-03-28 | 5 | -10/+9 |
|
|
* | SF patch #1171417: bug fix for islice() in docs | Raymond Hettinger | 2005-03-27 | 1 | -0/+5 |
|
|
* | * Fix decimal's handling of foreign types. Now returns NotImplemented | Raymond Hettinger | 2005-03-27 | 1 | -7/+50 |
|
|
* | SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. | Raymond Hettinger | 2005-03-27 | 1 | -0/+6 |
|
|