summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Add comment explaining try/except for endheaders().Jeremy Hylton2003-05-051-0/+2
|
* Repair redirect handling and raise URLError on host-not-found.Jeremy Hylton2003-05-041-22/+36
| | | | | | | | | | | | | | The latest changes to the redirect handler couldn't possibly have been tested, because they did not compute a newurl and failed with a NameError. The __name__ == "__main__": block has a test for redirects. Also, fix SF bug 723831. A urlopen() that failed because the host was not found raised a socket.gaierror unlike earlier versions of urllib2. The problem is that httplib actually establishes the connection at a different point starting with Python 2.2. Move the try/except to endheaders(), which is where the connection gets established.
* 'forget' now also deletes any proper .pyo files.Brett Cannon2003-05-041-1/+19
| | | | Added some docstrings.
* Somewhere along the way, the softspace attr of file objects became read-Tim Peters2003-05-041-0/+20
| | | | only. Repaired, and added new tests to test_file.py.
* Refer to __builtin__.file, not __builtins__.fileMartin v. Löwis2003-05-031-2/+3
|
* Patch #711902: Cause pydoc to show data descriptor __doc__ strings.Martin v. Löwis2003-05-033-2/+15
|
* * Added a substantial number of edge case and argument tests forRaymond Hettinger2003-05-031-15/+76
| | | | | | | the itertoolsmodule. * Taught itertools.repeat(obj, n) to treat negative repeat counts as zero. This behavior matches that for sequences and prevents infinite loops.
* Apply the simplified test_support boilerplate.Raymond Hettinger2003-05-031-6/+4
|
* Simplify ref count test.Raymond Hettinger2003-05-021-3/+3
|
* Add StopIteration tests.Raymond Hettinger2003-05-021-7/+27
| | | | Simplify test_main().
* CWI moved websites around without me knowing it, and together withJack Jansen2003-05-021-1/+1
| | | | | a bug in urllib2 this caused pimp to stop working. Fixed the URL to make it work again.
* The previous made the stop argument optional.Raymond Hettinger2003-05-021-1/+1
| | | | It is better to be explicit and just allow stop to be None.
* SF bug #730685: itertools.islice stop argument is not optionalRaymond Hettinger2003-05-021-3/+71
| | | | | * itertools.islice() stop argument did not perform as documented. * beefed-up test suite
* Added missing modules to __all__ check.Raymond Hettinger2003-05-021-0/+4
|
* Used sets.Set() to compare unordered sequences.Raymond Hettinger2003-05-026-40/+17
| | | | Improves clarity and brevity.
* Rename funny long suite to Disk_File_Folder.Jack Jansen2003-05-017-102/+102
|
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-0163-401/+309
| | | | | | | | | | and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
* Consistently use test_support.foo everywhere.Walter Dörwald2003-05-011-15/+5
| | | | | | Remove the last use of veris(). Remove now useless imports and functions.
* Patch #727805: Remove extra line ending from CGI responses.Martin v. Löwis2003-05-012-3/+4
|
* Delete comment my last checkin rendered obsolete.Michael W. Hudson2003-04-301-2/+0
| | | | | I should also not that my last checkin did stuff that made failures give more helpful information.
* Change from a threading.Condition object to a threading.Event object forBrett Cannon2003-04-301-6/+3
| | | | | | | signalling when the TCP server is done. Should hopefully solve hanging issues for Solaris 8 & 9. Solves the apparent hanging issue with OS X. Closes patch #729988 .
* Make time.sleep calls go to 0 for common testing.Brett Cannon2003-04-302-11/+19
|
* Flesh out test_support docs.Brett Cannon2003-04-301-3/+19
|
* improved CRLF regex for previous fixPiers Lauder2003-04-291-1/+1
|
* added code to canonicalise line endings in data sent via "append" - fix for ↵Piers Lauder2003-04-291-2/+3
| | | | bug report 723962
* Allow "@" in unquoted attribute values.Fred Drake2003-04-292-1/+10
| | | | | Added test that checks for characters allowed in the query part of URLs. Backport candidate.
* Port test_richcmp.py to PyUnit. From SF patch #662807 which additionalWalter Dörwald2003-04-292-366/+276
| | | | tests and comments.
* Use the new htmlentitydefs.codepoint2name for test_xmlcharnamereplace()Walter Dörwald2003-04-291-7/+1
|
* Add doctest for example in the library reference.Raymond Hettinger2003-04-291-0/+40
|
* Extract the errno value to use from the errno module if possible.Fred Drake2003-04-291-1/+6
|
* Regain throughput lost with the _socketobject wrapper. TheSkip Montanaro2003-04-291-3/+9
| | | | | throughput-sensitive methods are grabbed from the underlying _socket.socket object. Closes SF patch 729293.
* Use Tim's suggestion to fixMichael W. Hudson2003-04-291-14/+51
| | | | | | | | | [ 708901 ] Lineno calculation sometimes broken A one line patch to compile.c and a rather-more-than-one-line patch to test_dis. Hey ho. Possibly a backport candidate -- tho' lnotab is less used in 2.2...
* Armin Rigo's fix & test forMichael W. Hudson2003-04-291-0/+21
| | | | | | [ 729622 ] line tracing hook errors with massaging from me to integrate test into test suite.
* Applying patch #728656, by logistix, fixing opening of nonexistentGustavo Niemeyer2003-04-291-0/+5
| | | | bz2 files. Also, included a testcase for this problem.
* Added tests for urlretrieve. Also made sure urlopen tests cleaned up ↵Brett Cannon2003-04-291-8/+48
| | | | properly after themselves.
* Raise a ValueError when there is data that was not covered in the format ↵Brett Cannon2003-04-282-0/+7
| | | | string. Done to match behavior of pre-existing C-based strptime implementations.
* SF bug 728097: tmpnam problems on windows 2.3b, breaks test.test_os.Tim Peters2003-04-281-1/+22
| | | | | | | | | tmpnam() appears essentially useless on Windows, and it finally broke the test for Irmen de Jong. Read the long new comment in test_tmpnam() for details. Since the MS implementation is insane, it might be good if we supplied a different implementation. Bugfix candidate.
* Make tests clean up after themselves better. This means:Brett Cannon2003-04-271-2/+18
| | | | | | | | * call tearDown when Setup is called * shutil.rmtree the root of the created directory instead of just the leaf directory * set the LANGUAGE environment variable to what it was originally and not assume 'en'.
* Fix for part of the problem mentioned in #725149 by Greg Chapman.Gustavo Niemeyer2003-04-271-0/+7
| | | | | | | | | | | | | | | | | | | This problem is related to a wrong behavior from mark_save/restore(), which don't restore the mark_stack_base before restoring the marks. Greg's suggestion was to change the asserts, which happen to be the only recursive ops that can continue the loop, but the problem would happen to any operation with the same behavior. So, rather than hardcoding this into asserts, I have changed mark_save/restore() to always restore the stackbase before restoring the marks. Both solutions should fix these two cases, presented by Greg: >>> re.match('(a)(?:(?=(b)*)c)*', 'abb').groups() ('b', None) >>> re.match('(a)((?!(b)*))*', 'abb').groups() ('b', None, None) The rest of the bug and patch in #725149 must be discussed further.
* Applied patch #725106, by Greg Chapman, fixing capturing groupsGustavo Niemeyer2003-04-271-0/+19
| | | | | | | | | | | | | | | | | | | | within repeats of alternatives. The only change to the original patch was to convert the tests to the new test_re.py file. This patch fixes cases like: >>> re.match('((a)|b)*', 'abc').groups() ('b', '') Which is wrong (it's impossible to match the empty string), and incompatible with other regex systems, like the following examples show: % perl -e '"abc" =~ /^((a)|b)*/; print "$1 $2\n";' b a % echo "abc" | sed -r -e "s/^((a)|b)*/\1 \2|/" b a|c
* Factor out common boilerplate for test_supportRaymond Hettinger2003-04-274-24/+14
|
* Rewrote. As reported on c.l.py, when the test suite is run viaTim Peters2003-04-261-20/+30
| | | | | | | | | | | | | | "import test.autotest", temp_imp failed because the import lock was still held at the test's end (the test assumed it wouldn't be), and then a RuntimeError got raised at the end of the entire suite run because test_imp cleared the import lock as a side effect of trying to test that the import lock wasn't held (but a legitimate import is in progress, so the lock should be held, and the import machinery complained when it found that the lock was unexpectedly cleareed). Also removed the unittest scaffolding. It didn't buy anything here, and the test was raising regrtest's TestFailed instead of using the unittest failure-reporting mechanisms.
* Merge back from r23b1-branchGuido van Rossum2003-04-261-0/+2
|
* New feature: when saving a file, keep the eol convention of theGuido van Rossum2003-04-251-3/+11
| | | | | | original. New files are written using the eol convention of the platform, given by os.linesep. All files are read and written in binary mode.
* Update for release into PythonKurt B. Kaiser2003-04-252-2/+2
| | | | NEWS.txt idlever.py
* Update for 2.3b1Kurt B. Kaiser2003-04-254-15/+18
| | | | | Modified Files: NEWS.txt CREDITS.txt INSTALL.txt setup.cfg
* final bit of tests converted from test_sreSkip Montanaro2003-04-251-8/+25
|
* test_sre is dead! long live test_re!Skip Montanaro2003-04-251-116/+0
|
* deleted more tests which were either already in test_re or that I migratedSkip Montanaro2003-04-251-76/+0
| | | | in the last revison
* more tests converted from test_sreSkip Montanaro2003-04-251-14/+35
|