summaryrefslogtreecommitdiffstats
path: root/Lib/test/data
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 83352,83356-83358,83362,83366,83368-83369 via svnmerge fromGeorg Brandl2010-08-011-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83352 | georg.brandl | 2010-07-31 20:11:07 +0200 (Sa, 31 Jul 2010) | 1 line #9440: Remove borderline test case that fails based on unpredictable conditions such as compiler flags. ........ r83356 | georg.brandl | 2010-07-31 21:29:15 +0200 (Sa, 31 Jul 2010) | 1 line Remove trailing whitespace. ........ r83357 | georg.brandl | 2010-07-31 21:59:55 +0200 (Sa, 31 Jul 2010) | 1 line #5778: document that sys.version can contain a newline. ........ r83358 | georg.brandl | 2010-07-31 22:05:31 +0200 (Sa, 31 Jul 2010) | 1 line #9442: do not document a specific format for sys.version; rather refer to version_info and the platform module. ........ r83362 | georg.brandl | 2010-07-31 23:12:15 +0200 (Sa, 31 Jul 2010) | 1 line #8910: add a file explaining why Lib/test/data is there. ........ r83366 | georg.brandl | 2010-07-31 23:26:40 +0200 (Sa, 31 Jul 2010) | 1 line There always is a False and True now. ........ r83368 | georg.brandl | 2010-07-31 23:40:15 +0200 (Sa, 31 Jul 2010) | 1 line #7909: the prefixes \\.\ and \\?\ indicate special Windows paths, do not try to manipulate them. See http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx for details. ........ r83369 | georg.brandl | 2010-07-31 23:41:42 +0200 (Sa, 31 Jul 2010) | 1 line Fix "Berkeley" name. ........
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-2331-1182/+0
| | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
* New files which test the corners of multipart/message andBarry Warsaw2002-07-092-0/+48
| | | | message/rfc822 compliance.
* Another test of long headers.Barry Warsaw2002-06-291-0/+15
|
* Oleg Broytmann's support for RFC 2231 encoded parameters, SF patch #549133Barry Warsaw2002-06-291-0/+22
| | | | New test cases.
* A test message w/ CRLF line endingsBarry Warsaw2002-05-191-0/+45
|
* Sync'ing with standalone email package 2.0.1. This adds support forBarry Warsaw2002-04-102-0/+127
| | | | | | | | | non-us-ascii character sets in headers and bodies. Some API changes (with DeprecationWarnings for the old APIs). Better RFC-compliant implementations of base64 and quoted-printable. Updated test cases. Documentation updates to follow (after I finish writing them ;).
* Test case of a singleton multipart; i.e. a multipart/* with only oneBarry Warsaw2002-01-271-0/+8
| | | | subpart.
* A fix for SF bug #472560, extra newlines returned by get_param() whenBarry Warsaw2001-10-251-0/+46
| | | | | | | | the separating semi-colon shows up on a continuation line (legal, but weird). Bug reported and fixed by Matthew Cowles. Test case and sample email included.
* Another email package test fileBarry Warsaw2001-10-191-0/+22
|
* Add a test for get_all() returning failobj. msg_20.txt is a sampleBarry Warsaw2001-10-091-0/+22
| | | | message with multiple CC: fields, used in the get_all() test.
* More test data for test_email.pyBarry Warsaw2001-10-042-0/+49
|
* More test messages for test_email.pyBarry Warsaw2001-09-262-0/+135
|
* The test data (mostly example messages) for the email package testBarry Warsaw2001-09-2316-0/+643
suite. Note that other tests can put input data in this directory.