Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Undo a silly effect of a global substitution: the macintosh panic() | Guido van Rossum | 1998-08-05 | 1 | -1/+1 |
| | | | | | function had a reference to vPySys_WriteStderr(...) -- turn it back into fprintf(stder, ...). | ||||
* | build_html(): Simplify, so there's only one version of the latex2html | Fred Drake | 1998-08-05 | 1 | -14/+30 |
| | | | | | | | | | | | | | command line. l2hoption(): Convenience function, to write out an option to the aux. init. file only if set. Added --iconserver option to set the $ICONSERVER variable in latex2html; this requires the use of an auxillary init. file since this can't be initialized using a standard latex2html command-line option. So the aux. init. file is used for just about all the special options since it has to be written anyway when $ICONSERVER needs to be set. | ||||
* | Remove modified setting of $ICONSERVER; this isn't the right way to do it. | Fred Drake | 1998-08-05 | 1 | -2/+0 |
| | |||||
* | New meat. | Guido van Rossum | 1998-08-04 | 1 | -0/+6 |
| | |||||
* | typo (pwill -> will). | Guido van Rossum | 1998-08-04 | 1 | -1/+1 |
| | |||||
* | Changes for BeOS, QNX and long long, by Chris Herborth. | Guido van Rossum | 1998-08-04 | 12 | -14/+132 |
| | |||||
* | Changes for BeOS, QNX and long long, by Chris Herborth. | Guido van Rossum | 1998-08-04 | 12 | -1/+559 |
| | |||||
* | Added gethostbyname_ex(), which returns the same kind of data as | Guido van Rossum | 1998-08-04 | 1 | -37/+99 |
| | | | | | | | | gethostbyaddr(). (Plain gethostbyname() returns only the IP address.) This moves the code shared by gethostbyaddr() and gethostbyname_ex() to a subroutine. Original patch by Dan Stromberg; some tweaks by GvR. | ||||
* | get_chapter_id(): Separate two aspects of string replacement to allow the | Fred Drake | 1998-08-04 | 1 | -1/+2 |
| | | | | need for each to vary independently. | ||||
* | Fixed wrapping on some long lines. | Fred Drake | 1998-08-04 | 1 | -43/+50 |
| | |||||
* | Changes for BeOS, QNX and long long, by Chris Herborth. | Guido van Rossum | 1998-08-04 | 5 | -227/+465 |
| | |||||
* | Adding the BeOS port. More checkins to follow. | Guido van Rossum | 1998-08-04 | 22 | -0/+3749 |
| | |||||
* | Ok, we'll try this again: update the release date. ;-( | Fred Drake | 1998-08-04 | 1 | -1/+1 |
| | |||||
* | Update the documentation release number in RELEASE. | Fred Drake | 1998-08-04 | 1 | -1/+1 |
| | |||||
* | Support case insensitive treatment of os.environ keys on Windows and | Guido van Rossum | 1998-08-04 | 1 | -8/+7 |
| | | | | | | | | | | | DOS (as well as OS/2). I presume that making a call to putenv() with a lowercase key will actually do the right thing. I know this is so on Windows/DOS, and I expect it is so OS/2 -- but the old OS/2 code didn't assume this. (I don't know if the person who provided the OS/2 patch was clueless or just didn't care about DOS and Windows.) Also ripped out the support for pickling -- as of 1.5, this is no longer needed to make pickling work. | ||||
* | parser__pickler(): Use Py_DECREF() when reference is known to be non-NULL. | Fred Drake | 1998-08-04 | 1 | -1/+1 |
| | |||||
* | Latest version by The Dragon, who writes: | Guido van Rossum | 1998-08-04 | 1 | -66/+120 |
| | | | | | | | | I did some bugfixes, and fixed a major problem with the esmtp suport (I think the person who did that part misunderstood RFC1869) Some of the interface fer esmtp-related things has changed as a result. I also added some documentation to the SMTP class' docstring. | ||||
* | In BUILD_LIST, use PyList_SET_ITEM() instead of PyList_SetItem(); and | Guido van Rossum | 1998-08-04 | 1 | -3/+1 |
| | | | | get rid of redundant error check. | ||||
* | Patch by Jody Winston (with my changes) to add some of the "wait | Guido van Rossum | 1998-08-04 | 1 | -0/+151 |
| | | | | | status inspection" macros as functions: WEXITSTATUS(), WIFEXITED(), WIFSIGNALED(), WIFSTOPPED(), WSTOPSIG(), WTERMSIG(). | ||||
* | Better error messages when raising ValueError for int literals. (The | Guido van Rossum | 1998-08-04 | 1 | -8/+3 |
| | | | | | previous version of this code would not show the offending input, even though there was code that attempted this.) | ||||
* | Fix a potential problem in PyLong_FromString(): could fall through the | Guido van Rossum | 1998-08-04 | 1 | -0/+2 |
| | | | | for loop with z==NULL but continue to reference z later. | ||||
* | Better error messages when raising ValueError for int and long | Guido van Rossum | 1998-08-04 | 1 | -6/+9 |
| | | | | | literals. (The previous version of this code would not show the offending input, even though there was code that attempted this.) | ||||
* | Fix a memory leak -- the cached values of __getattr__ etc. were never | Guido van Rossum | 1998-08-04 | 1 | -0/+3 |
| | | | | freed. | ||||
* | Jim A's new versions of these | Guido van Rossum | 1998-08-03 | 8 | -1540/+1818 |
| | |||||
* | Patch by Ron Klatchko: fix invariant in _unread(). Also fixed | Guido van Rossum | 1998-08-03 | 1 | -3/+9 |
| | | | | readlines() to behave like it should (return lines with "\n" appended). | ||||
* | 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. |