summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added simple batch file to make running the test suite from the PCbuildTim Peters2000-09-151-0/+8
| | | | directory less tedious.
* Correctly cast the return value of realloc.Martin v. Löwis2000-09-151-1/+1
|
* Check range for bytes and shorts. Closes bug #110845.Martin v. Löwis2000-09-151-2/+42
|
* Correctly use realloc return value. Fixes bug #114424.Martin v. Löwis2000-09-151-1/+1
|
* Support \r in source files. Closes bug #101425.Martin v. Löwis2000-09-151-0/+5
|
* Removed some debugging prints: When running user configuration codeFred Drake2000-09-151-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 beenFred Drake2000-09-151-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 supportFred Drake2000-09-151-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 compatibilityFred Drake2000-09-154-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 disableGreg Ward2000-09-151-3/+6
| | | | the sometimes inappropriate warning about where we're installing data files.
* Adjust to the new sysconfig regime: use 'get_config_vars()' insteadGreg Ward2000-09-151-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()' insteadGreg Ward2000-09-151-3/+4
| | | | of globals from sysconfig.
* Revamped 'get_platform()' to try and do something reasonably smart onGreg Ward2000-09-151-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 doGreg Ward2000-09-151-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 thatGreg Ward2000-09-151-6/+8
| | | | | comments are stripped and lines are joined according to the backslash convention.
* Before running LaTeX2HTML, remove all the HTML files from the outputFred Drake2000-09-141-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 Drake2000-09-141-1/+3
|
* Add a reference to the sha module, noting that SHA is considered moreFred Drake2000-09-141-0/+7
| | | | secure. Suggested by Erno Kuusela <erno@iki.fi>.
* Convert "See also" section to use \seetitle.Fred Drake2000-09-141-6/+8
|
* Did not include the sha module documentation dependency.Fred Drake2000-09-141-0/+1
|
* Added a note about gdbm.Jack Jansen2000-09-141-1/+3
| | | | Changed the stackless note.
* Added a note about getting CarbonLib as a way to get a new ↵Jack Jansen2000-09-141-6/+13
| | | | Appearance/NavServices. Added Luc Lefebvre to the thanks-list.
* Fixes that should make it possible to run Python on machines without ↵Jack Jansen2000-09-141-0/+5
| | | | NavServices installed.
* Fixes that should make it possible to run Python on machines without ↵Jack Jansen2000-09-143-0/+0
| | | | NavServices installed. Also weak-linked OT libraries so Python can run with extensions disabled.
* Denis S. Otkidach <ods@users.sourceforge.net>:Fred Drake2000-09-141-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 byJeremy Hylton2000-09-141-1/+4
| | | | ignoring them; e.g. Zope sometimes returns 13497L
* Remove reference to the stdwin-based windowed debugger, since stdwinFred Drake2000-09-141-6/+2
| | | | | | is gone. Make a module reference into a hyperlink.
* Use the \setshortversion macro to specify the abbreviated version number.Fred Drake2000-09-141-2/+3
| | | | | | | | | This partially addresses SourceForge bug #114318. Fix the release number -- this is supposed to be the *Python* release, not the documentation release! The later is given by the combination of the Python release number and the date. Add a comment so I can keep it straight.
* Use \shortversion in a number of places.Fred Drake2000-09-143-12/+12
| | | | This partially addresses SourceForge bug #114318.
* do_cmd_shortversion(),Fred Drake2000-09-141-11/+32
| | | | | | | | | | | | | | | | | | | | | | | do_cmd_setshortversion(): Implementation for new markup. convert_args(): New helper function. do_cmd_optional(): Modified to understand when it is called from within a convert_args() invocation. do_env_funcdesc(), do_env_funcdescni(), do_cmd_funcline(), do_cmd_funclineni(), handle_classlike_descriptor(), do_env_methoddesc(), do_end_methoddescni(), do_cmd_methodline(), do_cmd_methodlineni(): Modified to use helper convert_args(). The convert_args() helper and related changes fix the generation of HTML for the \optional markup, so that bogus </var>...<var> is not generated. This closes SourceForge bug #113800.
* \shortversion,Fred Drake2000-09-142-2/+29
| | | | | | \setshortversion: New markup to help deal with Python having a "real" version number and an abbreviated version number used to create pathnames to the library installation.
* Avoid reference to specific versions of Python where possible.Fred Drake2000-09-141-4/+4
| | | | This partially addresses SourceForge bug #114318.
* Avoid reference to specific versions of Python where possible.Fred Drake2000-09-141-3/+3
| | | | This partially addresses SourceForge bug #114318.
* Add some index entries to make it easier to find information onFred Drake2000-09-141-0/+5
| | | | %-formatting of strings.
* Remove "," from the list of always_safe characters. It is a reservedJeremy Hylton2000-09-142-8/+62
| | | | | | | | | | character according to RFC 2396. Add some text to quote doc string that explains the quoting rules better. This closes SF Bug #114427. Add _fast_quote operation that uses a dictionary instead of a list when the standard set of safe characters is used.
* Use the configure support to determine which ndbm.h header to include.Fred Drake2000-09-141-0/+10
|
* Allow configure to detect whether ndbm.h or gdbm/ndbm.h is installed.Fred Drake2000-09-143-9/+15
| | | | | | | | This allows dbmmodule.c to use either without having to add additional options to the Modules/Setup file or make source changes. (At least some Linux systems use gdbm to emulate ndbm, but only install the ndbm.h header as /usr/include/gdbm/ndbm.h.)
* Detlef Lannert <lannert@uni-duesseldorf.de>:Fred Drake2000-09-141-2/+2
| | | | | | | | | | | | | mailbox.py (from the CVS tree) doesn't work with qmail Maildirs: Filenames are completed when the directories are scanned, and the directory name is prepended again in the next() method. Another suggestion: Change the print statement in the _test() driver to show two more date characters (probably the length has increased due to the recent Y2K hype ;). Now it shows the complete date, including the seconds -- at least for me. (I've also made the sender field left justified, in case it is ever shorter than the field width).
* Removed exceptions from the required modules (it's builtin nowadays)Jack Jansen2000-09-141-2/+2
| | | | Added _winreg to the non-required modules.
* Added Qdoffs and (optionally) icglue modules.Jack Jansen2000-09-141-0/+8
|
* Added USE_IC and USE_PYEXPATJack Jansen2000-09-141-0/+2
|
* Not relevant anymore, as pyexpat has moved to another maintainer.Jack Jansen2000-09-132-53/+0
|
* Include Numerical header files in developer distribution.Jack Jansen2000-09-131-6/+19
|
* Add several dl.RTLD_ constants. Closes bug 110842.Martin v. Löwis2000-09-131-2/+38
|
* Include a link to Francois's po-utils.Barry Warsaw2000-09-131-2/+3
|
* Added --force (-f) option to force installation (including bytecodeGreg Ward2000-09-135-4/+20
| | | | compilation).
* Bump version to 0.9.3pre.Greg Ward2000-09-131-1/+1
|
* Fix install directories on Mac OS (now that the "install" commandGreg Ward2000-09-131-13/+4
| | | | does the right thing).
* Fix install directories on Mac OS: now everything goes toGreg Ward2000-09-131-2/+2
| | | | <prefix>:Lib:site-packages.
* Changed/added a bunch of section labels so HTML files will be named nicely.Greg Ward2000-09-131-6/+10
|