summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Clear internal call error in 'L' format. Fixes #723201.Martin v. Löwis2005-03-031-1/+13
* Patch #1107973: tarfile.ExFileObject iterators.Martin v. Löwis2005-03-031-0/+10
* Make test__locale more fine-grained. Now test localeconv and nl_langinfoBrett Cannon2005-03-011-9/+56
* SF patch #941881: PEP 309 Implementation (Partial Function Application).Raymond Hettinger2005-02-281-0/+154
* Patch #1049151: adding bool support to xdrlib.py.Martin v. Löwis2005-02-243-1/+23
* Teach the peepholer to fold unary operations on constants.Raymond Hettinger2005-02-201-0/+19
* * Beef-up tests for str.count().Raymond Hettinger2005-02-201-0/+28
* * Beef-up testing of str.__contains__() and str.find().Raymond Hettinger2005-02-201-0/+24
* Add support for negative indices in UserString.MutableString.__setitem__Walter Dörwald2005-02-181-7/+7
* Fix copy & paste error.Walter Dörwald2005-02-171-2/+2
* Add tests for the methods added by UserString.MutableString.Walter Dörwald2005-02-171-0/+62
* Avoid using items() in environ.update(). Fixes #1124513.Martin v. Löwis2005-02-171-1/+1
* Add a basic test for UserString.MutableString.Walter Dörwald2005-02-171-2/+9
* FixMichael W. Hudson2005-02-171-0/+3
* Whitespace normalization.Tim Peters2005-02-151-2/+2
* Test that SystemExits are handled properly by the exit machinery. IMichael W. Hudson2005-02-151-0/+12
* Exceedingly minor tweak.Michael W. Hudson2005-02-151-1/+1
* fix decoding in _stringify to not depend on the default encodingFred Drake2005-02-111-0/+42
* Remove set conversion optimization test (backed out of Python/compile.c in rev.Brett Cannon2005-02-101-11/+0
* accept datetime.datetime instances when marshalling;Fred Drake2005-02-101-0/+17
* Fix typoAndrew M. Kuchling2005-02-101-1/+1
* Fix stupid typo: Don't read from a writer.Walter Dörwald2005-02-081-2/+2
* Adopt Skip's idea to optimize lists of constants in the contextRaymond Hettinger2005-02-071-1/+2
* Transform "x in (1,2,3)" to "x in frozenset([1,2,3])".Raymond Hettinger2005-02-061-0/+10
* Add a test for UTF-16 reading where the byte sequence doesn't start withWalter Dörwald2005-02-041-0/+9
* Revert os.py 1.75, and directly implement update.Martin v. Löwis2005-01-291-0/+7
* Do not fold a constant if a large sequence will result.Raymond Hettinger2005-01-261-0/+4
* Truncate st_?time before comparing it with ST_?TIME in the tests.Martin v. Löwis2005-01-231-1/+5
* Add a slice test with high < low.Walter Dörwald2005-01-211-0/+5
* Use descriptors.Guido van Rossum2005-01-165-11/+9
* Use decorators.Guido van Rossum2005-01-161-3/+4
* Whitespace normalization.Tim Peters2005-01-131-7/+7
* Add strptime() constructor to datetime class. Thanks to Josh Spoerri forSkip Montanaro2005-01-131-0/+9
* Add counting of source iterator lines to the reader object - handy forAndrew McNamara2005-01-121-1/+13
* When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fieldsAndrew McNamara2005-01-121-0/+6
* Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test.Andrew McNamara2005-01-121-0/+2
* When using QUOTE_NONNUMERIC, we now test for "numericness" withAndrew McNamara2005-01-121-10/+20
* Rename csv.set_field_limit to csv.field_size_limit (since it both sets andAndrew McNamara2005-01-121-7/+7
* Improve test coverage fractionally.Andrew McNamara2005-01-121-9/+23
* Set an upper limit on the size of the field buffer, raise an exceptionAndrew McNamara2005-01-111-2/+9
* SF 1098985: set objects cannot be marshalledRaymond Hettinger2005-01-111-0/+12
* Replace python-coded validation of csv dialect with a call to the CAndrew McNamara2005-01-111-4/+0
* No longer attempt to instantiate python classes describing dialects. ThisAndrew McNamara2005-01-111-18/+0
* Allow dialect-describing keywords to be supplied to register_dialect,Andrew McNamara2005-01-111-1/+10
* Fix and test for SF bug #1098990: codec readline() splits lines apart.Walter Dörwald2005-01-101-0/+30
* Fix parsing of csv files with escapes (escape character previously would beAndrew McNamara2005-01-101-2/+2
* Patch #712317: In URLs such as http://www.example.com?query=spam, treat '?' asJohannes Gijsbers2005-01-091-28/+51
* Clean up tests by reusing functions from other modules:Johannes Gijsbers2005-01-081-31/+8
* Patch #943206:Johannes Gijsbers2005-01-081-1/+3
* threading._DummyThread.__init__(): document obscure new code.Tim Peters2005-01-081-1/+22