summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add an explanation about what the example does and doesn't do.Fred Drake1998-12-221-2/+7
| | | | | Fix an appearantly new behavior with latex2html with quoting. (Good incentive to work on the SGML conversion! ;)
* do_cmd_rfc(): Make the "RFC ###" a hyperlink to the master RFCFred Drake1998-12-221-4/+7
| | | | repository.
* Added libnetrc.tex and libshlex.tex to LIBFILES.Fred Drake1998-12-221-1/+3
|
* Add warning to Netrc's docstring that it is obsolete -- use the netrcGuido van Rossum1998-12-221-0/+2
| | | | | module instead. (The main advantage of the latter is that it comes with documentation.)
* Added shlex and netrc modules; added warning about urllib changeGuido van Rossum1998-12-221-0/+10
| | | | affecting subclasses (which Jeremy just found out).
* Optimistically, we label this as ready to go today.Guido van Rossum1998-12-221-16/+5
| | | | | Also commit several improvements in the descriptions of the QNX and BeOS port, both by Chris Herborth.
* New test function by Sjoerd, adding -t option.Guido van Rossum1998-12-221-9/+24
|
* The usual.Guido van Rossum1998-12-226-27/+45
| | | | | | # Message to all python-checkins readers: we have a problem with the # CVS mirroring software. You can't check out the latest changes yet. # We hope to have fixed this by noon EST today.
* Fix for modulefinder so that it prints all modules an unknown moduleGuido van Rossum1998-12-221-2/+6
| | | | was referenced in instead of only the last. (Sjoerd Mullender)
* Last-minute oopsie by Chris H. (Chris, please check that I did this right!)Guido van Rossum1998-12-221-2/+2
|
* Last-minute update by Chris H.Guido van Rossum1998-12-221-8/+12
|
* Applied Fred's patch to fix the bugs that John Skaller noticed.Greg Ward1998-12-221-6/+14
|
* Adding shlex and netrc by Eric Raymond.Guido van Rossum1998-12-222-0/+212
|
* Adding libshlex and libnetrc by Eric Raymond.Guido van Rossum1998-12-223-0/+126
|
* A few other docstring fixes, most importantly to be a little nicer toBarry Warsaw1998-12-221-54/+59
| | | | Emacs ;-)
* Nothing earthshattering, just some fixes to typos and other formattingBarry Warsaw1998-12-221-50/+53
| | | | bugs in various docstrings.
* News for 1.5.2b1. Moved news before 1.5.1 to HISTORY.Guido van Rossum1998-12-211-2255/+258
|
* New names. Keep those contributions coming!Guido van Rossum1998-12-211-1/+10
|
* Moved history up to and including 1.5.1 here.Guido van Rossum1998-12-211-3/+2258
|
* Get rid of python_nt.def -- it's no longer needed!Guido van Rossum1998-12-211-4/+0
|
* I can't seem to do anything right :-)Guido van Rossum1998-12-211-1/+1
| | | | | As Chris H. points out, I should have added 'extern' to the declaration of _PyThreadState_Current. Here it is.
* Improve comment for PyImport_Import() as suggested by Bill Tutt.Guido van Rossum1998-12-211-1/+4
|
* Thanks to Chris Herborth, the thread primitives now have proper Py*Guido van Rossum1998-12-2120-548/+507
| | | | | names in the source code (they already had those for the linker, through some smart macros; but the source still had the old, un-Py names).
* Chris H. adds MACHDEP=beos to the CCSHARED variableGuido van Rossum1998-12-211-1/+1
|
* Renaming Lib/plat-beos1 to Lib/plat-beos at Chris Herborth's requestGuido van Rossum1998-12-211-133/+0
|
* Suggestion by Tim Peters clarifying what "before global" means.Guido van Rossum1998-12-211-1/+2
| | | | | (Also added an XXX comment requesting clarification of module initialization -- TBD later.)
* Clarify descriptions of some operations; it's not always clear thatFred Drake1998-12-211-103/+107
| | | | | strings are not actually modified. Problem reported by Dr. Peter Stoehr <peter.stoehr@weihenstephan.org>.
* Add a bunch of index entries related to retrieving information fromFred Drake1998-12-211-0/+6
| | | | the process table.
* Marc-Andre Lemburg notes about statparse():Guido van Rossum1998-12-211-1/+1
| | | | | | | | | | | | | | | | | """ The message ID is returned lowercased and there is no way to access the original ID the server sent. Now at least some news servers are very picky about the case of the ID and return errors when fetching articles with mixed case given a lowercased version of the ID. The solution is simple: remove the string.lower() call. """ (I might add that the lowercasing was probably introduced as a result of sloppy copy-and-paste coding; there's a string.lower in a similar piece of code a bit higher in the source, that makes more sense -- it's lowercasing the group name.)
* Add dummy variable to avoid optimizer bug on OS/2 -- patch by Jeff Rush.Guido van Rossum1998-12-211-0/+2
| | | | (AMK: you should probably copy this into your patch set for pcre.)
* Use PyThreadState_GET() macro.Guido van Rossum1998-12-212-2/+2
|
* Make sure that -t and -tt also work on strings passed to compile().Guido van Rossum1998-12-211-0/+7
|
* 100 bottles of beer on the wall example.Guido van Rossum1998-12-211-0/+14
| | | | | | After a version by Fredrik Lundh that I found on the web somewhere. (I like mine better, but of course that may have to do with my alcohol consumption. :-)
* Add macro version of PyThreadState_GET(). This usesGuido van Rossum1998-12-211-0/+11
| | | | _PyThreadState_Current, defined in pystate.c.
* Make current_tstate a global, _PyThreadState_Current. This is toGuido van Rossum1998-12-211-10/+10
| | | | support a macro in pystate.h.
* Add XXX comment about the need to add a dump() method to the TextGuido van Rossum1998-12-211-0/+1
| | | | widget -- no time to do this right now.
* Add XXX comment about a test that doesn't seem right -- no time toGuido van Rossum1998-12-211-0/+1
| | | | explore this now.
* A mod whose author I forget. (I must've mislaid the email. If it'sGuido van Rossum1998-12-211-8/+19
| | | | | | | yours, please let me know for propoer acknowledgement.) This avoids recompiling files that haven't changed; it adds a -f option to force recompilation.
* Sjoerd Mullender:Guido van Rossum1998-12-211-24/+34
| | | | | | | | - Fixed a bug where a syntax error was reported when a document started with white space. (White space at the start of a document is valid if there is no XML declaration.) - Improved the speed quite a bit for documents that don't make use of namespaces.
* replace missing zalloc initialization (test_zlib now runsJeremy Hylton1998-12-211-0/+1
| | | | successfully)
* remove debugging fprintf (should have checked this before previousJeremy Hylton1998-12-211-2/+0
| | | | checkin)
* Typo discovered by Just.Guido van Rossum1998-12-211-1/+1
|
* Use __stdin__ instead of stdin to derive FileType -- safer againstGuido van Rossum1998-12-191-1/+1
| | | | assignments.
* Fred's sysconfig module.Greg Ward1998-12-181-0/+106
|
* patches from AndrewJeremy Hylton1998-12-181-23/+51
| | | | | | | | NOTE: There is still a bug of some sort in the behavior of zlib. In at least one case, inflate returns Z_OK (which is typically interpreted to mean that more output space is needed) when it has finished inflating a buffer. This has been reported as a bug to the zlib maintainers; we may need to change the Python interface.
* Chris H. writes:Guido van Rossum1998-12-181-1/+1
| | | | | If we're going to put the PyOS_strtol() proto in intobject.h we should include it here or the symbol isn't exported on PowerPC.
* Improved instructions by Chris H.Guido van Rossum1998-12-181-4/+26
|
* Initial checkin of distutils source files.Greg Ward1998-12-182-0/+301
|
* Sjoerd Mullender writes:Guido van Rossum1998-12-182-111/+180
| | | | | | | Here is my current version of xmllib.py and the documentation. This version has some API changes with respect to the version currently in Python (also the one in 1.5.2a). This version supports XML namespaces.
* When _PyString_Resize() reports failure, the variable referring to theFred Drake1998-12-181-5/+0
| | | | | string we wanted to resize is set to NULL. Don't Py_DECREF() those variables! (5 places)