summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Oops, forgot to remove the individual module indexes for lib & mac nowFred Drake1999-05-271-3/+1
| | | | that there's a Global Module Index; there can be only one!
* Add <hr> after top navigation bar; now looks more like the rest of theFred Drake1999-05-271-0/+1
| | | | navigation bars in the HTML output.
* Hack: make sure LaTeX2HTML doesn't change -- to - in mkhowtoFred Drake1999-05-271-2/+2
| | | | description.
* Document the "pid" attribute of the Popen3 class.Fred Drake1999-05-271-9/+12
| | | | | Use memberdesc instead of datadesc to document object attributes. This gets the index right.
* Typo reported by Gerry Wiener <wiener@rap.ucar.edu>:Fred Drake1999-05-271-1/+1
| | | | | | | items -> item The returned list will then have one more items than the number of non-overlapping occurrences of the separator in the string.
* Move some \index entries around so we can avoid using empty comments;Fred Drake1999-05-261-31/+25
| | | | | | empty comments trigger a bug in LaTeX2HTML. Problem reported by Gerry Wiener <gerry@ucar.edu>.
* Change the example of configuring for large file support under SolarisFred Drake1999-05-261-1/+1
| | | | | to use `getconf LFS_CFLAGS`. Steve Clift (the author of the section and large file support) agrees that this is the right thing to do.
* Eugene Dvurechenski <jno@glas.net> says:Barry Warsaw1999-05-261-0/+1
| | | | | there is "su" top level domain still maintained in ex-USSR. at least "*.msk.su" zone (Moscow, USSR) is still in use.
* "proces" --> "process"; reported by Gerry Wiener <gerry@ucar.edu>.Fred Drake1999-05-251-2/+5
| | | | Added some index entries.
* (py-electric-backspace): I'm not sure this function should be specialBarry Warsaw1999-05-241-4/+5
| | | | | | casing when py-honor-comment-indentation is nil, but this could be a religious issue with some. Seems to me we should still be dedenting such comment lines one level.
* (py-parse-state): When running under Emacs -- which doesn't haveBarry Warsaw1999-05-241-1/+7
| | | | | | buffer-syntactic-context -- just short circuit the TQS test by jumping to point-min and doing the test from there. For long files, this will be faster than looping with a re-search-backwards.
* (py-statement-closes-block-p): Add a py-goto-initial-line which fixesBarry Warsaw1999-05-241-0/+1
| | | | | | | | | | | | | | | indentation when the return value is a multiline sexp: def bug(): try: if 2>1: return (11+ 12) else: #XXX return 12 except: return 13
* Oliver Steele writes:Just van Rossum1999-05-211-2/+20
| | | | | | | """Despite the best intentions of Anarchie and Internet Explorer, I often end up with Python source files (and other text files that I'd like to edit with PythonIDE) that use '\n' instead of '\r' as a line separator (and therefore sh
* On HP-UX, -rpath is another option taking an argument that needs to goGuido van Rossum1999-05-211-0/+1
| | | | to the libs variable. Reported by Albert Chin-A-Young.
* Andy Dustman writes:Guido van Rossum1999-05-211-0/+1
| | | | | | | | | I noticed while watching (with lsof) my forking SocketServer app running that I would get multiple processes listening to the socket. For the most part, this doesn't hurt things, but if you terminate the server, this can prevent it from restarting because it cannot bind to the port due to any running children which also have the socket open. The following one-liner fixes this.
* Rename History to IdleHistory.Guido van Rossum1999-05-212-74/+7
| | | | Add isatty() to pseudo files.
* Make initial stack viewer widerGuido van Rossum1999-05-211-1/+1
|
* New wishesGuido van Rossum1999-05-211-2/+7
|
* Much improved autoindent and handling of tabs,Guido van Rossum1999-05-213-65/+242
| | | | by Tim Peters.
* Map .js to application/x-javascript.Fred Drake1999-05-201-0/+1
|
* Enhanced docstring and some comments.Fred Drake1999-05-191-8/+21
| | | | | | _begin_macro_rx: Fixed RE that didn't properly allow a space after the name of the macro. This affects the conversion of the tutorial.
* Modify to perform "---" to "&mdash;" conversion outside ofFred Drake1999-05-181-7/+16
| | | | | verbatim-like environments. The list of verbatim-like environments is a defined by a variable in main().
* Remove the "---" to "&mdash;" conversion; this is wrong in verbatimFred Drake1999-05-181-1/+0
| | | | environments. Move the conversion to esis2sgml.py.
* SET_LINE_NO ==> SET_LINENOFred Drake1999-05-171-1/+1
| | | | Reported by Corran Webster <cwebster@math.tamu.edu>.
* Added "Learning Python" to the books section.Fred Drake1999-05-171-25/+23
| | | | Updated comments on the documentation.
* Added paragraph explaininng the text/binary flavors of some methods,Fred Drake1999-05-171-0/+5
| | | | to make it easier for people to find what they're looking for.
* Document \e, \url.Fred Drake1999-05-171-2/+25
| | | | | | Add a few more comments about mkhowto. Based on comments from Albert <hat@se-46.wpa.wtb.tue.nl>.
* Don't \input boilerplate.tex, fill in the real stuff. 3rd partyFred Drake1999-05-171-1/+18
| | | | documents probably aren't written by Guido. ;-)
* Attempted to clarify usage of the \declaremodule macro somewhat;Fred Drake1999-05-171-7/+25
| | | | | | | | Michael Hudson's documentation for bytecodehacks exhibits incorrect usage. Added some comments about how to set up the mkhowto script for use with documents not contained in the documentation source tree.
* define_module(): Check the module type for validity before using.Fred Drake1999-05-171-0/+6
| | | | | This reflects the changes made in ../texinputs/python.sty.
* \declaremodule: Typo.Fred Drake1999-05-171-1/+1
|
* \declaremodule: Make this more robust. Only attempt to add an indexFred Drake1999-05-171-1/+6
| | | | | | | | | | | | entry based on the module type if the type is known. Otherwise, spit out a warning the the module type parameter was bad and generate a "plain" index entry. Without this, the bad module type was emitted as text. Problem noticed by processing Michael Hudson's docs for bytecodehacks.
* The conversion temporary files should not be ignored here anymore,Fred Drake1999-05-131-13/+0
| | | | | since they shouldn't be here. Only ignore the output tarballs in this directory.
* POP3.uidl(): Update description based on comments from Piers LauderFred Drake1999-05-131-3/+3
| | | | <piers@cs.su.oz.au>.
* POP3.uidl(): Update docstring based on comments from Piers LauderFred Drake1999-05-131-2/+3
| | | | <piers@cs.su.oz.au>.
* PyCObject_FromVoidPtr(): Clarify that the destr function will only beFred Drake1999-05-131-1/+2
| | | | called on destruction is non-NULL.
* Small nits around some of the index entries.Fred Drake1999-05-131-72/+68
| | | | | When refering to chapters, use \ref, don't hardcode the chapter number.
* make_index_entry(): Remove. Not only did this override theFred Drake1999-05-131-88/+111
| | | | | | | | | | | | | | | | | | | | | | | l2hinit.perl version of the function (which overrode a version in latex2html), but do_cmd_index() was overridden. Since do_cmd_index() was the only caller, we can trash this. define_indexing_macro(): New function used during setup to support more dynamic dispatch for indexing. process_index_macros(): New function; implement dynamic dispatching of indexing support functions, allowing many targets used in indexing to be shared by multiple index entries. I.e., something like \index{foo}\bifuncindex{bar} can now share a single target anchor. These indexing changes reduce the amount of clutter in the generated HTML files. In the reference manual, this cuts the number of targets by 44%. Targets are less affected when generated by environments rather than macros.
* make_index_entry(): Remove. This is overridden in python.perl andFred Drake1999-05-131-12/+0
| | | | | was never called in this incarnation. The other version is simpler as well.
* Removed old comments.Fred Drake1999-05-131-14/+0
|
* Change the look of \seemodule output to fit in better.Fred Drake1999-05-112-14/+24
|
* Move the "See also:" section so it appears are part of the top HTMLFred Drake1999-05-111-10/+8
| | | | page of the section.
* Added module references; minor grammatical fixes.Fred Drake1999-05-113-4/+20
| | | | All suggested by Eric Raymond.
* Added missing comma, reported by Eric Raymond.Fred Drake1999-05-111-3/+2
|
* Lots of adjustments to deal with the document content now being storedFred Drake1999-05-101-91/+94
| | | | in a fragment rather than the main document object.
* Some more fixes.Fred Drake1999-05-101-11/+16
| | | | Add controls for some of the esoteric indexing macros.
* Fixed some index entries.Fred Drake1999-05-101-36/+36
| | | | | | In the __coerce__ description, None should be returned if the conversion is *impossible*, not *possible*. Reported by Robert Kern <kernr@ncifcrf.gov>.
* ExtendedEsisBuilder.push(): Override inherited definition. We don'tFred Drake1999-05-071-3/+17
| | | | | | want to push nodes into the document, but into a document fragment, since we're not necesarily working with something that's well-formed.
* Fix some bugs introduced in the previous checkin.Fred Drake1999-05-071-9/+13
|
* Define & use a Conversion object. It's still really ugly, but atFred Drake1999-05-071-227/+255
| | | | least there's a token object in here now! ;-)