Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Generalized so it's useful for testing other packages, by Andrew | Guido van Rossum | 1998-08-01 | 1 | -9/+34 |
| | | | | Kuchling @ CNRI. | ||||
* | Added randrange to list of exported functions. | Guido van Rossum | 1998-07-31 | 1 | -1/+1 |
| | |||||
* | Introducing randrange([start,] stop [,step]) -- same as | Guido van Rossum | 1998-07-31 | 1 | -1/+41 |
| | | | | | | | | | | | | | | | | choice(range(start, stop, step)) but faster. This addresses the problem that randint() was accidentally defined as taking an inclusive range (how unpythonic). The code is longish because Tim Peters insisted that it reject non-integral arguments while I insisted that it be not much slower than randint(); the compromise satisfies both but is somewhat convoluted. Also changed randint() to be implemented through randrange(). This is a semantic change because old randint() didn't test its arguments for validity. (It also makes randrange() win any contest with randint() :-) | ||||
* | Use buildtools where appropriate. | Jack Jansen | 1998-07-31 | 1 | -3/+4 |
| | | | | Build BuildApplication applet too. | ||||
* | Build a full standalone application from a python script (Just) | Jack Jansen | 1998-07-31 | 2 | -0/+189 |
| | |||||
* | Common code used to the buildtools module (Just) | Jack Jansen | 1998-07-31 | 2 | -326/+51 |
| | |||||
* | Implementation of freezing from shared libraries, without source. (Just) | Jack Jansen | 1998-07-31 | 2 | -7/+201 |
| | |||||
* | Common code for BuildApplet, BuildApplication and fullbuild (Just) | Jack Jansen | 1998-07-31 | 1 | -0/+279 |
| | |||||
* | Extended replacement for scripts:cfmfile.py (Just) | Jack Jansen | 1998-07-31 | 1 | -0/+186 |
| | |||||
* | Added has_key() method to IC object. | Jack Jansen | 1998-07-31 | 1 | -1/+7 |
| | | | | Removed a debug print. | ||||
* | New about box and a few other fixes by Just, and everything got | Jack Jansen | 1998-07-31 | 6 | -6300/+6252 |
| | | | | rebinhexed again. | ||||
* | Initialize the program name before adding shared library resources (Just). | Jack Jansen | 1998-07-31 | 1 | -0/+1 |
| | |||||
* | Don't add the library file to the resource file chain if it is the | Jack Jansen | 1998-07-31 | 1 | -1/+18 |
| | | | | same as the application file (Just). | ||||
* | New about box, with the version mesage filled in in a text item, and | Jack Jansen | 1998-07-31 | 1 | -13/+14 |
| | | | | PLstrcmp() fixed. (Just) | ||||
* | The PYD resource should now contain 2 strings: one for the ppc | Jack Jansen | 1998-07-31 | 1 | -2/+10 |
| | | | | | fragment name and one for the cfm68k fragment name (Just). Also, some unused variables removed. | ||||
* | Re-indented properly (Just). | Jack Jansen | 1998-07-31 | 1 | -173/+173 |
| | |||||
* | Clarify the + and b mode characters for open() a bit. | Guido van Rossum | 1998-07-29 | 1 | -6/+8 |
| | |||||
* | Pass paper size to dvips explicitly. | Fred Drake | 1998-07-29 | 1 | -1/+1 |
| | |||||
* | Update. | Fred Drake | 1998-07-29 | 1 | -16/+1 |
| | |||||
* | tohtml(): Use a table instead of a definition list for module synopses. | Fred Drake | 1998-07-29 | 1 | -4/+5 |
| | |||||
* | Fix two remaining references to all-pdf and all-ps to only use pdf and ps. | Fred Drake | 1998-07-29 | 1 | -2/+2 |
| | |||||
* | Update to use a separate page for front matter. | Fred Drake | 1998-07-28 | 6 | -0/+24 |
| | |||||
* | Update the HOWTO template to use a separate page for front matter, with | Fred Drake | 1998-07-28 | 2 | -0/+20 |
| | | | | comments. | ||||
* | do_cmd_maketitle(): No <hr> at the end of the "title page". | Fred Drake | 1998-07-28 | 1 | -1/+1 |
| | |||||
* | Define stuff to allow simple HTML-only selection using TeX's \if<foo>...\fi | Fred Drake | 1998-07-28 | 1 | -0/+5 |
| | | | | stuff. \ifhtml ...\fi for HTML only. | ||||
* | Added ref/ref.tex to REFFILES. | Fred Drake | 1998-07-28 | 1 | -7/+9 |
| | | | | | | Fixed up some comments. Removed info-related targets from the really big combined targets. | ||||
* | Make sure all chapters, sections, and subsections have a \label to give them | Fred Drake | 1998-07-28 | 7 | -63/+64 |
| | | | | semantic file names in the HTML. No more node#.html files! | ||||
* | Make sure chapters, sections, and subsections all have a \label to give them | Fred Drake | 1998-07-28 | 1 | -23/+25 |
| | | | | | | semantic file names in the HTML version; no more node#.html files. Fix one section heading. | ||||
* | Don't use raw_input() to ask for the password; this puts the password | Guido van Rossum | 1998-07-28 | 1 | -2/+17 |
| | | | | in the GNU readline history buffer which is not such a great idea. | ||||
* | fix __str__ method of EnvironmentError (base class of IOError): was | Jeremy Hylton | 1998-07-28 | 1 | -2/+2 |
| | | | | | | using "%d" % errno to print out IOError exceptions -- but urllib.py raises exceptions where the errno slot in the exception tuple is a string. | ||||
* | Fixed the gzip synopsis. | Fred Drake | 1998-07-27 | 1 | -1/+2 |
| | |||||
* | Added the popen2 synopsis. | Fred Drake | 1998-07-27 | 1 | -1/+1 |
| | |||||
* | Added the calendar synopsis. | Fred Drake | 1998-07-27 | 1 | -2/+2 |
| | |||||
* | Added the bisect synopsis. | Fred Drake | 1998-07-27 | 1 | -1/+1 |
| | |||||
* | Added the dumbdbm synopsis. | Fred Drake | 1998-07-27 | 1 | -1/+1 |
| | |||||
* | Added a synopsis. | Fred Drake | 1998-07-27 | 1 | -2/+3 |
| | |||||
* | Fix the synopsis. | Fred Drake | 1998-07-27 | 1 | -5/+4 |
| | | | | Change one \code{} to \samp{}. | ||||
* | Mark the new & changed items. | Fred Drake | 1998-07-27 | 2 | -10/+19 |
| | |||||
* | Update the release date. | Fred Drake | 1998-07-27 | 1 | -1/+1 |
| | |||||
* | do_cmd_localmoduletable(): Cause the child links table to be dropped when | Fred Drake | 1998-07-27 | 1 | -1/+1 |
| | | | | there's a local module list. | ||||
* | do_cmd_versionadded(), | Fred Drake | 1998-07-27 | 1 | -0/+14 |
| | | | | do_cmd_versionchanged(): Support for new macros. | ||||
* | \versionadded, | Fred Drake | 1998-07-27 | 1 | -2/+17 |
| | | | | \versionchanged: New macros. | ||||
* | Convert operator precedence table to the new style markup. | Fred Drake | 1998-07-27 | 1 | -45/+45 |
| | | | | | | | Added lambda to the table. Call "**" exponentiation instead of power. {\em ...} --> \emph{...} | ||||
* | Minor tidy. | Fred Drake | 1998-07-27 | 2 | -3/+3 |
| | |||||
* | Use Py_GetPythonHome() instead of getenv("PYTHONHOME"). | Guido van Rossum | 1998-07-27 | 1 | -1/+1 |
| | |||||
* | Two changes: | Guido van Rossum | 1998-07-27 | 1 | -3/+15 |
| | | | | | | (1) Use Py_GetPythonHome() instead of getenv("PYTHONHOME"); (2) Mark Hammond's patch to search for .pyc/.pyo landmark as well. | ||||
* | Make sure that at least one digit has been consumed in atoi(). | Guido van Rossum | 1998-07-25 | 1 | -0/+4 |
| | |||||
* | Fix up the synopsis table stuff so it gets things right at each chapter, | Fred Drake | 1998-07-25 | 1 | -11/+17 |
| | | | | | | instead of stringing it all together. Yay! | ||||
* | Update @INC so we can 'require' modules in Doc/perl/. | Fred Drake | 1998-07-24 | 1 | -2/+4 |
| | | | | | Call the localmoduletable handling once the document is complete & synopses have been collected. | ||||
* | Added module synopsis support with one (big) caveat: All the modules are | Fred Drake | 1998-07-24 | 1 | -30/+142 |
| | | | | | listed in each chapter that has a \localmoduletable. This will be fixed, and everything else seems to be working fine. |