Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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). | ||||
* | Cast UCHAR_MAX to int before doing the comparison for overflow of the | Jack Jansen | 2000-09-15 | 1 | -0/+1 |
| | | | | B format char. | ||||
* | Use symbolic constants for allowable short ranges. | Martin v. Löwis | 2000-09-15 | 1 | -4/+7 |
| | |||||
* | Closes SF bug 113894: on Windows, things like os.listdir("k:") and | Tim Peters | 2000-09-15 | 1 | -9/+7 |
| | | | | | | glob.glob("k:*py") (i.e., a raw drive letter + colon at the start) were using the root of the drive rather than the expected Windows behavior of using the drive's "current directory". | ||||
* | Added simple batch file to make running the test suite from the PCbuild | Tim Peters | 2000-09-15 | 1 | -0/+8 |
| | | | | directory less tedious. | ||||
* | Correctly cast the return value of realloc. | Martin v. Löwis | 2000-09-15 | 1 | -1/+1 |
| | |||||
* | Check range for bytes and shorts. Closes bug #110845. | Martin v. Löwis | 2000-09-15 | 1 | -2/+42 |
| | |||||
* | Correctly use realloc return value. Fixes bug #114424. | Martin v. Löwis | 2000-09-15 | 1 | -1/+1 |
| | |||||
* | Support \r in source files. Closes bug #101425. | Martin v. Löwis | 2000-09-15 | 1 | -0/+5 |
| | |||||
* | Removed some debugging prints: When running user configuration code | Fred Drake | 2000-09-15 | 1 | -4/+0 |
| | | | | | from Tk.readprofile(), do not print anything extra to stdout, just run the code. | ||||
* | main(): Move hackery of sys.argv until after the Tk instance has been | Fred Drake | 2000-09-15 | 1 | -7/+7 |
| | | | | | | | | created. This allows the application-specific Tkinter initialization to be executed if present. Also pass an explicit className parameter to the Tk() constructor. This closes SourceForge bug #110618. | ||||
* | Add item to the list of limitations that points out the lack of support | Fred Drake | 2000-09-15 | 1 | -1/+5 |
| | | | | | | | | | for authenticated proxies. This is noted elsewhere, but this makes it easier to find. Fix typo where it was already mentioned. This closes SourceForge bug #110619. | ||||
* | Trent Mick points out that the BSD DB also provides an ndbm compatibility | Fred Drake | 2000-09-15 | 4 | -291/+298 |
| | | | | layer. If that is available, consider that as an option as well. | ||||
* | Added 'warn_dir' option so other code can sneak in and disable | Greg Ward | 2000-09-15 | 1 | -3/+6 |
| | | | | the sometimes inappropriate warning about where we're installing data files. | ||||
* | Adjust to the new sysconfig regime: use 'get_config_vars()' instead | Greg Ward | 2000-09-15 | 1 | -3/+6 |
| | | | | | | | of globals from sysconfig. Added 'prefix' and 'exec_prefix' to the list of variables that can be expanded in installation directories (preserving the stupid old names of 'sys_prefix' and 'sys_exec_prefix, though). | ||||
* | Adjust to the new sysconfig regime: use 'get_config_var()' instead | Greg Ward | 2000-09-15 | 1 | -3/+4 |
| | | | | of globals from sysconfig. | ||||
* | Revamped 'get_platform()' to try and do something reasonably smart on | Greg Ward | 2000-09-15 | 1 | -4/+42 |
| | | | | POSIX platforms, ie. get a little more detail than 'sys.platform' gives. | ||||
* | Changed from eager parsing of Makefile (at import time) to lazy: only do | Greg Ward | 2000-09-15 | 1 | -25/+63 |
| | | | | | | | | | | | | | | | all that work when someone asks for a "configuration variable" from the Makefile. Details: - added 'get_config_vars()': responsible for calling one of the '_init_*()' functions to figure things out for this platform, and to provide an interface to the resulting dictionary - added 'get_config_var()' as a simple interface to the dictionary loaded by 'get_config_vars()' - changed the '_init_*()' functions so they load the global dictionary '_config_vars', rather than spewing their findings all over the module namespace - don't delete the '_init_*()' functions when done importing - adjusted 'customize_compiler()' to the new regime | ||||
* | Fixed so 'parse_makefile()' uses the TextFile class to ensure that | Greg Ward | 2000-09-15 | 1 | -6/+8 |
| | | | | | comments are stripped and lines are joined according to the backslash convention. | ||||
* | Before running LaTeX2HTML, remove all the HTML files from the output | Fred Drake | 2000-09-14 | 1 | -0/+3 |
| | | | | | | directory. This avoids acretion of HTML from previous runs which may have a new name; this would have avoided a lot of the packaging problems related to changing labels from the old distutils documentation. | ||||
* | When there is a Module Index, make sure the icon actually links to it. | Fred Drake | 2000-09-14 | 1 | -1/+3 |
| | |||||
* | Add a reference to the sha module, noting that SHA is considered more | Fred Drake | 2000-09-14 | 1 | -0/+7 |
| | | | | secure. Suggested by Erno Kuusela <erno@iki.fi>. | ||||
* | Convert "See also" section to use \seetitle. | Fred Drake | 2000-09-14 | 1 | -6/+8 |
| | |||||
* | Did not include the sha module documentation dependency. | Fred Drake | 2000-09-14 | 1 | -0/+1 |
| | |||||
* | Added a note about gdbm. | Jack Jansen | 2000-09-14 | 1 | -1/+3 |
| | | | | Changed the stackless note. | ||||
* | Added a note about getting CarbonLib as a way to get a new ↵ | Jack Jansen | 2000-09-14 | 1 | -6/+13 |
| | | | | Appearance/NavServices. Added Luc Lefebvre to the thanks-list. | ||||
* | Fixes that should make it possible to run Python on machines without ↵ | Jack Jansen | 2000-09-14 | 1 | -0/+5 |
| | | | | NavServices installed. | ||||
* | Fixes that should make it possible to run Python on machines without ↵ | Jack Jansen | 2000-09-14 | 3 | -0/+0 |
| | | | | NavServices installed. Also weak-linked OT libraries so Python can run with extensions disabled. | ||||
* | Denis S. Otkidach <ods@users.sourceforge.net>: | Fred Drake | 2000-09-14 | 1 | -2/+3 |
| | | | | | | Minor fix in documentation of code module. (Clarifies output destination for default implementation of the write() method.) | ||||
* | cope with weird Content-Length values returned from servers by | Jeremy Hylton | 2000-09-14 | 1 | -1/+4 |
| | | | | ignoring them; e.g. Zope sometimes returns 13497L |