summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Print a bunch of asterisks before the failure summary, to separate itGuido van Rossum2001-03-181-0/+1
* SF bug [ #409448 ] Complex division is braindeadTim Peters2001-03-182-0/+66
* Fix bug #233253: the --define and --undef options didn't work, whetherAndrew M. Kuchling2001-03-171-0/+15
* Bug #409403: Signal an error if the distribution's metadata has no versionAndrew M. Kuchling2001-03-171-0/+4
* Distutils version number has been changed from 1.0.1 to 1.0.2preThomas Heller2001-03-161-1/+1
* The bdist_wininst.py command has been recreated after wininst.exeThomas Heller2001-03-161-272/+308
* Change RuntimeError to SGMLParseError, which subclasses RuntimeErrorFred Drake2001-03-161-5/+53
* Whitespace normalization.Tim Peters2001-03-166-14/+9
* Remove redundant "__future__:" from module docstring.Ka-Ping Yee2001-03-151-1/+1
* Import the exceptions that this module can raise.Fred Drake2001-03-141-0/+3
* Add doc string for run from profile.doc. (pydoc motivates me to writeJeremy Hylton2001-03-141-5/+13
* Moved clearing of "literal" flag. The flag is set in setliteral whichSjoerd Mullender2001-03-141-1/+1
* Change "[%s]" % string.whitespace to r"\s" in regular expressions.Fred Drake2001-03-141-4/+3
* updated __all__ to include several other namesSkip Montanaro2001-03-131-1/+5
* Patch #407965: Improve Level 2 conformance of minidomMartin v. Löwis2001-03-132-21/+103
* Oops. A RISCOS patch I forgot to check in.Guido van Rossum2001-03-131-1/+7
* Add test to verify that nested functions with free variables don'tJeremy Hylton2001-03-132-0/+24
* Multifile.read(): Fix a broken conversion to string methods.Fred Drake2001-03-121-1/+1
* Make docstrings raw, since they contain literal backslashes.Ka-Ping Yee2001-03-102-2/+2
* Fix findsource() to work for derived classes.Ka-Ping Yee2001-03-101-5/+5
* Import the nested_scopes feature twice, to exercise the patch introducedFred Drake2001-03-101-1/+3
* Replace setenv with putenv. Reported by Dietmar Schwertberger.Martin v. Löwis2001-03-071-1/+1
* Unify _Environ processing on riscos with other platforms.Martin v. Löwis2001-03-072-13/+13
* fix typo in extending __all__ for riscos platform - closes bug 406296Skip Montanaro2001-03-061-1/+1
* Define & use NetrcParseError instead of improperly overloading SyntaxError.Fred Drake2001-03-061-5/+22
* Grr, splittag was also missing from __all__.Jack Jansen2001-03-051-1/+1
* Added url2pathname and pathname2url to __all__.Jack Jansen2001-03-051-1/+1
* Clean up junk files left behind by imp.load_source().Tim Peters2001-03-041-1/+7
* Use r""" instead of """ for the docstring so that backslashes are preserved.Ka-Ping Yee2001-03-021-1/+1
* Patch by Itamar S.T. (SF#305470): add reset() method.Guido van Rossum2001-03-021-1/+6
* When not copying a file because the output is up to date, make the messageFred Drake2001-03-021-2/+2
* Fix by Donn Cave for BeOS (SF #403642):Guido van Rossum2001-03-021-4/+13
* RISCOS changes by dschwertberger.Guido van Rossum2001-03-026-24/+64
* Use != instead of <>. Sorry, Barry.Guido van Rossum2001-03-021-3/+3
* Use '127.0.0.1' only on Mac; for other, sane platforms, use 'localhost'.Ka-Ping Yee2001-03-021-2/+3
* RISCOS files by dschwertbergerGuido van Rossum2001-03-023-0/+482
* The sys.platform identifier for Windows is just 'win32' (for all varieties).Ka-Ping Yee2001-03-021-8/+8
* Search /tmp before /var/tmp and /usr/tmp -- this seems preferred.Guido van Rossum2001-03-021-1/+1
* Make getsourcefile() succeed even if the filename doesn't end in '.py' --Ka-Ping Yee2001-03-021-25/+29
* Replace literal '@test' with TESTFN.Ka-Ping Yee2001-03-021-6/+6
* When catching errors from os.rmdir(), test for os.error, not IOError!Guido van Rossum2001-03-021-3/+3
* Believe it or not, but "more" on Windows requires "more <file" ratherGuido van Rossum2001-03-021-1/+1
* Typo repair.Tim Peters2001-03-021-1/+1
* Make names in __future__.py bind to class instances instead of 2-tuples.Tim Peters2001-03-022-10/+34
* Clean up the handling of getsourcefile/getabsfile.Ka-Ping Yee2001-03-021-23/+37
* Clarify the purpose of getsourcefile().Ka-Ping Yee2001-03-021-12/+19
* Clarify synopsis line a bit.Ka-Ping Yee2001-03-021-3/+3
* test_global was broken by some recent checkin. Repairing.Tim Peters2001-03-022-9/+15
* When seeking the module for an object, compare absolute (not relative) paths.Ka-Ping Yee2001-03-021-3/+4
* Use imp.get_suffixes to determine a module name in modulename(file).Ka-Ping Yee2001-03-021-7/+25