Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Marc-Andre Lemburg: New exported API PyUnicode_Resize(). | Guido van Rossum | 2000-04-10 | 1 | -0/+19 |
| | |||||
* | Don't be so strict in checking AttributeError -- the error message | Guido van Rossum | 2000-04-10 | 1 | -2/+2 |
| | | | | recently changed. | ||||
* | Output from test_zipfile.py. | Guido van Rossum | 2000-04-10 | 1 | -0/+1 |
| | |||||
* | Test for zipfile.py, by Jim Ahlstrom. | Guido van Rossum | 2000-04-10 | 1 | -0/+26 |
| | |||||
* | Define 'self.force' in the constructor and remove the hack in '__getattr__()' | Greg Ward | 2000-04-10 | 1 | -5/+6 |
| | | | | to account for it not being defined in the constructor. | ||||
* | Mark Hammond: | Guido van Rossum | 2000-04-10 | 1 | -1/+4 |
| | | | | | | | | In line with a similar checkin to object.c a while ago, this patch gives a more descriptive error message for an attribute error on a class instance. The message now looks like: AttributeError: 'Descriptor' instance has no attribute 'GetReturnType' | ||||
* | Skip Montanaro: add string precisions to calls to PyErr_Format | Guido van Rossum | 2000-04-10 | 5 | -27/+29 |
| | | | | to prevent possible buffer overruns. | ||||
* | In dealloc(), only close the socket if fd != -1. | Guido van Rossum | 2000-04-10 | 1 | -1/+2 |
| | |||||
* | Delete some debugging print statements. | Greg Ward | 2000-04-10 | 2 | -4/+0 |
| | |||||
* | Added a check for the 'force' attribute in '__getattr__()' -- better than | Greg Ward | 2000-04-10 | 1 | -6/+10 |
| | | | | | | crashing when self.force not defined. Revise 'copy_file()' and 'copy_tree()' docstrings accordingly. Remove 'hasattr()' check for 'self.force' from 'make_file()'. | ||||
* | Added optional 'prefix' arguments to 'get_python_inc()' and | Greg Ward | 2000-04-10 | 1 | -4/+10 |
| | | | | 'get_python_lib()'. | ||||
* | Better variable names here and there. | Greg Ward | 2000-04-10 | 1 | -18/+18 |
| | |||||
* | Added '--force' option -- very clear what it means for building (ignore | Greg Ward | 2000-04-10 | 4 | -3/+21 |
| | | | | | timestamps), so every build_* command has 'self.force', which follows the 'build' command if not set by the user. | ||||
* | Removed global '--force' option -- just too vague a concept to be applicable | Greg Ward | 2000-04-10 | 2 | -13/+14 |
| | | | | | | to all commands in the same way. Several Command methods now either expect 'self.force' to be defined, or check if it is defined and assume it's false if not. | ||||
* | Added __version__ to store the Distutils version number. | Greg Ward | 2000-04-10 | 1 | -0/+2 |
| | |||||
* | Moved definition of \XXX command out to distutils.sty. | Greg Ward | 2000-04-09 | 1 | -1/+0 |
| | |||||
* | Wrote the introduction (including several subsections). | Greg Ward | 2000-04-09 | 1 | -16/+177 |
| | | | | Started writing the "Standard Build and Install" section. | ||||
* | minor tweak (jvr) | Just van Rossum | 2000-04-09 | 1 | -1/+1 |
| | |||||
* | added experimental microthread support for use with stackless python -- bw ↵ | Just van Rossum | 2000-04-09 | 2 | -13/+77 |
| | | | | compatible (jvr) | ||||
* | added popup control (jvr) | Just van Rossum | 2000-04-09 | 1 | -4/+60 |
| | |||||
* | added setbound() method, some cleanups (jvr) | Just van Rossum | 2000-04-09 | 1 | -9/+12 |
| | |||||
* | oops, keyword list missed exec... doh! thanks to Maik Roeder (jvr) | Just van Rossum | 2000-04-09 | 1 | -2/+2 |
| | |||||
* | Installer Vise vct file for 1.6a1. Not very pretty (and needs funny ↵ | Jack Jansen | 2000-04-09 | 1 | -0/+0 |
| | | | | directory structure). | ||||
* | Modified for 1.6a1. | Jack Jansen | 2000-04-09 | 2 | -16/+32 |
| | |||||
* | Quick readme for 1.6a1. | Jack Jansen | 2000-04-09 | 1 | -7/+16 |
| | |||||
* | Fixed so LaTeX can actually process it, and so it looks like the other | Greg Ward | 2000-04-09 | 1 | -26/+29 |
| | | | | Distutils manual. | ||||
* | Got started for real on this manual. Completely untested and unread -- just | Greg Ward | 2000-04-09 | 1 | -2/+567 |
| | | | | checking it in so I can move things around in the CVS repository. | ||||
* | Extracted a bunch of Distutils-specific commands and macros to distutils.sty | Greg Ward | 2000-04-09 | 1 | -13/+1 |
| | | | | (also needed by inst.tex). | ||||
* | Ditched the unused 'list_only' option. | Greg Ward | 2000-04-09 | 1 | -3/+4 |
| | | | | | | Added code to include source files from 'build_clib' command to default file list -- currently this won't work, since 'build_clib' doesn't have a 'get_source_files()' method! | ||||
* | Catch DistutilsFileError in addition to DistutilsExecError in 'setup()'. | Greg Ward | 2000-04-09 | 1 | -1/+1 |
| | |||||
* | Added (currently) pointless and trivial main body (for future tests). | Greg Ward | 2000-04-09 | 1 | -0/+4 |
| | |||||
* | This little note is to clarify things for people who go poking around the | Greg Ward | 2000-04-09 | 1 | -0/+18 |
| | | | | Python library hoping to find out more about the Distutils. | ||||
* | Drag was missing from the modules built. | Jack Jansen | 2000-04-08 | 1 | -0/+2 |
| | |||||
* | This hadn't been checked in for a while. | Jack Jansen | 2000-04-08 | 1 | -0/+0 |
| | |||||
* | Fix Skip's email address in his attribution! (Thanks, Skip!) | Fred Drake | 2000-04-08 | 1 | -1/+1 |
| | |||||
* | Added support for the "Long HTML" version to the build/packaging | Fred Drake | 2000-04-07 | 1 | -2/+13 |
| | | | | process. | ||||
* | New example from Skip Montanaro <skip@mojam.com>. | Fred Drake | 2000-04-07 | 1 | -23/+29 |
| | |||||
* | Enable multithreading. | Jack Jansen | 2000-04-07 | 3 | -0/+3 |
| | |||||
* | Added a profiling target. | Jack Jansen | 2000-04-07 | 1 | -0/+0 |
| | |||||
* | Fiddled linkorder and a few other things to make shared threaded python work. | Jack Jansen | 2000-04-07 | 3 | -0/+0 |
| | |||||
* | Describe the purpose of the "long HTML" package. | Fred Drake | 2000-04-07 | 1 | -0/+34 |
| | |||||
* | Fred Gansevles <gansevle@cs.utwente.nl>: | Fred Drake | 2000-04-07 | 1 | -1/+1 |
| | | | | | The copytree function doesn't pass the symlinks parameter in recursicve calls | ||||
* | Started on GUSI2 and threading support. | Jack Jansen | 2000-04-07 | 1 | -8/+18 |
| | |||||
* | 1.6a1 modules added. | Jack Jansen | 2000-04-07 | 1 | -2/+8 |
| | |||||
* | Started on GUSI2 and threading support. cfm68k targets are still included in ↵ | Jack Jansen | 2000-04-07 | 32 | -600/+931 |
| | | | | all projects, but for the time being all the "fat" targets exclude them, making them basically copy operations. This way we don't have to rename everything, and anyone interested can easily try to fix 68k support. | ||||
* | Started on GUSI2 and threading support. | Jack Jansen | 2000-04-07 | 16 | -29/+194 |
| | |||||
* | Ready for 1.6a1. Reordered the defines to be in line with config.h.in again, ↵ | Jack Jansen | 2000-04-07 | 1 | -187/+422 |
| | | | | so tracking the new defines will be easier in future. | ||||
* | Return a handle in stead of a resource. | Jack Jansen | 2000-04-07 | 1 | -1/+1 |
| | |||||
* | Vladimir Marangozov: This fixes the line number in the string | Guido van Rossum | 2000-04-07 | 1 | -4/+2 |
| | | | | | representation of code objects when optimization is on (python -O). It was always reported as -1 instead of the real lineno. | ||||
* | Just in case someone wants to use this, let's fix the pathname. | Guido van Rossum | 2000-04-06 | 1 | -1/+1 |
| |