summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Added 'libraries' option for use by the 'build_lib' command.Greg Ward2000-02-051-1/+2
* Run the 'build_lib' command before building extensions, if necessary.Greg Ward2000-02-051-0/+6
* New command to build C (and C++, hopefully) libraries needed by extensionsGreg Ward2000-02-052-0/+322
* Tweaked various comments, docstrings, and error messages.Greg Ward2000-02-051-2/+12
* rapid evolution towards producing real .pyc files (even though I don'tJeremy Hylton2000-02-041-11/+176
* Added a simple test program to disassemble a file, invoked as __main__.Guido van Rossum2000-02-041-0/+27
* Actually, the previous batch's comment should have been different;Guido van Rossum2000-02-0420-48/+99
* The third and final doc-string sweep by Ka-Ping Yee.Guido van Rossum2000-02-0429-829/+942
* More trivial comment -> docstring transformations by Ka-Ping Yee,Guido van Rossum2000-02-0430-1823/+1578
* checking in initial weekend's workJeremy Hylton2000-02-042-0/+424
* make p2c a packageJeremy Hylton2000-02-041-0/+0
* three files from the p2c cvs tree. the message here indicates theJeremy Hylton2000-02-042-0/+1893
* Improved an error message.Greg Ward2000-02-031-2/+5
* Changed 'compile()' method to compile files one-at-a-time -- gives betterGreg Ward2000-02-031-28/+21
* These modules are now declared obsolete.Fred Drake2000-02-033-0/+0
* # module filecmpGuido van Rossum2000-02-031-38/+299
* In _fileobject, optimize read() a bit (it could be really slow), andGuido van Rossum2000-02-021-14/+30
* Optimize abspath() slightly for the case that win32api can't beGuido van Rossum2000-02-021-6/+11
* Make read() and readlines() conform more to the file object interface:Guido van Rossum2000-02-021-3/+3
* Mass patch by Ka-Ping Yee:Guido van Rossum2000-02-0218-2642/+2640
* Patch from Joe Van Andel: fix arg to % operator in warning.Greg Ward2000-02-021-2/+2
* Comment fix.Greg Ward2000-02-021-8/+13
* Sjoerd Mullender writes:Guido van Rossum2000-02-011-5/+14
* Allow either README or README.txt as a "standard file".Greg Ward2000-01-301-4/+16
* Fixed broken list extend in 'copy_tree()'.Greg Ward2000-01-301-2/+2
* Added 'description' class attribute to every command class (to help theGreg Ward2000-01-308-6/+26
* Added 'dist' command.Greg Ward2000-01-301-0/+2
* Improvements to the help system:Greg Ward2000-01-301-5/+89
* Added missing run of corresponding 'build' command.Greg Ward2000-01-303-0/+9
* EXPERIMENTALJeremy Hylton2000-01-201-0/+1063
* Change two occurrences of type(x) <> types.CodeType intoGuido van Rossum2000-01-191-2/+2
* Fix indentation bug.Greg Ward2000-01-171-2/+2
* Catch OSError from 'spawnv()' in '_spawn_nt()'.Greg Ward2000-01-171-5/+12
* Removed /GD switch -- currently ignored by MSVC.Greg Ward2000-01-171-1/+1
* Added compiler flags suggested by Thomas Heller: optimize, use multi-threadedGreg Ward2000-01-171-1/+1
* Added missing import.Greg Ward2000-01-171-8/+23
* Added code to use Jim Ahlstrom's zipfile.py module if the external zipGreg Ward2000-01-171-5/+32
* Fix library filename methods -- there is no 'lib' prefix under DOS/Windows.Greg Ward2000-01-171-5/+2
* Always run sys.prefix and sys.exec_prefix through 'os.path.normpath()'Greg Ward2000-01-171-4/+4
* Ditch unneeded imports.Greg Ward2000-01-171-1/+0
* Fix by Nick Russo in processing of timezone in test program; theGuido van Rossum2000-01-171-2/+4
* 'newer_group()' can now deal with missing files, in a way specified byGreg Ward2000-01-091-2/+17
* Abstracted '_fix_link_args()' out of 'link_shared_object()'.Greg Ward2000-01-091-37/+133
* Removed a bunch of irrelevant parameters from 'link_static_lib()' signature.Greg Ward2000-01-091-8/+18
* Typo fix: 'file.warn' should have been 'manifest.warn' in a couple of places.Greg Ward2000-01-091-5/+5
* The correct RFC to reference is RFC-1521 (MIME part one), not 1421 (PEM).Guido van Rossum2000-01-031-4/+1
* redesign/rebuild around the ImportManager concept.Greg Stein2000-01-031-149/+291
* Revise tests to support str(<long int object>) not appending "L".Fred Drake1999-12-233-15/+21
* Don't call len() if the value is already cached! Caught by GerritFred Drake1999-12-221-1/+1
* Contribution from Gerrit Holl:Guido van Rossum1999-12-211-8/+26