Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This patch looks large, but it just deletes the ^M characters and | Andrew M. Kuchling | 2000-04-02 | 3 | -482/+482 |
| | | | | untabifies the files. No actual code changes were made. | ||||
* | Untabified file to fix problems reported by tabnanny | Andrew M. Kuchling | 2000-04-02 | 1 | -17/+17 |
| | |||||
* | Mark Hammond: Uncomment call to delete test data when done. | Fred Drake | 2000-04-01 | 1 | -1/+1 |
| | |||||
* | Added --numeric option, similar to mkhtml.sh. | Fred Drake | 2000-03-31 | 1 | -2/+7 |
| | |||||
* | Added rule to copy in the icons/ directory. | Fred Drake | 2000-03-31 | 1 | -1/+5 |
| | |||||
* | List of subdirs that are generated during the build. | Fred Drake | 2000-03-31 | 1 | -0/+8 |
| | |||||
* | Build rules for the "long HTML" version. | Fred Drake | 2000-03-31 | 1 | -0/+105 |
| | |||||
* | This commit was manufactured by cvs2svn to create tag 'r16a1'.v1.6a1 | cvs2svn | 2000-03-31 | 1 | -0/+1 |
| | |||||
* | Quick update to the README file. For intros and books we now point to | Guido van Rossum | 2000-03-31 | 1 | -42/+13 |
| | | | | the website. | ||||
* | Add a README file so that cvs update -P doesn't obliterate this | Guido van Rossum | 2000-03-31 | 1 | -0/+2 |
| | | | | directory, and so that people have a clue as to why it exists. | ||||
* | Two more names. I just realize that there may be more contributors to | Guido van Rossum | 2000-03-31 | 1 | -0/+2 |
| | | | | distutils lurking in CVS logs that I probably haven't read. Oh well. | ||||
* | I believe I've now got all the names mentioned in the CVS logs since | Guido van Rossum | 2000-03-31 | 1 | -0/+20 |
| | | | | | | | | 1.5.2 was released, except those who contributed only to Doc files -- Fred has his own way of doing this. This doesn't mean that I've got everyone who contributed *before* 1.5.2 was released in here... :-( | ||||
* | Fixed my simplification to Thomas' patch: winreg and win32api export the same | Greg Ward | 2000-03-31 | 1 | -8/+13 |
| | | | | functions, but with different names. | ||||
* | Improve explanation of reference counts for PyString_Concat(). | Fred Drake | 2000-03-31 | 1 | -2/+3 |
| | |||||
* | Reflect the two new sections in the dependencies. | Fred Drake | 2000-03-31 | 1 | -0/+2 |
| | |||||
* | Two new sections. Preliminary. | Fred Drake | 2000-03-31 | 3 | -0/+239 |
| | |||||
* | Zip file handling module, by Jim Ahlstrom. | Guido van Rossum | 2000-03-31 | 1 | -0/+470 |
| | |||||
* | Marc-Andre Lemburg: The large unicode database table is broken in | Guido van Rossum | 2000-03-31 | 3 | -10/+118 |
| | | | | | pages of 4k entries each. This should fix compiler problems on some platforms. | ||||
* | Marc-Andre Lemburg: Error reporting in the codec registry and lookup | Guido van Rossum | 2000-03-31 | 2 | -13/+51 |
| | | | | mechanism is enhanced to be more informative. | ||||
* | Add '#include <netinet/tcp.h>' | Andrew M. Kuchling | 2000-03-31 | 1 | -0/+1 |
| | | | | | | "man tcp" on Solaris says that TCP_NODELAY is defined in netinet/tcp.h, and the Open Groups Unix98 spec agrees (http://www.opengroup.org/onlinepubs/009619199/ninettcp.htm). | ||||
* | Some blank lines. | Guido van Rossum | 2000-03-31 | 1 | -0/+3 |
| | |||||
* | Marc-Andre Lemburg: use all lowercase names. | Guido van Rossum | 2000-03-31 | 1 | -8/+8 |
| | |||||
* | This module's name should be linuxaudio*dev*.c | Guido van Rossum | 2000-03-31 | 2 | -2/+1 |
| | |||||
* | Simplified Thomas Heller's registry patch: just assign all those | Greg Ward | 2000-03-31 | 1 | -32/+32 |
| | | | | | | | | HKEY_* and Reg* names once, rather than having near-duplicate code in the two import attempts. Also dropped the leading underscore on all the imported symbols, as it's not appropriate (they're not local to this module). | ||||
* | Patch from Thomas Heller: use the new winreg module if available. | Greg Ward | 2000-03-31 | 1 | -24/+47 |
| | |||||
* | Added some clarifications to pyexpat. | Guido van Rossum | 2000-03-31 | 1 | -0/+13 |
| | |||||
* | Make it compile on Windows. | Guido van Rossum | 2000-03-31 | 1 | -2/+4 |
| | |||||
* | Adding pyexpat project. | Guido van Rossum | 2000-03-31 | 2 | -0/+206 |
| | |||||
* | Buncha last-minute fixes | Guido van Rossum | 2000-03-31 | 1 | -16/+33 |
| | |||||
* | Added test case output for pyexpat module | Andrew M. Kuchling | 2000-03-31 | 1 | -0/+31 |
| | |||||
* | Added test case for pyexpat module that tries to exercise all the handlers | Andrew M. Kuchling | 2000-03-31 | 1 | -0/+107 |
| | |||||
* | Added Python interface to Expat XML parser. | Andrew M. Kuchling | 2000-03-31 | 2 | -0/+872 |
| | | | | | | | | The Setup.in entry is sort of a lie; it links with -lexpat, but Expat's Makefile doesn't actually build a libexpat.a. I'll send Expat's author a patch to do that; if he doesn't accept it, this rule will have to list Expat's object files (ick!), or have a comment explaining how to build a .a file. | ||||
* | Add Python version bump to configure script. (AMK) | Guido van Rossum | 2000-03-31 | 2 | -3/+3 |
| | |||||
* | Added distutils and distutils/command to LIBSUBDIRS. Noted by Andrew | Guido van Rossum | 2000-03-31 | 1 | -1/+2 |
| | | | | Kuchling. | ||||
* | Added _sre project to workspace. | Guido van Rossum | 2000-03-31 | 2 | -0/+198 |
| | |||||
* | Removed three unused variables from the Windows code. | Guido van Rossum | 2000-03-31 | 1 | -3/+0 |
| | |||||
* | Added the _sre module. It is always on. | Guido van Rossum | 2000-03-31 | 1 | -0/+1 |
| | |||||
* | Adding Fredrik Lundh's _sre.c module and its header files. | Guido van Rossum | 2000-03-31 | 3 | -0/+1518 |
| | | | | NOTE: THIS IS VERY ROUGH ALPHA CODE! | ||||
* | Added Fredrik Lundh's sre module and its supporting cast. | Guido van Rossum | 2000-03-31 | 4 | -0/+856 |
| | | | | NOTE: THIS IS VERY ROUGH ALPHA CODE! | ||||
* | Thomas Heller fixes a typo in an error message. | Guido van Rossum | 2000-03-31 | 1 | -1/+1 |
| | |||||
* | More names. | Guido van Rossum | 2000-03-31 | 1 | -0/+20 |
| | |||||
* | Added code to blow away the pseudo-installation tree and a 'keep_tree' | Greg Ward | 2000-03-31 | 1 | -1/+10 |
| | | | | option to disable this (by default, it's false and we clean up). | ||||
* | Oops, got a little too enthusiastic deleting code in that last revision: | Greg Ward | 2000-03-31 | 1 | -0/+1 |
| | | | | we still have to *run* the sub-command that creates a built distribution. | ||||
* | Fixed 'make_archive()' to explicitly turn of compression when format is "tar". | Greg Ward | 2000-03-31 | 1 | -0/+1 |
| | |||||
* | Rename 'formats' option to 'format', and remove the ability to generate | Greg Ward | 2000-03-31 | 1 | -20/+16 |
| | | | | | multiple built distributions in one run -- it seemed a bit dodgy and I'd rather remove it than try to beat it into submission right now. | ||||
* | Import from 'types' module. | Greg Ward | 2000-03-31 | 1 | -0/+3 |
| | | | | Added 'ztar', 'tar' to 'format_command' dictionary. | ||||
* | Tweaked 'get_platform()' to include the first character of the OS release: | Greg Ward | 2000-03-31 | 1 | -4/+2 |
| | | | | eg. sunos5, linux2, irix5. | ||||
* | Removed some old test code: don't set 'plat' when calling 'new_compiler()'. | Greg Ward | 2000-03-31 | 1 | -2/+1 |
| | |||||
* | Don't perpetrate the "_d" hack for naming debugging extensions -- that's | Greg Ward | 2000-03-31 | 1 | -4/+0 |
| | | | | now done in the 'build_ext' command. | ||||
* | Patch (mostly) from Thomas Heller for building on Windows: | Greg Ward | 2000-03-31 | 1 | -11/+36 |
| | | | | | | | | | * build to "Debug" or "Release" temp directory * put linker turds (.lib and .exp files) in the build temp directory * tack on "_d" to extensions built with debugging * added 'get_ext_libname()' help in putting linker turds to temp dir Also, moved the code that simplifies None to empty list for a bunch of options to 'finalize_options()' instead of 'run()'. |