summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Research notes and explorations for optimizing Python dictionaries.Raymond Hettinger2003-05-021-0/+189
|
* The previous made the stop argument optional.Raymond Hettinger2003-05-023-13/+10
| | | | 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-023-26/+117
| | | | | * itertools.islice() stop argument did not perform as documented. * beefed-up test suite
* SF patch 731504: Typo in datetimemodule.c comment.Tim Peters2003-05-021-1/+1
| | | | s/isofomat/isoformat/, by Steven Taschuk.
* Avoid extraneous blank line generated in the middle of the documentFred Drake2003-05-021-16/+15
| | | | head.
* Remove section number from the title for use in theFred Drake2003-05-021-1/+6
| | | | <meta name='description' ...> element in the document head.
* Patch 731209: Restore socketmodule's behaviour with dotted quad addressesAnthony Baxter2003-05-021-0/+16
| | | | | to that of Python2.1. Such nnn.nnn.nnn.nnn addresses are just used directly, not passed to the resolver for a pointless lookup.
* add note about building with bsddb185 and making it appear as bsddb.Skip Montanaro2003-05-021-0/+15
|
* 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-018-103/+104
|
* Silence compiler warnings in VC 7.Jeremy Hylton2003-05-011-2/+2
|
* Slightly more lenient pdbtrack prompt recognition, for people who useKen Manheimer2003-05-011-1/+1
| | | | eg "pdb>".
* Allow for multiple parens around pdb prompt for (new) nested debuggingKen Manheimer2003-05-011-4/+4
| | | | sessions (and some cosmetic wording changes).
* 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.
* Convert tcl objects to strings in getvar/setvar. Fixes #730506.Martin v. Löwis2003-05-011-2/+26
|
* Patch #729300: Disable error message if Python is not built for threads.Martin v. Löwis2003-05-011-1/+1
|
* Patch #725942: Always rename emulation functions.Martin v. Löwis2003-05-011-2/+5
|
* Patch #727805: Remove extra line ending from CGI responses.Martin v. Löwis2003-05-012-3/+4
|
* Mark CVS as 2.3b1+.Guido van Rossum2003-04-301-1/+1
|
* At the site of an indexed reference to print, point to the relevantFred Drake2003-04-301-1/+5
| | | | documentation. Closes SF bug #723136.
* work around mostly-minor formatting problems; the encodings.idnaFred Drake2003-04-301-2/+2
| | | | | example still doesn't come out quite right: a bug in the formatting tools
* - comment out \moduleauthor that broke formatting until the formattingFred Drake2003-04-301-15/+28
| | | | | tools can be fixed; added XXX comment - general markup fixes
* Allow _sre.c to compile with Python 2.2Andrew M. Kuchling2003-04-301-0/+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.
* Added a note about Stefan Deibels list of contacts.Jack Jansen2003-04-291-0/+1
|
* The new bundlebuilder-generated applets contain an absolute referenceJack Jansen2003-04-291-1/+10
| | | | | | | to the Python used to create them (in the #! line). Therefore, when your Python installation is moved the applets become invalid. As the binary distribution is installed in a different place than where it was created we need to fix up the #! lines.
* By default be verbose.Jack Jansen2003-04-291-7/+9
|
* Port test_richcmp.py to PyUnit. From SF patch #662807 which additionalWalter Dörwald2003-04-292-366/+276
| | | | tests and comments.
* document socket speed reclamation. Patch 729293.Skip Montanaro2003-04-291-0/+3
|
* 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
|
* When an unhandled exception happens, report the repr() of the functionGuido van Rossum2003-04-291-5/+13
| | | | | | | that was used to start the thread. This is useful to track down the source of the problem when there is no traceback, as can happen when a daemon thread gets to run after Python is finialized (a new kind of event, somehow this is now possible due to changes in Py_Finalize()).
* 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-292-15/+52
| | | | | | | | | [ 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-292-9/+31
| | | | | | [ 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-292-1/+6
| | | | bz2 files. Also, included a testcase for this problem.
* Remove file that was moved to ../IncludeGuido van Rossum2003-04-291-18/+0
|
* - clean up some extra punctuation hidden in indexing markupFred Drake2003-04-291-13/+10
| | | | | - fix a typo and one markup nit - normalize whitespace
* Clarify that the timeout argument to read_until() is in seconds.Fred Drake2003-04-291-1/+2
|
* Removing new files accidentally checked in on the trunk rather than on theGuido van Rossum2003-04-2926-4632/+0
| | | | idlefork-merge-branch.
* Add back files that were accidentally deleted on the trunk rather thanGuido van Rossum2003-04-2914-0/+1865
| | | | on the idlefork-merge-branch as intended.