- d392506 Tighten up some warning filters, and break some dependencies on the by Tim Peters · 23 years ago
- 50ac30e OK, don't call resetwarnings(). by Tim Peters · 23 years ago
- 7d79948 It makes more sense to call resetwarnings() after every test runs than by Tim Peters · 23 years ago
- a91a02a I expect test_univnewlines to be skipped on Windows. I expect this by Tim Peters · 23 years ago
- f022a4d Reduce the number of test-suite DeprecationWarnings; start adding by Tim Peters · 23 years ago
- c9ad32c test_main(): Added this so the test can actually get run under the by Barry Warsaw · 23 years ago
- 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 23 years ago
- b6b8942 SF bug #541883 (Vincent Fiack). by Guido van Rossum · 23 years ago
- 077f271 SF bug 543840: complex(string) accepts strings with \0 by Tim Peters · 23 years ago
- 518d261 Test suite for universal newline support. by Jack Jansen · 23 years ago
- 2f6d4da Patch #542569: tp_print tp_repr tp_str in test_bool.py. by Martin v. Löwis · 23 years ago
- 018b0eb Partially implement SF feature request 444708. by Guido van Rossum · 23 years ago
- d854f3b I am mad. This test never worked! by Guido van Rossum · 23 years ago
- e027d98 Add Raymond Hettinger's d.pop(). See SF patch 539949. by Guido van Rossum · 23 years ago
- 04a8da5 Clean up the "all" support for -u. by Fred Drake · 23 years ago
- a7c2b30 Since xmllib is deprecated now, suppress the DeprecationWarning its test by Tim Peters · 23 years ago
- b05cd49 Ignore more deprecation warnings. by Tim Peters · 23 years ago
- 3c14efe Stop sucking up xmllib -- it's deprecated. by Tim Peters · 23 years ago
- deb121a I don't expect test_email_codecs to run on Windows. by Tim Peters · 23 years ago
- 3a15dac Added the resource name "all" to enable all of the optional resource uses. by Fred Drake · 23 years ago
- 43735da Improve coverage of Objects/weakrefobject.c. by Fred Drake · 23 years ago
- 409a4c0 Sync'ing with standalone email package 2.0.1. This adds support for by Barry Warsaw · 23 years ago
- ce0b664 Added test case for UTF-8 encoding bug #541828. by Marc-André Lemburg · 23 years ago
- a974561 Use random instead of whrandom by Andrew M. Kuchling · 23 years ago
- 8ace1ab - Changed new-style class instantiation so that when C's __new__ by Guido van Rossum · 23 years ago
- d1bfe5e Add tests for binary pickles. by Guido van Rossum · 23 years ago
- e276339 Implement an idea by Paul Rubin: by Guido van Rossum · 23 years ago
- 065fa41 Add test case for SF bug 534347. by Guido van Rossum · 23 years ago
- 5f82036 Oops. Here are the new files. My apologies. by Guido van Rossum · 23 years ago
- 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 23 years ago
- e7fefbf Fix bugs: by Mark Hammond · 23 years ago
- 155db9a SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() by Guido van Rossum · 23 years ago
- aee113d Add an experimental mechanism to support extending the pprint formatting. by Fred Drake · 23 years ago
- 4993c51 Make test_commands work on more systems. This removes much of the dependency by Fred Drake · 23 years ago
- 05c09d0 Format strings (tuples,) appropriately by Neal Norwitz · 23 years ago
- 28bb572 Use attributes appropriately by Neal Norwitz · 23 years ago
- b1295da There is no TestError, use TestFailed appropriately by Neal Norwitz · 23 years ago
- de14a30 We expect to skip the new test_mpz on Windows. by Tim Peters · 23 years ago
- 02098fa Get rid of all METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 23 years ago
- 496563a Remove some now-obsolete generator future statements. by Tim Peters · 23 years ago
- 62f5a9d Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 23 years ago
- eddd68d As part of fixing bug #536241, add a test case for string.zfill() with Unicode by Andrew M. Kuchling · 23 years ago
- c6c9c4a Add two tests for string.zfill by Andrew M. Kuchling · 23 years ago
- d4ce758 test_trashcan: reword obscure code. by Tim Peters · 23 years ago
- d222559 New test_traschcan() test in test_gc, which reliably provokes segfaults by Tim Peters · 23 years ago
- f841aa6 Add a simple test of the METH_CLASS and METH_STATIC flags for type methods. by Fred Drake · 23 years ago
- dbd2d25 Add tests for the iterkeys, itervalues and iteritems by Walter Dörwald · 23 years ago
- 8e5fd53 SF bug 480215: softspace confused in nested print by Tim Peters · 23 years ago
- 74e77e8 add test for InvalidURL by Skip Montanaro · 23 years ago
- 03ff86d add test of InvalidURL by Skip Montanaro · 23 years ago
- eff7244 Add more tests for built-in types. Add tests for buffer objects. by Neil Schemenauer · 23 years ago
- 6ec967d added RFC 2396 tests from Aaron Swartz included in bug # 450225. by Skip Montanaro · 23 years ago
- b1ba6b0 no longer needed - converted test_urlparse.py to use unittest by Skip Montanaro · 23 years ago
- 0c2c8e7 SF bug 533234: tm_isdst > 1 Passed to strftime. by Tim Peters · 23 years ago
- 76fffd8 Add a simple test suite for netrc.py, and remove it from test_sundry by Andrew M. Kuchling · 23 years ago
- 047c05e Do not insert characters for unicode-escape decoders if the error mode by Martin v. Löwis · 23 years ago
- bd3e771 amk's fix attached to by Michael W. Hudson · 23 years ago
- 7e30548 Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfault by Guido van Rossum · 23 years ago
- 4894a97 initial test_anydbm module - based on test_dumbdbm.py by Skip Montanaro · 23 years ago
- c08fe82 restructure a bit to not rely on test case execution ordering by Skip Montanaro · 23 years ago
- e89f128 Skip test_longexp for MacPython on Mac OS X. It triggers a pathological realloc slowdown. Some tests with shorter expressions lead me to the conclusion that it will eventually finish, but it may take a few weeks:-) by Jack Jansen · 23 years ago
- 693c6c4 added test case to catch index errors with _localized_name class by Skip Montanaro · 23 years ago
- b323021 first cut at skip-list for hp-ux 11 based upon input from Bill Lawler at HP. by Skip Montanaro · 23 years ago
- 8c84255 "Fix" for SF bug #520644: __slots__ are not pickled. by Guido van Rossum · 23 years ago
- d703567 Test for the fix I just checked in to moduleobject.c. by Guido van Rossum · 23 years ago
- 8f01b68 Change Windows file.truncate() to (a) restore the original file position, by Tim Peters · 23 years ago
- 1af5e35 Fix typo by Neal Norwitz · 23 years ago
- c9e9e40 Add a check that SF bug 516727 is really fixed. by Guido van Rossum · 23 years ago
- fb05db2 file_truncate(): provide full "large file" support on Windows, by by Tim Peters · 23 years ago
- 15d529a Bugfix candidate. Adapter from SF patch 528038; fixes SF bug 527816. by Guido van Rossum · 23 years ago
- d674e17 SF patch 499062: Minor typo in test_generators.py. by Tim Peters · 23 years ago
- 547a316 Fix pyclbr test of httplib without really understanding pyclbr. by Jeremy Hylton · 23 years ago
- 1bf7117 As part of fixing bug #523301, add a simple test of ConfigParser.write() by Andrew M. Kuchling · 23 years ago
- c9ffa06 SF bug 515943: searching for data with \0 in mmap. by Tim Peters · 23 years ago
- 02b28ec Test for by Michael W. Hudson · 23 years ago
- 0e02530 Special support for pickling os.stat and os.stat_vfs results portably by Michael W. Hudson · 23 years ago
- 7bb466a A fix & test for by Michael W. Hudson · 23 years ago
- 290d31e SF #506611, fix sys.setprofile(), sys.settrace() core dumps by Neal Norwitz · 23 years ago
- 5329cdb _PyLong_Copy(): was creating a copy of the absolute value, but should by Tim Peters · 23 years ago
- 2eb0b87 SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects by Guido van Rossum · 23 years ago
- 9986633 Patch 520694: arraymodule.c improvements: by Martin v. Löwis · 23 years ago
- 1c63f6e Correct various errors: by Martin v. Löwis · 23 years ago
- 06ee253 SF patch #523169, by Samuele Pedroni. by Guido van Rossum · 23 years ago
- 5cef571 OS/2 EMX port Library and regression test changes: by Andrew MacIntyre · 23 years ago
- 8044055 Somebody made list.__dict__ grow a '__doc__' key, but apparently didn't by Tim Peters · 23 years ago
- e441860 Whitespace normalization. by Tim Peters · 24 years ago
- 20882dd SF bug #516372: test_thread: unhandled exc. in thread by Tim Peters · 24 years ago
- 4a02f95 Added regression test for start()/stop() returning bogus NULL. by Fred Drake · 24 years ago
- af64263 Fix typo by Neal Norwitz · 24 years ago
- bd3be8f Fix to the UTF-8 encoder: it failed on 0-length input strings. by Marc-André Lemburg · 24 years ago
- 3688a88 Fix for the UTF-8 memory allocation bug and the UTF-8 encoding by Marc-André Lemburg · 24 years ago
- d9fbf35 This test left a new set of 3 junk files behind each time it was run. by Tim Peters · 24 years ago
- 6423f8b Test case of a singleton multipart; i.e. a multipart/* with only one subpart. by Barry Warsaw · 24 years ago
- 763af41 test_multipart_one_part(): Idempotency test case for a multipart/* by Barry Warsaw · 24 years ago
- eaa0a22 Disable code intended for PEP 277. by Guido van Rossum · 24 years ago
- 5e99731 Only test ntpath.abspath() on Windows. This allows the rest of the module to by Fred Drake · 24 years ago
- e843e48 Ensure Unicode filenames work with glob - they already do, but the test seems worth keeping. by Mark Hammond · 24 years ago
- f853be9 Restore Python 2.1 StringIO.py behaviour: support concatenating by Marc-André Lemburg · 24 years ago
- 1e2fb57 Remove unused imports, clean up trailing whitespace. by Fred Drake · 24 years ago
- ea752fb Check for time.struct_time in addition to tuples. Use 3 characters by Martin v. Löwis · 24 years ago