summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Adding the icons used by latex2html output to the CVS tree.Guido van Rossum1997-11-2531-0/+94
|
* Ignore html files generated by webmaker.Guido van Rossum1997-11-251-0/+1
|
* Augmented the script so that (at CNRI anyway) it also invokes webmakerGuido van Rossum1997-11-251-1/+12
| | | | to create the HTML.
* Simple index for the reference manuals (mostly for use on the WindowsGuido van Rossum1997-11-252-0/+50
| | | | platform).
* Updated to the most pressing 1.5 issues.Guido van Rossum1997-11-2513-4516/+4474
|
* Drop Capitalized Important Words.Guido van Rossum1997-11-251-1/+1
|
* Several changes, e.g. restructuring of the intro to be closer to whatGuido van Rossum1997-11-252-472/+268
| | | | it ought to be. Maybe the last checkin before 1.5b1 is released.
* Remove hyperlink to time-sensitive Python release info.Guido van Rossum1997-11-251-2/+2
|
* WISE installer source for Python 1.5Guido van Rossum1997-11-251-0/+1104
|
* Added pypcre.c module.Guido van Rossum1997-11-252-0/+10
|
* Added the "italic correction" command ("\/") to the list of ignored commands.Fred Drake1997-11-252-2/+2
| | | | | There is at least one of there in the library reference, and this reduces the warning count. We *do* know what to do with it!
* Removed leading comment about this being "introductory" documentation;Fred Drake1997-11-252-4/+12
| | | | | | | | compared to most, I'd say this section is fairly thorough. Fixed \indexsubitem definitions for symbol and token module sub-documents. Perhaps these should be moved to their own files, but they're awefully small.
* Get rid of math mode in some places.Guido van Rossum1997-11-2512-18/+18
|
* Don't use $math$ mode to typeset a simple '>' sign. Use \code, not \samp.Guido van Rossum1997-11-252-2/+2
|
* Remove strange use of $math$ mode to produce a backslash.Guido van Rossum1997-11-252-2/+4
|
* Oops, did the previous delete the wrong way.Guido van Rossum1997-11-252-2/+0
|
* Get rid of last traces of module 'audio'Guido van Rossum1997-11-243-123/+2
|
* Added "-n file" option to only print files newer than the given file.Guido van Rossum1997-11-241-4/+37
|
* Use fuzzy comparison from test_support to compare outcome ofGuido van Rossum1997-11-241-1/+4
| | | | pow(x,y,z) to pow(x,y)%z.
* New names...Guido van Rossum1997-11-241-0/+3
|
* Add fileinput.Guido van Rossum1997-11-242-0/+4
|
* Replace plat-os2 with plat-win, per Jeff Rush' suggestion.Guido van Rossum1997-11-241-1/+1
|
* Trivial change in prompt label suggested by Case Roole.Guido van Rossum1997-11-241-1/+1
|
* Change the option used on Linux to export all symbolsGuido van Rossum1997-11-242-3/+3
| | | | | | from the main program to shared libraries. On mklinux, the old '-rdynamic' doesn't work; the new '-Xlinker -export-dynamic' works both there and on Intel Linux platforms.
* Done a sort -u on the symbols (and replaced all tabs with spaces).Guido van Rossum1997-11-241-368/+365
|
* Oops, the sort took some whitespace into account.Guido van Rossum1997-11-241-5/+4
|
* Done a sort -u on the symbols.Guido van Rossum1997-11-241-295/+284
|
* os2 patch by Jeff RushGuido van Rossum1997-11-221-1/+2
|
* ignore various VC++ turdsGuido van Rossum1997-11-221-0/+5
|
* Files specific to Visual Age C for OS/2 -- by Jeff RushGuido van Rossum1997-11-226-0/+4846
|
* Added Jeff Rush' commentsGuido van Rossum1997-11-221-0/+39
|
* win -> plat-winGuido van Rossum1997-11-221-3/+3
|
* Add PyImport_Inittab and PyOS_AfterForkGuido van Rossum1997-11-221-0/+2
|
* os2 patch by Jeff RushGuido van Rossum1997-11-2212-28/+459
|
* bind_class should return a valueGuido van Rossum1997-11-221-1/+1
|
* New address parser by Ben Escoto replacesGuido van Rossum1997-11-221-125/+247
| | | | Sjoerd Mullender's parseaddr()
* Use fstat if we can; write MAGIC into file last.Guido van Rossum1997-11-221-2/+8
|
* Redone the _tkinter configuration section with support for popular packages.Guido van Rossum1997-11-221-15/+41
|
* New tkappinit supporting several popular packages.Guido van Rossum1997-11-221-15/+36
|
* A new standard module, as discussed on comp.lang.python, to simplifyGuido van Rossum1997-11-211-0/+254
| | | | | | | | | | | | | | | | | the writing of filters. Typical use is: import fileinput for line in fileinput.input(): process(line) This iterates over the lines of all files listed in sys.argv[1:], defaulting to sys.stdin if the list is empty or when a filename is '-'. There is also an option to use this to direct the output back to the input files.
* Add a pointer back to the wizard in the "compat" output.Guido van Rossum1997-11-211-1/+3
|
* PySocketSock_methods: Added "connect_ex" so the method can actually beBarry Warsaw1997-11-201-0/+1
| | | | called!
* A comparison with several other languages that also appears in theGuido van Rossum1997-11-201-0/+129
| | | | Handbook of Object Technology.
* Adding Martin von Loewis' documentation for his locale module.Guido van Rossum1997-11-207-1/+383
|
* Add description for some modules that have been added since this introGuido van Rossum1997-11-202-0/+42
| | | | section was last revised...
* Add description for Queue; fix typo (whichdbm should be whichdb).Guido van Rossum1997-11-202-2/+8
|
* Plug memory leak in Py_BuildValue when using {...} to construct dictionaries.Guido van Rossum1997-11-201-3/+5
|
* (Queue.Empty): When class based exceptions are in force, derive thisBarry Warsaw1997-11-201-116/+130
| | | | | | | | class from the standard base exception Exception. Otherwise define Queue.Empty as a string exception. (Queue): 8-space to 4-space indentation conversion. Also, basically recast all method comments into docstrings.
* libqueue.tex: Documentation for the Queue.py module.Barry Warsaw1997-11-205-1/+179
| | | | | | | Makefile: Add dependency on libqueue.tex lib.tex: Place the libqueue.tex documentation just after libthread.tex since Queue depends on thread support in Python.
* Dang. Formatting glitch.Guido van Rossum1997-11-201-2/+2
|