- 1b5112a I left some debugging junk in here; removed it. Also replaced a few by Tim Peters · 23 years ago
- 4f4f4d7 A few days ago a test was added here to ensure that creating an mmap by Tim Peters · 23 years ago
- 034b47a _parsebody(): Instead of raising a BoundaryError when no start by Barry Warsaw · 23 years ago
- b1c1de3 Import _isstring() from the compatibility layer. by Barry Warsaw · 23 years ago
- 356afac _isstring(): Factor out "stringiness" test, e.g. for StringType or by Barry Warsaw · 23 years ago
- 45d9bde _ascii_split(): Don't lstrip continuation lines. Closes SF bug #601392. by Barry Warsaw · 23 years ago
- 24d45df test_splitting_first_line_only_is_long(): New test for SF bug #601392, by Barry Warsaw · 23 years ago
- dad90c2 A sample message with broken MIME boundaries. by Barry Warsaw · 23 years ago
- df453fd The .preprocess() method didn't work, because it didn't add the input file by Andrew M. Kuchling · 23 years ago
- 4013cbd Include an empty body when checking for a header file by Andrew M. Kuchling · 23 years ago
- 2412853 Fix escaping of non-ASCII characters. by Martin v. Löwis · 23 years ago
- 57e7945 shutil.copyfile(src,dst) was clobbering the file when the src and dst were by Raymond Hettinger · 23 years ago
- d750036 A little refactoring. by Jeremy Hylton · 23 years ago
- 522076d Try to get test to pass on Windows by Neal Norwitz · 23 years ago
- 05212fc Change UserDict to IterableUserDict by Raymond Hettinger · 23 years ago
- 522e769 Skip UDP testing for MacPython (for now), it hangs. This may be due to by Jack Jansen · 23 years ago
- ca2f537 Have os.environ() inherit from the iterable version of UserDict. by Raymond Hettinger · 23 years ago
- 9ab7dd4 Add a test case that checks that the proper exception is raises by Walter Dörwald · 23 years ago
- 5ccaf8f Apply diff3.txt (plus additional documentation) by Walter Dörwald · 23 years ago
- e99e2f5 test_set_param(), test_del_param(): Test RFC 2231 encoding support by by Barry Warsaw · 23 years ago
- 3c25535 _formatparam(), set_param(): RFC 2231 encoding support by Oleg by Barry Warsaw · 23 years ago
- 470288c test_mondo_message(): "binary" is not a legal content type, so with by Barry Warsaw · 23 years ago
- 58fb61c test_replace_header(): New test for Message.replace_header(). by Barry Warsaw · 23 years ago
- 229727f replace_header(): New method given by Skip Montanaro in SF patch by Barry Warsaw · 23 years ago
- b567392 SF bug # 585792, Invalid mmap crashes Python interpreter by Neal Norwitz · 23 years ago
- 609ba81 SF # 555779, import user doesn't work with CGIs by Neal Norwitz · 23 years ago
- 63857a4 M PyShell.py M RemoteDebugger.py M ScriptBinding.py by Kurt B. Kaiser · 23 years ago
- 342456d smptlib did not handle empty addresses. by Raymond Hettinger · 23 years ago
- 5c1ee17 Change the unicode.translate docstring to document that by Walter Dörwald · 23 years ago
- 472c522 Delete the %c test from test_date_time() untill Brett Cannon has time by Guido van Rossum · 23 years ago
- d4c472c Move code for reading chunked responses in helper function, by Jeremy Hylton · 23 years ago
- 602d451 Add a custom __str__ method to KeyError that applies repr() to the by Guido van Rossum · 23 years ago
- d229b3a SF bug [ 600488 ] Robustness tweak to httplib.py by Jeremy Hylton · 23 years ago
- 6e81318 testConnectTimeout(): set the timeout to a smaller value; 0.02 by Guido van Rossum · 23 years ago
- 683c0fe Fix for SF bug 601077 by Zack Weinberg. by Guido van Rossum · 23 years ago
- 8709a42 Check whether a string resize is necessary at the end by Walter Dörwald · 23 years ago
- d011636 (Re)Apply Sourceforge Python patch 520483, Sourceforge Idlefork patch by Kurt B. Kaiser · 23 years ago
- 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 23 years ago
- a4ce1cf _structure(): Use .get_content_type() by Barry Warsaw · 23 years ago
- 53d58bb Further SET_LINENO reomval fixes. See comments in patch #587933. by Michael W. Hudson · 23 years ago
- 35816e6 Many hopefully benign style clean ups. Still passes the test suite of course. by Barry Warsaw · 23 years ago
- 2bdb614 strptime(): The code that was adding 12 to PM hours was incorrect by Barry Warsaw · 23 years ago
- 375e0ee The test I saw failing this morning just happened to be run at 8am by Barry Warsaw · 23 years ago
- 1a8d193 Sped _update(). Uses the fast update() method when a dictionary is available. by Raymond Hettinger · 23 years ago
- fc26c07 Undo Barry's change. This file is not imported, it's fed as input to by Guido van Rossum · 23 years ago
- f0253f2 Restore the hex/oct constant tests that Barry commented out for fear by Guido van Rossum · 23 years ago
- 604cd6a complex() was the only numeric constructor that created a new instance by Raymond Hettinger · 23 years ago
- 18bd112 Fixed three exceptions in the Plain integers test, although I'm not by Barry Warsaw · 23 years ago
- c6f80fd The test_tokenize output has changed slightly, by the addition of some by Barry Warsaw · 23 years ago
- 266e6b1 Quite down some FutureWarnings. by Barry Warsaw · 23 years ago
- 1a16075 Whitespace normalization. by Barry Warsaw · 23 years ago
- 48b0d36 Typo by Barry Warsaw · 23 years ago
- da5628f Fix an inaccuracy in the comment by Barry Warsaw · 23 years ago
- 454602f Gave intersection_update a speed boost. by Tim Peters · 23 years ago
- cd06eeb Gave issubet() and issuperset() major speed boosts. That's it for now! by Tim Peters · 23 years ago
- b894039 Gave __sub__/difference a factor of 2-5 speed boost. by Tim Peters · 23 years ago
- 334b4a5 Gave __xor__/symmetric_difference a factor of 2-5 speed boost. by Tim Peters · 23 years ago
- 37faed2 Sped union by a factor of 3-4. by Tim Peters · 23 years ago
- d33e6be Sped intersection by large factors (3-5x faster than before on sets of by Tim Peters · 23 years ago
- 4a2f91e Added a clue about why xyz_update isn't the same as __xyz__. by Tim Peters · 23 years ago
- ea76c98 Implemented <, <=, >, >= for sets, giving subset and proper-subset by Tim Peters · 23 years ago
- 93d8d48 TestSubset(): Generalized the framework to support testing upcoming by Tim Peters · 23 years ago
- 4127e91 Rewrote all remaining assert stmts. by Tim Peters · 23 years ago
- 62c6243 Simplified construction of the test suite. by Tim Peters · 23 years ago
- de830ca Simplified code building sets of characters. by Tim Peters · 23 years ago
- a777799 Ack! Virtually every test here relied on an assert stmt. assert stmts by Tim Peters · 23 years ago
- 0bbb308 Simplified the setup for is-subset testing. by Tim Peters · 23 years ago
- 4924db1 Record a clue about why __or__ is not union, etc. by Tim Peters · 23 years ago
- c8f8034 Replace 0 with False to match working in documentation. SF 599681. by Raymond Hettinger · 23 years ago
- adc6384 1. Revert subprocess environment clearing, will restart subprocess by Kurt B. Kaiser · 23 years ago
- a552e3a Improve exception handling across rpc interface Modified Files: rpc.py by Kurt B. Kaiser · 23 years ago
- e87ab3f Removed < <= > >= from the API. Implemented as comparisons of the by Raymond Hettinger · 23 years ago
- 9d6897a Speed up the most egregious "if token in (long tuple)" cases by using by Guido van Rossum · 23 years ago
- 1b9f5d4 At Tim Peter's suggestion, propagated GvR's binary operator changes to by Raymond Hettinger · 23 years ago
- d501851 Since instances of _TemporarilyImmutableSet are always thrown away by Raymond Hettinger · 23 years ago
- 045e51a Expanded tests for sets of sets. by Raymond Hettinger · 23 years ago
- fa1480f 1. Removed module self test in favor of unittests -- Timbot's suggestion. by Raymond Hettinger · 23 years ago
- 53506be pop() docstring: this isn't a randomly-chosen element, it's merely by Tim Peters · 23 years ago
- d06d030 Comment repair. by Tim Peters · 23 years ago
- 2023c9b Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do the by Guido van Rossum · 23 years ago
- 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 23 years ago
- 280488b Whitespace normalization. by Tim Peters · 23 years ago
- 7c7efe9 Got rid of the toy _Set class, in favor of sets.Set. by Tim Peters · 23 years ago
- e399d08 RH pointed out that discard(element) doesn't do the transformation on by Guido van Rossum · 23 years ago
- b2628b0 Added the standard MacOSX location for documentation inside a framework by Jack Jansen · 23 years ago
- 040d7ca Rewritten using the tokenize module, which gives us a real tokenizer by Guido van Rossum · 23 years ago
- e3bd104 Tweak wordsep_re again: this time to recognize an em-dash with by Greg Ward · 23 years ago
- c6edb37 Test an em-dash with adjacent punctuation. by Greg Ward · 23 years ago
- 715debd Factored out BaseTestCase.check_split() method -- use it wherever by Greg Ward · 23 years ago
- 24a1c9c Test _split() method in test_unix_options(). by Greg Ward · 23 years ago
- 34f995b Add test_unix_options() to WrapTestCase to test for SF bug #596434. by Greg Ward · 23 years ago
- cce4d67 Fix SF bug #596434: tweak wordsep_re so "--foo-bar" now splits by Greg Ward · 23 years ago
- ae46931 Standardize behavior: no docstrings in test functions. by Guido van Rossum · 23 years ago
- 9eee554 Standardize behavior: no docstrings in test functions. Also use by Guido van Rossum · 23 years ago
- 327af77 Standardize behavior: no docstrings in test functions. Also strip by Guido van Rossum · 23 years ago
- 1c48654 Document that docstrings are verboten for test functions. by Guido van Rossum · 23 years ago
- 8ccd9b6 Standardize behavior: no docstrings in test functions. Also get rid by Guido van Rossum · 23 years ago
- a5ce2e8 Standardize behavior: no docstrings in test functions; add a proper by Guido van Rossum · 23 years ago
- 9ad15a3 Add test_em_dash() to WrapTestCase to make sure that TextWrapper handles by Greg Ward · 23 years ago
- 32c2ae7 Standardize behavior: no docstrings in test functions. by Guido van Rossum · 23 years ago