summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Add a comment explaining the return value of PyOS_CheckStack().Fred Drake2000-08-311-1/+4
|
* Peter Schneider-Kamp <nowonder@nowonder.de>:Fred Drake2000-08-314-18/+12
| | | | | | Remove some of GCC's warning in -Wstrict-prototypes mode. This closes SourceForge patch #101342.
* Removed compiler warning about wanting explicit grouping around &&Fred Drake2000-08-311-4/+6
| | | | | expression next to a || expression; this is a readability-inspired warning from GCC.
* Added a little more dependency information.Fred Drake2000-08-311-1/+1
|
* Added prototype for PyToken_ThreeChars(), to remove compiler warningFred Drake2000-08-311-0/+1
| | | | in Parser/grammar.c.
* Added note about documenting the SSL support in the socket module.Fred Drake2000-08-311-0/+2
|
* Remove one compiler warning found with -Wstrict-prototypes.Fred Drake2000-08-311-1/+1
|
* tg@freebsd.orgJeremy Hylton2000-08-3110-0/+1629
| | | | close SF patch #101354
* Add /GX to 'compile_options'. This is definitely needed for C++ source;Greg Ward2000-08-311-2/+3
| | | | | | | | according to the MS docs it enables exception-handling, and (according to Alex Martelli <aleaxit@yahoo.com>) is needed to compile without getting warnings from standard C++ library headers. Apparently it doesn't cause any problems with C code, so I haven't bothered conditionalizing the use of /GX.
* adds support for --with-pydebug configure optionSkip Montanaro2000-08-304-461/+523
|
* Better error message with UnboundLocalErrorPaul Prescod2000-08-301-11/+39
|
* Add ".cxx" to the list of known C++ extensions.Greg Ward2000-08-301-1/+1
|
* Added docstring for 'wrap()' function.Greg Ward2000-08-301-0/+5
|
* PyOS_CheckStack() returns 1 when failing, not -1.Guido van Rossum2000-08-301-1/+1
|
* Push a little more here to avoid style information in the generationFred Drake2000-08-301-0/+3
| | | | scripts as much as possible.
* Remove the reference to stdwin. The comment was still true, but noFred Drake2000-08-301-6/+4
| | | | longer meaningful to a new user, since stdwin is long gone.
* doc changes to parallel changes to calendar.py moduleSkip Montanaro2000-08-301-11/+46
|
* patches from David Goodger. Closes patch 101085.Skip Montanaro2000-08-301-69/+104
| | | | | | | | | | * deletes cache * adds firstweekday and setfirstweekday functions that allow user to control which day of the week is first when displaying calendars * adds month, week, calendar functions that return their results instead of printing them * adds symbolic constants MONDAY, ..., SUNDAY so users need not remember the ordinal values of the weekdays
* Fix markup errorAndrew M. Kuchling2000-08-301-1/+1
|
* Markup revisions. Nothing was actually required to be able to format it,Fred Drake2000-08-301-54/+55
| | | | but many conventions were broken.
* Expand the test suite to test both the GNU gettext and translationBarry Warsaw2000-08-302-257/+154
| | | | class-based APIs.
* Added a couple of links to online documentation. Reasonable since thisFred Drake2000-08-301-0/+19
| | | | file is not used in the online documentation.
* Added James HenstridgeBarry Warsaw2000-08-301-0/+1
|
* Finalize this module for Python 2.0 based on feedback and input fromBarry Warsaw2000-08-301-173/+140
| | | | | Martin von Loewis, Peter Funk, James Henstridge, Francois Pinard, and Marc-Andre Lemburg.
* Oops, spell MAL's name right.Barry Warsaw2000-08-301-1/+1
|
* Documentation for the gettext module.Barry Warsaw2000-08-301-0/+495
|
* Added libgettext.texBarry Warsaw2000-08-302-0/+2
|
* Removed forgotten text in list comprehensions section (taken from the HaskellAndrew M. Kuchling2000-08-301-213/+263
| | | | | | | | description of listcomps and used as inspiration) Rearranged sections (which accounts for much of the size of the diffs) Added section on augmented assignment Mentioned 'print >>file' Broke up the "Core Changes" section into subsections
* Move a little more here.Fred Drake2000-08-291-0/+3
|
* Various tweaks and improvements by Thomas Wouters (who apparently lostGuido van Rossum2000-08-291-85/+58
| | | | the patch or forgot about it -- this is easier than reminding him).