summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* A bunch of docstring fixes.Barry Warsaw1999-11-281-23/+22
|
* look for builtins before stuff on the path.Greg Stein1999-11-241-1/+1
|
* add loading of dynamic library modules.Greg Stein1999-11-241-4/+18
|
* rewrite_descriptor(): Fixup conversion of arguments (simpler).Fred Drake1999-11-231-12/+35
| | | | | | | | join_adjacent_elements(): Hack to merge adjacent instances of <option>; the source \programopt with GNU-style long options created problems with LaTeX2HTML; this removes the evil workaround, which should never be necessary from structured documents(!).
* Don't rename \var to <varname>; DocBook is too verbose here.Fred Drake1999-11-231-4/+9
| | | | | | | | Do adopt DocBook's <command>, <option>, <envar> names for \program, \programopt, \envvar. Add \filenq --> <filename quote="no"> (it has to go somewhere, at least for now).
* turn SysPathImporter into PathImporter.Greg Stein1999-11-201-6/+7
|
* remove the __version__ global.Greg Stein1999-11-201-2/+0
|
* only put __path__ into package modules.Greg Stein1999-11-201-2/+1
|
* shift code from DirectoryImporter out to a common area.Greg Stein1999-11-201-64/+231
| | | | | | | | | | | remove use of "os" module (bootstrap issues) and go to the underlying platform-specific modules fix problem in _compile() (trapped wrong error on permission issues) add SysPathImporter and BuiltinImporter put __file__ into modules imported from the filesystem. [backwards compat] put __path__ into modules [backwards compat] oops: it is doing this for all modules, not just packages. comment and tweak to the PackageArchiveImporter
* Moved all the imports to the top.Fred Drake1999-11-191-9/+5
| | | | | | | Use the methods on the AST object instead of module-level functions; these have been implemented for a couple of versions now, and are already used in the module documentation in preference to the functions.
* Set the date and version to reflect the actual status, not the lastFred Drake1999-11-181-2/+2
| | | | released status. Has to be changed just before publishing anyway.
* When generating the top-level index to the documents, make sure someFred Drake1999-11-181-1/+3
| | | | | | oddball things from the LaTeX get translated to rational values. This is mostly to keep things from looking broken in a development tree when they're not.
* Patches by Kannan Vijayan:Guido van Rossum1999-11-181-4/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | new: readline.get_begidx() -> int gets the beginning index in the command line string delimiting the tab-completion scope. This would probably be used from within a tab-completion handler readline.get_endidx() -> int gets the ending index in the command line string delimiting the tab-completion scope. This would probably be used from within a tab-compeltion handler readline.set_completer_delims(string) -> None sets the delimiters used by readline as word breakpoints for tab-completion readline.get_completer_delims() -> string gets the delimiters used by readline as word breakpoints for tab-completion fixed: readline.get_line_buffer() -> string doesnt cause a debug message every other call
* Removed last XXX comment; no further action needed on this one.Fred Drake1999-11-171-4/+3
|
* Complete the integration of Sam Bayer's fixes.Guido van Rossum1999-11-172-912/+10
|
* Changed fron importing wcnew back to webchecker.Guido van Rossum1999-11-172-6/+2
|
* Integrated Sam Bayer's wcnew.py code. It seems silly to keep twoGuido van Rossum1999-11-171-46/+185
| | | | | files. Removed Sam's "SLB" change comments; otherwise this is the same as wcnew.py.
* # *NOT* by Sam Bayer: reindented to use 4 spaces like the rest here,Guido van Rossum1999-11-171-204/+203
| | | | # and removed trailing whitespace.
* Samuel L. Bayer:Guido van Rossum1999-11-171-4/+12
| | | | | | | | | - same trick with "import wcnew; webchecker = wcnew" as above - updated readhtml() method to handle pair representation; used new name suppression infrastructure from wcnew.py to suppress processing name anchors [And untabified --GvR]
* Samuel L. Bayer:Guido van Rossum1999-11-171-17/+46
| | | | | | | | | | | | | | | | | | | - added -t and -a arguments - added "import wcnew; webchecker = wcnew" in place of "import webchecker" (I assume that if you're happy with the changes, you'll just replace webchecker.py with wcnew.py, but if I were to do that, the diffs would be incomprehensible) - fixed buggy -v argument (I think you got out of sync with the way verbosity was handled in webchecker vs. wcgui between 1.5 and 1.5.2) - made -v actually do something by adding a call to c.setflags() (probably the same problem as above) - updated references to URLs to accommodate wcnew.py's pair representation; added appropriate calls to format_url() to handle display; added argument to ListPanel() initialization to provide access to format_url() [And untabified --GvR]
* Samuel L. Bayer:Guido van Rossum1999-11-171-154/+178
| | | | | | | | | | - same fixes from webchecker.py - incorporated small diff between current webchecker.py and 1.5.2 - fixed bug where "extra roots" added with the -t argument were being checked as real roots, not just as possible continuations - added -a argument to suppress checking of name anchors [And untabified --GvR]
* Samuel L. Bayer:Guido van Rossum1999-11-171-1/+6
| | | | | | | | - forced new done origins to set errors if they're in self.bad (fixes bug where only the first of a number of errorful references to a link is reported under some circumstances) - suppressed adding duplicates to self.todo list (cleans up printout in wcgui details)
* Moshe Zadka writes: When deploying SimpleHTTPServer, I noticed aGuido van Rossum1999-11-161-1/+2
| | | | problem: it does not encode/decode the urls, which is wrong.
* Hint for C++ users on AIX by Gary Duzan added.Guido van Rossum1999-11-161-0/+3
|
* The 'test' target ought to depend on 'all', not just on python$(EXE)Guido van Rossum1999-11-161-1/+1
| | | | -- otherwise shared libraries might not be rebuilt.
* Patch by Vladimir Marangozov, inspired by a bug report from GaryGuido van Rossum1999-11-162-150/+192
| | | | | | | Duzan, for AIX, to support C++ objects with static initializers, when using the genuine IBM C++ compiler (namely xlC/xlC_r). See accompanying patches to acconfig.h and importdl.c.
* Changes resulting from patch to acconfig.h.Guido van Rossum1999-11-161-0/+4
|
* Patch by Vladimir Marangozov, inspired by a bug report from GaryGuido van Rossum1999-11-161-0/+4
| | | | | | | Duzan, for AIX, to support C++ objects with static initializers, when using the genuine IBM C++ compiler (namely xlC/xlC_r). See accompanying patches to configure.in and importdl.c.
* Patch by Vladimir Marangozov, inspired by a bug report from GaryGuido van Rossum1999-11-161-1/+7
| | | | | | | Duzan, for AIX, to support C++ objects with static initializers, when using the genuine IBM C++ compiler (namely xlC/xlC_r). See accompanying patches to configure.in and acconfig.h.
* Change the last PyErr_Format %s format to %.400s.Guido van Rossum1999-11-151-1/+1
|
* Preliminary documentation for turtle module (Tk), by Moshe Zadka.Fred Drake1999-11-151-0/+160
| | | | | Fixed up a few TeXisms and markup nits, but otherwise unchanged. Somewhat raw.
* Correct typo in module doc string doscovered by Jonathan Giddy.Guido van Rossum1999-11-151-1/+1
|
* Added request to please not send HTML email to the newsgroup/mailingFred Drake1999-11-121-0/+4
| | | | list or to python-docs.
* Document \citetitle and \programopt.Fred Drake1999-11-101-0/+9
|
* Use \citetitle and \programopt as appropriate.Fred Drake1999-11-1013-144/+149
|
* Use \citetitle as appropriate.Fred Drake1999-11-106-44/+47
|
* Use \citetitle in several places, and \programopt where appropriate.Fred Drake1999-11-101-20/+23
|
* Use \citetitle in several places.Fred Drake1999-11-101-14/+18
|
* Use \citetitle instead of \emph.Fred Drake1999-11-091-4/+4
|
* Use \citetitle in one place.Fred Drake1999-11-093-3/+3
|
* Use the new markup as apporpriate.Fred Drake1999-11-091-17/+17
|
* Use \programopt in one place.Fred Drake1999-11-091-7/+7
|
* Added citetitle and programopt.Fred Drake1999-11-091-1/+8
| | | | | | Made var get renamed to varname (more like DocBook). Other names should probably be changed as well; still waiting for the DocBook book to arrive.
* Use \programopt in one place.Fred Drake1999-11-092-2/+3
|
* Missed a couple of program options that had been marked by \code.Fred Drake1999-11-091-4/+4
|
* Use \programopt in one place.Fred Drake1999-11-091-1/+1
|
* Use \citetitle and \programopt as appropriate.Fred Drake1999-11-091-17/+18
|
* \programopt: New macro, used to mark command-line parameters in theFred Drake1999-11-091-0/+5
| | | | | | | | | text. Looks like \program. \citetitle: New macro, used to mark titles of cited works (like the names of the Python manuals). Accepts & discards an optional parameter that is only used by the HTML formatter. Looks like \emph.
* do_cmd_programopt(): New function, similar to do_cmd_program().Fred Drake1999-11-091-0/+19
| | | | | | | | do_cmd_citetitle(): New function. Extracts one optional and one required parameter. If the optional one is provided, it is used a URL (or relative URL) and the text of the required parameter is turned into a hyperlink.
* Oops. Remove some garbage from the doc string that was accidentallyGuido van Rossum1999-11-091-12/+0
| | | | | checked in due to a patching mishap. Reported by Detlef Lannert; thanks!