summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Add two new files and update remaining tests from the latest update of theRaymond Hettinger2004-08-1731-191/+1190
* Revise max() and min() to comply with the 8/2/2004 update to the specificationRaymond Hettinger2004-08-171-19/+65
* * Dynamically build a list of files to be tested (necessary becauseRaymond Hettinger2004-08-171-81/+14
* Test cases and fixes for bugs described in patch #873418: email/Message.py:Barry Warsaw2004-08-162-2/+14
* Being bsd-based, darwin/macosx has the same limitation w.r.t. the "echo"Skip Montanaro2004-08-161-1/+1
* Minor formatting cleanup.Raymond Hettinger2004-08-161-5/+6
* * Uncomment the SyntaxError doctest after Tim demonstrated how.Raymond Hettinger2004-08-161-11/+6
* - Bug #891637, patch #1005466: fix inspect.getargs() crash on def foo((bar)).Matthias Klose2004-08-152-7/+23
* Correct the order of application for decorators. Meant to be bottom-up and notBrett Cannon2004-08-151-7/+16
* Let cgi.parse_header() properly unquote headers (patch #1008597).Johannes Gijsbers2004-08-141-0/+1
* bug #989672: pdb.doc and the help messages for the help_d and help_u methodsJohannes Gijsbers2004-08-142-4/+4
* bug #990669: os.path.realpath() will resolve symlinks before normalizing theJohannes Gijsbers2004-08-142-9/+104
* Catch OSError raised when src or dst argument to os.path.samefile doesn'tJohannes Gijsbers2004-08-141-1/+4
* Unwrap too-smart loop: we can't use `src` for both hard and symbolic links.Johannes Gijsbers2004-08-141-8/+16
* Raise an exception when src and dst refer to the same file via a hard link or aJohannes Gijsbers2004-08-142-5/+32
* Reset old locale after running tests. Not doing so brokeJohannes Gijsbers2004-08-141-19/+23
* Back out patch #982681Andrew M. Kuchling2004-08-131-8/+2
* 'inspect' was not listing the functions in a module properly if the module wasBrett Cannon2004-08-131-1/+3
* Convert weak iterators to generator form.Raymond Hettinger2004-08-131-51/+23
* Whitespace normalization.Tim Peters2004-08-132-6/+6
* Doctest has new traceback gimmicks in 2.4. While trying to documentTim Peters2004-08-131-16/+26
* SF patch #1005778, Fix seg fault if list object is modified during list.index()Neal Norwitz2004-08-131-0/+12
* include at least one example of an exception passing through pyexpatFred Drake2004-08-131-0/+15
* Nit in _IS_BLANK_OR_COMMENT comment -- it doesn't matter how this isTim Peters2004-08-131-2/+2
* Report refleaks to stderr as the tests run as well as logging themMichael W. Hudson2004-08-121-0/+2
* This is my patchMichael W. Hudson2004-08-121-2/+9
* Fix bugMichael W. Hudson2004-08-121-6/+62
* Patch #808719: Ignore the locale's encoding if it is an empty string.Martin v. Löwis2004-08-121-2/+2
* In output_difference(), replace blank lines in `want` with <BLANKLINE>Edward Loper2004-08-121-3/+3
* - Changed output of DocTestParser.get_program() to make it easier toEdward Loper2004-08-122-23/+37
* - Added __docformat__Edward Loper2004-08-122-17/+33
* - Changed option directives to be example-specific. (i.e., they nowEdward Loper2004-08-122-79/+254
* - Added a register_optionflag function (so users can add their ownEdward Loper2004-08-121-22/+18
* Start rewriting doctest's LaTeX docs. Damn, this is slow going!Tim Peters2004-08-101-1/+1
* Fix typo in getquotaroot parameter reported by Thierry FLORAC. Also amplify d...Piers Lauder2004-08-101-3/+5
* Whitespace normalization.Tim Peters2004-08-091-1/+1
* Edward's latest checkins somehow managed to wipe out my previous latestTim Peters2004-08-092-15/+17
* - DocTest is now a simple container class; its constructor is no longerEdward Loper2004-08-092-105/+111
* This started as a spelling and whitespace cleanup. The comment forTim Peters2004-08-092-20/+22
* Added support for pdb.set_trace.Jim Fulton2004-08-092-1/+103
* Patch #1003700: Add socketpair function to socket module.Dave Cole2004-08-092-0/+44
* Removed lots of stuff from the module docstring. My intent for 2.4 isTim Peters2004-08-091-137/+18
* Repair some out-of-date comments.Tim Peters2004-08-091-8/+2
* Drop the excruciating newline requirements on arguments toTim Peters2004-08-092-32/+42
* Give return stmts their own lines.Tim Peters2004-08-091-2/+4
* Indent body of _EXAMPLE_RE for readability. _IS_BLANK_OR_COMMENT makesTim Peters2004-08-091-13/+13
* Changed Parser.get_examples() to return a list of Example objects,Edward Loper2004-08-091-21/+13
* - Split DocTestRunner's check_output and output_difference methods offEdward Loper2004-08-091-127/+139
* Rewrote Parser, using regular expressions instead of walking thoughEdward Loper2004-08-092-221/+227
* Fixed doctest error (wrong prompts)Edward Loper2004-08-091-3/+3