Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use typedef PyOS_sighandler_t and APIs PyOS_getsig() and | Guido van Rossum | 2000-09-16 | 1 | -25/+12 |
| | | | | | | | PyOS_setsig(), instead of directly calling signal() or sigaction(). This fixes the second half of bug #110611: the mysterious ignoring of the first ^C when readline isn't used. | ||||
* | Add PyOS_getsig() and PyOS_setsig() -- wrappers around signal() or | Guido van Rossum | 2000-09-16 | 1 | -0/+34 |
| | | | | sigaction() (if HAVE_SIGACTION is defined). | ||||
* | Add typedef PyOS_sighandler_t and prototypes for PyOS_getsig() and | Guido van Rossum | 2000-09-16 | 1 | -0/+6 |
| | | | | PyOS_setsig(). | ||||
* | Document new APIs PyOS_getsig() and PyOS_setsig(). | Guido van Rossum | 2000-09-16 | 1 | -0/+15 |
| | | | | | | (Is there no macro to document a typedef?) Fred, please check my latex! | ||||
* | Rene Liebscher: if we have to run the same sub-command multiple times | Greg Ward | 2000-09-16 | 1 | -5/+18 |
| | | | | | | (eg. "bdist_dumb", to generate both ZIP and tar archives in the same run), tell all but the last run to keep temp files -- this just gets rid of the need to pseudo-install the same files multiple times. | ||||
* | Renamed --keep-tree to --keep-temp. | Greg Ward | 2000-09-16 | 1 | -3/+3 |
| | |||||
* | Renamed --clean to --no-keep-temp and --noclean to --keep-temp. | Greg Ward | 2000-09-16 | 1 | -6/+6 |
| | |||||
* | Renamed --keep-tree option to --keep-temp. | Greg Ward | 2000-09-16 | 1 | -3/+3 |
| | |||||
* | Ensure sub-commands of "install" are reinitialized too. | Greg Ward | 2000-09-16 | 1 | -3/+2 |
| | | | | Run "install" the right way, by calling 'run_command()'. | ||||
* | Remove some debugging output from the last change. | Greg Ward | 2000-09-16 | 1 | -7/+0 |
| | |||||
* | In 'reinitialize_subcommand()', pass 'reinit_subcommands' flag on to the | Greg Ward | 2000-09-16 | 1 | -2/+3 |
| | | | | real implementation in Distribution. | ||||
* | Generalized 'reinitialize_command()' so it can optionally reinitialize | Greg Ward | 2000-09-16 | 1 | -2/+20 |
| | | | | | | the command's sub-commands as well (off by default). This is essential if we want to be be able to run (eg.) "install" twice in one run, as happens when generating multiple built distributions in one run. | ||||
* | Added the "sub-command" machinery to formalize the notion of "command | Greg Ward | 2000-09-16 | 1 | -0/+31 |
| | | | | | | | families" -- eg. install and its brood, build and its brood, and so forth. Specifically: added the 'sub_commands' class attribute (empty list, sub- classes must override it) and a comment describing it, and the 'get_sub_commands()' method. | ||||
* | Factored the "sub-command" machinery out to Command. Mainly, this | Greg Ward | 2000-09-16 | 1 | -25/+10 |
| | | | | | meant removing 'get_sub_commands()', and moving the 'sub_commands' class attribute to the end and restructuring it to conform to the new regime. | ||||
* | Use a really ugly hack that depends on output processing by LaTeX2HTML. | Fred Drake | 2000-09-16 | 2 | -8/+8 |
| | | | | | This replaces the tilde character with the string ";SPMtilde;", which LaTeX2HTML converts to a tilde on output. | ||||
* | Update URL to unicode.org's FTP site using an HTTP URL to the same | Fred Drake | 2000-09-16 | 1 | -1/+1 |
| | | | | document. | ||||
* | Update *both* uses of the URL to the zlib home page, and use the version | Fred Drake | 2000-09-16 | 1 | -6/+6 |
| | | | | advertised as the canonical form. | ||||
* | Update link to the zlib homepage. | Fred Drake | 2000-09-16 | 1 | -4/+4 |
| | |||||
* | Update the link to Andrew Kuchling's crypto code. | Fred Drake | 2000-09-16 | 1 | -1/+1 |
| | |||||
* | Update link to the FIPS PUB 180-1 (PDF is available, but not PostScript). | Fred Drake | 2000-09-16 | 1 | -2/+2 |
| | |||||
* | Update some stale links. | Fred Drake | 2000-09-16 | 2 | -8/+8 |
| | |||||
* | Repair senseless random.seed docstring (reported on c.l.py). | Tim Peters | 2000-09-16 | 1 | -1/+1 |
| | |||||
* | Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough. | Tim Peters | 2000-09-16 | 3 | -3/+6 |
| | | | | FRED, please check my monkey-see-monkey-do Tex fiddling! | ||||
* | Tweaked the build temp dir names again. | Greg Ward | 2000-09-16 | 1 | -8/+4 |
| | |||||
* | Typo fix. | Greg Ward | 2000-09-16 | 1 | -1/+1 |
| | |||||
* | Include the Python version in the platform-specific build directories: | Greg Ward | 2000-09-16 | 1 | -2/+4 |
| | | | | | | with the recent change in 'get_platform()', we now have directory names like "build/lib-1.5-linux-i586". Idea and original patch by Rene Liebscher. | ||||
* | Document the directory separatory for include dir and library dir lists. | Greg Ward | 2000-09-16 | 1 | -2/+3 |
| | |||||
* | This will eventually evolve into a package that creates CodeWarrior projects ↵ | Jack Jansen | 2000-09-15 | 5 | -0/+845 |
| | | | | from templates (for distutils, and possibly the standard extensions too). For now it generates a correct xml file based on sources/output/expfile, but that is about all. | ||||
* | - add a new test | Neil Schemenauer | 2000-09-15 | 1 | -0/+22 |
| | | | | - document some of the tricky tests (hopefully correctly :) | ||||
* | Fix a link -- there is no starship.python.org! | Fred Drake | 2000-09-15 | 1 | -1/+1 |
| | |||||
* | Add a constant "library" to the module which names the library used, | Fred Drake | 2000-09-15 | 1 | -10/+80 |
| | | | | | | | | | | | | based on the available headers. Update comments on the filename extensions used to reflect library differences. Added get() and setdefault() methods to the dbm object. Added docstrings, convert all methods to PyArg_ParseTuple() so that error messages will have the method names. | ||||
* | Add some comments on the available implementations that this module can | Fred Drake | 2000-09-15 | 1 | -11/+25 |
| | | | | | | | | use. Change the list of flag values for open() to a table. Markup consistency nits. | ||||
* | fix bug #110661 (PR#356) -- accept either & or ; as separator for CGI | Jeremy Hylton | 2000-09-15 | 3 | -16/+25 |
| | | | | | | query string also some doc string reformatting and use of string methods instead of older string.splitfields | ||||
* | Don't remove instance objects from the GC container set until we are | Neil Schemenauer | 2000-09-15 | 1 | -2/+1 |
| | | | | they are dead. Fixes bug #113812. | ||||
* | Some systems need -lucb to compile the mmap module. Add a comment to | Fred Drake | 2000-09-15 | 1 | -1/+4 |
| | | | | | | this effect. This address one aspect of SourceForge bug #113797. | ||||
* | Py_Main(), usage(), usage_mid: Add -h and -V flags to print the usage | Barry Warsaw | 2000-09-15 | 1 | -8/+32 |
| | | | | | message and Python version number and exit immediately. Closes patch #101496. | ||||
* | Describe the -h and -V flags. Closes patch #101496 | Barry Warsaw | 2000-09-15 | 1 | -0/+12 |
| | |||||
* | Fixed some typos. Removed one obsolete comment. | Paul Prescod | 2000-09-15 | 1 | -3/+2 |
| | |||||
* | add cross reference to mimetools module | Skip Montanaro | 2000-09-15 | 1 | -0/+2 |
| | |||||
* | RET_SAVE references should be Py_BLOCK_THREADS references | Skip Montanaro | 2000-09-15 | 1 | -2/+2 |
| | |||||
* | Fixed bug that disallowed processing instructions before and after | Paul Prescod | 2000-09-15 | 1 | -4/+5 |
| | | | | document element. | ||||
* | Fix for bug #113693: with the changes to the IMPORT_FROM opcodes, this | Guido van Rossum | 2000-09-15 | 1 | -0/+7 |
| | | | | crashed on an assert. | ||||
* | Include the filename in the errror message for F5 without saving. | Guido van Rossum | 2000-09-15 | 1 | -1/+5 |
| | | | | This closes bug #110660. | ||||
* | Update comments in the second paragraph, discussing versioning issues | Fred Drake | 2000-09-15 | 1 | -8/+9 |
| | | | | | related to the BSD DB library. Based on comments from Mark Summerfield <summer@netcraft.com>. | ||||
* | Fix Bug #114293: | Jeremy Hylton | 2000-09-15 | 5 | -112/+131 |
| | | | | | | | | | | | Strings are unpickled by calling eval on the string's repr. This change makes pickle work like cPickle; it checks if the pickled string is safe to eval and raises ValueError if it is not. test suite modifications: Verify that pickle catches a variety of insecure string pickles Make test_pickle and test_cpickle use exactly the same test suite Add test for pickling recursive object | ||||
* | Read a QuickTime movie and return the frames. | Jack Jansen | 2000-09-15 | 1 | -0/+276 |
| | |||||
* | Before comparing os.uname() to BeOS check that os.uname actually exists:-) | Jack Jansen | 2000-09-15 | 1 | -1/+1 |
| | |||||
* | For current directory use os.curdir, not ".". | Jack Jansen | 2000-09-15 | 1 | -2/+2 |
| | |||||
* | Allow am/pm as well as AM/PM (C9X behaviour). | Jack Jansen | 2000-09-15 | 1 | -2/+2 |
| | |||||
* | Added B format char to Py_BuildValue (same as b,h,i, but makes | Jack Jansen | 2000-09-15 | 1 | -1/+1 |
| | | | | bgen-generated code work). |