summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Moodules -> Modules.Guido van Rossum2000-09-011-1/+1
|
* Add parens suggested by gcc -Wall.Guido van Rossum2000-09-011-2/+3
|
* Repaired comment.Tim Peters2000-09-011-1/+1
|
* Set the recursion limit to 1000 -- 2500 was not enough, let's beGuido van Rossum2000-09-011-1/+1
| | | | conservative.
* Rene Liebscher/Thomas Heller:Greg Ward2000-09-011-20/+22
| | | | | | | * ensure the "dist" directory exists * raise exception if using for modules containing compiled extensions on a non-win32 platform. * don't create an .ini file anymore (it was just for debugging)
* Rene Liebscher:Greg Ward2000-09-011-13/+13
| | | | | | * reverse library names from bcpp_library to library_bcpp * move some code to the right places, to put the def-files in the right directories again
* Rene Liebscher: comment fixes.Greg Ward2000-09-011-2/+2
|
* Rene Liebscher: hack '_init_posix()' to handle the BeOS linker script.Greg Ward2000-09-011-0/+17
| | | | | (With a worry-wart comment added by me about where we *should* add the Python library to the link.)
* Bump version to 0.9.2.Greg Ward2000-09-011-1/+1
|
* Added 'run_setup()' to allow outsiders to run a setup script underGreg Ward2000-09-011-1/+89
| | | | | | | | | | | fairly tight control, and the '_setup_stop_after' and '_setup_distribution' globals to provide the tight control. This isn't entirely reliable yet: it dies horribly with a NameError on the example PIL setup script in examples/pil_setup.py (at least with Python 1.5.2; untested with current Python). There's some strangeness going on with execfile(), but I don't understand it and don't have time to track it down right now.
* Supply missing prototypes for new Py_{Get,Set}RecursionLimit; fixes compiler ↵Tim Peters2000-09-012-1/+3
| | | | | | | wngs; un-analize Get's definition ("void" is needed only in declarations, not defns, & is generally considered bad style in the latter).
* GNUTranslations._parse(): Fix portability problems on 64-bit machinesBarry Warsaw2000-08-311-5/+14
| | | | by masking all unsigned integers with 0xffffffff.
* closes bug #112468 (and all the other bugs that surfaced whenFredrik Lundh2000-08-312-43/+85
| | | | I fixed the a bug in the regression test harness...)
* Fix BeOS check in the libainstall target; noted by Mark FavasFred Drake2000-08-311-1/+1
| | | | <m.favas@per.dem.csiro.au>.
* Minor adjustment to Setup.in message, based on comment from Barry Warsaw.Fred Drake2000-08-311-7/+7
|
* After rerunning autoheader, two symbols (HAVE__GETPTY and WITH_LIBDB)Guido van Rossum2000-08-311-6/+6
| | | | appear in a different place. Oh well.
* Test case to exercise fix for error propogation bug in dictionarys.Fred Drake2000-08-312-2/+28
|
* Fix markup error and minor consistency nit.Fred Drake2000-08-311-2/+2
|
* Slight performance hack that also avoids requiring the existence of threadFred Drake2000-08-311-12/+124
| | | | | | | | state for dictionaries that have only been indexed by string keys. See the comments in SourceForge for more. This closes SourceForge patch #101309.
* script that reports a fairly safe recursionlimit for a specific platformJeremy Hylton2000-08-311-0/+88
|
* add user-modifiable recursion_limitJeremy Hylton2000-08-314-15/+84
| | | | | | | | | | | ceval.c: define recurion_limit (static), default value is 2500 define Py_GetRecursionLimit and Py_SetRecursionLimit raise RuntimeError if limit is exceeded PC/config.h: remove plat-specific definition sysmodule.c: add sys.(get|set)recursionlimit
* Clear errors raised by PyObject_Compare() without losing any existingFred Drake2000-08-311-9/+44
| | | | | | | | | | exception context. This avoids improperly propogating errors raised by a user-defined __cmp__() by a subsequent lookup operation. This patch does *not* include the performance enhancement patch for dictionaries with string keys only; that will be checked in separately. This closes SourceForge patch #101277 and bug #112558.
* This module has a poor name, since it can be used under FreeBSD andJeremy Hylton2000-08-311-0/+10
| | | | | | | | Linux. Perhaps winaudio would be better, as it would offend both parties equally. tg@freebsd.org: allow this module to compile under FreeBSD (he suggests voxwareaudio)
* patch #101733: fix glitch in FreeBSD confJeremy Hylton2000-08-312-3/+3
|
* Document the limitation that urllib does not work with proxies whichFred Drake2000-08-311-5/+9
| | | | | | | require authenication. This is an implementation limitation rather than required behavior, and may be fixed in the future. This closes SourceForge bug #111725.
* If Setup is older than Setup.in, issue a bold warning that the Setup mayFred Drake2000-08-311-2/+11
| | | | | | need to be checked to make sure all the latest information is present. This closes SourceForge patch #101275.
* Remove obsolete --with(out)-readline configure optionVladimir Marangozov2000-08-312-506/+460
|
* Added abstract.Greg Ward2000-08-312-2/+19
|
* UNARY_NEG is supposed to be UNARY_NEGATIVE (spotted by Charles WaldmanFred Drake2000-08-311-2/+2
| | | | | | <cgw@fnal.gov>). Fix minor problem with EXTENDED_ARG description markup..
* Skip Montanaro <skip@mojam.com>:Fred Drake2000-08-312-327/+371
| | | | | | Update the generated files related to the autoconf support for BSD db. This closes SourceForge patch #101272.
* Skip Montanaro <skip@mojam.com>:Fred Drake2000-08-315-2/+44
| | | | | | | | | | | Update the build structures to automatically detect the presence of BSD db, including the proper name of the header file to include. Has all the expected niceties associated with yet-more-configure-options. ;) This checkin includes changes for non-generated files only; subsequent checkin will catch those. This is part of SourceForge patch #101272.
* fixes bug #111951Jeremy Hylton2000-08-313-2/+18
| | | | | | applies patch #101369 by Moshe Zadke use explicit list of always safe characters instead of string.letters add test case
* Update some version information for tools based on prodding from Greg Ward.Fred Drake2000-08-311-12/+11
|
* _PySys_Init(): When setting up sys.version_info, use #if/#elif.../#endifFred Drake2000-08-311-6/+3
| | | | | instead of four #if/#endif blocks. This shortens the code and improves readability.
* apply patch #101362 by Vladimir MarangozovJeremy Hylton2000-08-311-33/+24
| | | | also initial static debug variable to 0
* Get rid of "sec:" prefix that slipped into a couple of \label's.Greg Ward2000-08-311-4/+4
|
* GNUTranslations.BE_MAGIC: don't be so clever in calculating this fromBarry Warsaw2000-08-311-1/+1
| | | | LE_MAGIC; it breaks on Tru64.
* New method getnamespace.Sjoerd Mullender2000-08-312-0/+12
| | | | | | Since the application never gets to see the namespace abbreviation used in the XML document, but some applications may need to know them, we provide this method.
* Be a little more careful to avoid including style information in theFred Drake2000-08-311-13/+12
| | | | | | | | generated markup. Don't be careless with the navigation icons! We should use the blank icon where there is not anyplace to go for a particular position in the navigation bar.
* Always room to remove more formatting from the HTML!Fred Drake2000-08-311-2/+3
|
* Fix grouping: this is how I intended it, misguided as I was in booleanThomas Wouters2000-08-311-2/+2
| | | | operator associativity.
* Move common parameters to mkhowto to a variable, add up-link from theFred Drake2000-08-311-19/+13
| | | | generated documents to the document index.
* Add --up-link and --up-title parameters to allow linking the top levelFred Drake2000-08-311-1/+12
| | | | | of the generated document to an external index. These correspond to the -up_url and -up_title parameters of LaTeX2HTML.
* Push some table header formatting to the style sheet; this also helpsFred Drake2000-08-311-15/+97
| | | | | | separate some of the ties between l2hinit.perl and python.perl. Revamp the "title page" construction to allow more flexibility.
* Remove obsolete scripts.Fred Drake2000-08-313-159/+0
|
* Add --l2h-init option, which can augment the standard LaTeX2HTMLFred Drake2000-08-311-3/+11
| | | | | initialization with additional Perl files. This can be given more than once.
* Centralize the processing logic for LaTeX documents into the mkhowto script;Fred Drake2000-08-312-87/+46
| | | | | | | do not use mkdvi.sh or mkhtl.sh any more. This slows down building all versions of the documentation, but if you are only building one format, it does not matter.
* Relocate the popen2 documentation since it is now substantially moreFred Drake2000-08-311-1/+1
| | | | portable.
* PyOS_CheckStack(): Better ANSI'fy this while we're at it.Fred Drake2000-08-311-1/+1
|
* Document PyOS_CheckStack().Fred Drake2000-08-311-2/+12
| | | | Fix a couple of really minor markup nits.