Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Skip Montanaro <skip@mojam.com>: | Fred Drake | 2000-08-31 | 5 | -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 #111951 | Jeremy Hylton | 2000-08-31 | 3 | -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 Drake | 2000-08-31 | 1 | -12/+11 |
| | |||||
* | _PySys_Init(): When setting up sys.version_info, use #if/#elif.../#endif | Fred Drake | 2000-08-31 | 1 | -6/+3 |
| | | | | | instead of four #if/#endif blocks. This shortens the code and improves readability. | ||||
* | apply patch #101362 by Vladimir Marangozov | Jeremy Hylton | 2000-08-31 | 1 | -33/+24 |
| | | | | also initial static debug variable to 0 | ||||
* | Get rid of "sec:" prefix that slipped into a couple of \label's. | Greg Ward | 2000-08-31 | 1 | -4/+4 |
| | |||||
* | GNUTranslations.BE_MAGIC: don't be so clever in calculating this from | Barry Warsaw | 2000-08-31 | 1 | -1/+1 |
| | | | | LE_MAGIC; it breaks on Tru64. | ||||
* | New method getnamespace. | Sjoerd Mullender | 2000-08-31 | 2 | -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 the | Fred Drake | 2000-08-31 | 1 | -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 Drake | 2000-08-31 | 1 | -2/+3 |
| | |||||
* | Fix grouping: this is how I intended it, misguided as I was in boolean | Thomas Wouters | 2000-08-31 | 1 | -2/+2 |
| | | | | operator associativity. | ||||
* | Move common parameters to mkhowto to a variable, add up-link from the | Fred Drake | 2000-08-31 | 1 | -19/+13 |
| | | | | generated documents to the document index. | ||||
* | Add --up-link and --up-title parameters to allow linking the top level | Fred Drake | 2000-08-31 | 1 | -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 helps | Fred Drake | 2000-08-31 | 1 | -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 Drake | 2000-08-31 | 3 | -159/+0 |
| | |||||
* | Add --l2h-init option, which can augment the standard LaTeX2HTML | Fred Drake | 2000-08-31 | 1 | -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 Drake | 2000-08-31 | 2 | -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 more | Fred Drake | 2000-08-31 | 1 | -1/+1 |
| | | | | portable. | ||||
* | PyOS_CheckStack(): Better ANSI'fy this while we're at it. | Fred Drake | 2000-08-31 | 1 | -1/+1 |
| | |||||
* | Document PyOS_CheckStack(). | Fred Drake | 2000-08-31 | 1 | -2/+12 |
| | | | | Fix a couple of really minor markup nits. | ||||
* | Add a comment explaining the return value of PyOS_CheckStack(). | Fred Drake | 2000-08-31 | 1 | -1/+4 |
| | |||||
* | Peter Schneider-Kamp <nowonder@nowonder.de>: | Fred Drake | 2000-08-31 | 4 | -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 Drake | 2000-08-31 | 1 | -4/+6 |
| | | | | | expression next to a || expression; this is a readability-inspired warning from GCC. | ||||
* | Added a little more dependency information. | Fred Drake | 2000-08-31 | 1 | -1/+1 |
| | |||||
* | Added prototype for PyToken_ThreeChars(), to remove compiler warning | Fred Drake | 2000-08-31 | 1 | -0/+1 |
| | | | | in Parser/grammar.c. | ||||
* | Added note about documenting the SSL support in the socket module. | Fred Drake | 2000-08-31 | 1 | -0/+2 |
| | |||||
* | Remove one compiler warning found with -Wstrict-prototypes. | Fred Drake | 2000-08-31 | 1 | -1/+1 |
| | |||||
* | tg@freebsd.org | Jeremy Hylton | 2000-08-31 | 10 | -0/+1629 |
| | | | | close SF patch #101354 | ||||
* | Add /GX to 'compile_options'. This is definitely needed for C++ source; | Greg Ward | 2000-08-31 | 1 | -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 option | Skip Montanaro | 2000-08-30 | 4 | -461/+523 |
| | |||||
* | Better error message with UnboundLocalError | Paul Prescod | 2000-08-30 | 1 | -11/+39 |
| | |||||
* | Add ".cxx" to the list of known C++ extensions. | Greg Ward | 2000-08-30 | 1 | -1/+1 |
| | |||||
* | Added docstring for 'wrap()' function. | Greg Ward | 2000-08-30 | 1 | -0/+5 |
| | |||||
* | PyOS_CheckStack() returns 1 when failing, not -1. | Guido van Rossum | 2000-08-30 | 1 | -1/+1 |
| | |||||
* | Push a little more here to avoid style information in the generation | Fred Drake | 2000-08-30 | 1 | -0/+3 |
| | | | | scripts as much as possible. | ||||
* | Remove the reference to stdwin. The comment was still true, but no | Fred Drake | 2000-08-30 | 1 | -6/+4 |
| | | | | longer meaningful to a new user, since stdwin is long gone. | ||||
* | doc changes to parallel changes to calendar.py module | Skip Montanaro | 2000-08-30 | 1 | -11/+46 |
| | |||||
* | patches from David Goodger. Closes patch 101085. | Skip Montanaro | 2000-08-30 | 1 | -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 error | Andrew M. Kuchling | 2000-08-30 | 1 | -1/+1 |
| | |||||
* | Markup revisions. Nothing was actually required to be able to format it, | Fred Drake | 2000-08-30 | 1 | -54/+55 |
| | | | | but many conventions were broken. | ||||
* | Expand the test suite to test both the GNU gettext and translation | Barry Warsaw | 2000-08-30 | 2 | -257/+154 |
| | | | | class-based APIs. | ||||
* | Added a couple of links to online documentation. Reasonable since this | Fred Drake | 2000-08-30 | 1 | -0/+19 |
| | | | | file is not used in the online documentation. | ||||
* | Added James Henstridge | Barry Warsaw | 2000-08-30 | 1 | -0/+1 |
| | |||||
* | Finalize this module for Python 2.0 based on feedback and input from | Barry Warsaw | 2000-08-30 | 1 | -173/+140 |
| | | | | | Martin von Loewis, Peter Funk, James Henstridge, Francois Pinard, and Marc-Andre Lemburg. | ||||
* | Oops, spell MAL's name right. | Barry Warsaw | 2000-08-30 | 1 | -1/+1 |
| | |||||
* | Documentation for the gettext module. | Barry Warsaw | 2000-08-30 | 1 | -0/+495 |
| | |||||
* | Added libgettext.tex | Barry Warsaw | 2000-08-30 | 2 | -0/+2 |
| | |||||
* | Removed forgotten text in list comprehensions section (taken from the Haskell | Andrew M. Kuchling | 2000-08-30 | 1 | -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 Drake | 2000-08-29 | 1 | -0/+3 |
| | |||||
* | Various tweaks and improvements by Thomas Wouters (who apparently lost | Guido van Rossum | 2000-08-29 | 1 | -85/+58 |
| | | | | the patch or forgot about it -- this is easier than reminding him). |