summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* add_module_idx(), add_idx_hook():Fred Drake1999-01-191-2/+2
| | | | | | Change the message printed before running buildindex.py; "Doing the index..." wasn't clear and could be misinterpreted with an inappropriate mindset. ;-)
* Enable os.path as a mostly-normal submodule, including "from os.pathFred Drake1999-01-191-0/+2
| | | | import isfile" and "import os.path".
* (py-mode-map): Removed special bindings for C-m and C-j toBarry Warsaw1999-01-191-3/+0
| | | | | | | | | | | py-newline-and-indent. These ought to get picked up by the mapcar that follows; any existing binding to newline-and-indent gets shadowed to py-newline-and-indent. This will break some people who, e.g. bind C-m or C-j to newline but still want these bound to py-newline-and-indent in Python mode. On the other hand, the forced binding pisses off Emacs diehards. So consider this experimental and see if any tall Dutch guys complain :-)
* (py-narrow-to-defun): New command (bound to C-x n d) which mimics theBarry Warsaw1999-01-181-0/+15
| | | | | | standard narrow-to-defun but works with Python classes and methods. With no arg, narrows to most enclosing def/method. With C-u arg, narrows to most enclosing class.
* Added 'warn' method.Greg Ward1999-01-181-1/+10
|
* Fix typo spotted by Jeff MacDonald <jam@ans.net>.Fred Drake1999-01-181-2/+2
|
* Only deiconify when iconic.Guido van Rossum1999-01-182-4/+8
|
* MiscGuido van Rossum1999-01-181-0/+3
|
* Interface to GetIcon, PlotIcon and friends.Jack Jansen1999-01-183-0/+828
|
* Added doc strings to the exception classes.Guido van Rossum1999-01-151-3/+29
| | | | Contributed by Blake Winton, but considerably edited.
* Patch by Piers Lauder: make exceptions classes.Guido van Rossum1999-01-151-14/+13
| | | | Take opportunity to add more explanatory messages to exceptions.
* (py-electric-delete): Implement the XEmacs 21 blessed way of checkingBarry Warsaw1999-01-151-3/+4
| | | | for delete forwardness.
* Bruce Wheeler quotes Mark Hammond with a different version of theGuido van Rossum1999-01-141-1/+1
| | | | last patch to this file: use pathLen, not bufSize, as the initializer.
* Add a "tarball" target.Fred Drake1999-01-141-0/+3
|
* Adjust so that we are no longer using special entities for well-knownFred Drake1999-01-141-19/+21
| | | | names. These are too much of a pain for occaissional authors.
* for method getaddrlist(): Added a note clarifying that all namedBarry Warsaw1999-01-141-0/+4
| | | | headers and their continuation lines are parsed.
* Shorten the name of the <rfc> "number" attribute to "num".Fred Drake1999-01-141-1/+1
|
* Make <rfc> no longer an empty element but a container. The textFred Drake1999-01-141-0/+44
| | | | | | | | | | | | currently generated by the LaTeX and LaTeX2HTML processes is generated here as well, making it more flexible in the SGML version. Reduce the <args> element so that <optional> goes away; just use square brackets to indicate what's optional. This makes it easier to read than the LaTeX, and the processor can do any checking it needs to in order to make sure it's legit. Possible shortcoming: DSSSL processors may need more explicit markup. Can probably hack around it for this case, but we'll see.
* Test the rfc822.py module. Contains just a few simple cases, and someBarry Warsaw1999-01-142-0/+83
| | | | troublesome ones encountered on the c.l.py list.
* Message.getaddrlist(): This now handles multiple occurances of theBarry Warsaw1999-01-141-12/+21
| | | | | | | | | | | | | | | | | | named header, so that if a message has, e.g. multiple CC: lines, all will get returned by the call to getaddrlist(). It also correctly handles addresses which show up in continuation lines. AdderlistClass.__init__(): Added \n to self.CR which fixes a bug that sometimes, an address would contain a bogus trailing newline. Message.getaddress(): In final else clause, added a test for the character we're at being in self.specials. Without this, such characters never get consumed and we infloop. Case in point (as posted to c.l.py): To: <[smtp:dd47@mail.xxx.edu]_at_hmhq@hdq-mdm1-imgout.companay.com> ----------------------------^ otherwise we'd infloop here
* Several new functions to re-write tables to be at least partlyFred Drake1999-01-141-0/+112
| | | | | conformant with the OASIS Exchange model. There's a little more massage left to do, but not much.
* Should include "Python.h", not <Python.h> -- it's not a standardGuido van Rossum1999-01-141-1/+1
| | | | header file (yet :-).
* Jim Ahlstrom patch: Watcom chokes on a long expression in c_asinh().Guido van Rossum1999-01-141-1/+5
| | | | Break it up.
* Jim Ahlstrom patch: the module doc string is too long for 16-bit VCGuido van Rossum1999-01-141-1/+5
| | | | 1.5. Omit the second part.
* Jim Ahlstrom patch: cutoff should be a long for machines with 16-bitGuido van Rossum1999-01-141-1/+1
| | | | | | ints. (In theory, other variables should be widened to long as well, but this won't ever be needed, since the len of a list is still an int.)
* Jim Ahlstrom patch: BIGCHUNK is too large for 16-bit int.Guido van Rossum1999-01-141-1/+5
|
* Jim Ahlstrom added some SIZEOF defs for VC and WATCOM (only).Guido van Rossum1999-01-141-0/+9
|
* Added clean and clobber targets.Fred Drake1999-01-142-0/+19
|
* Update to the latest version of Michael Ernst's script.Fred Drake1999-01-141-24/+104
|
* "Driver" makefile to convert all documents to SGML or XML at once.Fred Drake1999-01-141-0/+29
|
* Add usage of the "driver" Makefile.Fred Drake1999-01-141-2/+8
|
* Elaborate a comment on the format of the table that drives theFred Drake1999-01-141-1/+5
| | | | conversion.
* Adjustments to allow elements with subelements as parameters. This isFred Drake1999-01-141-95/+145
| | | | | | | | | used to deal with the table headings and entries. An additional flag in the element table is used to indicate elements which have no "general" content, but which do have subelement content. These must be flagged distinctly from empty elements. Currently used for \lineii, \lineiii, and \lineiv.
* Added fixinfo.el to the list of dependencies.Fred Drake1999-01-141-1/+2
|
* Escape special characters on output.Fred Drake1999-01-141-2/+4
|
* In rcpt(), avoid a space after the TO: address when the option list isGuido van Rossum1999-01-141-2/+2
| | | | empty. Make sure there is a space when there are options.
* Change the order of the utime() and the chmod() call in copystat().Guido van Rossum1999-01-141-1/+1
| | | | | This doesn't make a bit of difference on Unix, but apparently on Windows NT you need write permission before you can set the utime...
* Updated for 1.5.2b1Jack Jansen1999-01-132-33/+45
|
* Update the comments on info files.Fred Drake1999-01-131-5/+5
|
* Use \refmodule when we say "use the XXX module instead".Fred Drake1999-01-131-2/+2
| | | | For the whatsound module, point to sndhdr.
* \seemodule: Fix so that each \seemodule entry gets its own paragraph,Fred Drake1999-01-131-0/+15
| | | | | | | | | so they don't get run together when there's no blank line between them in the source. The HTML conversion already did the right thing. \refmodule: Refer to a module, using a hyperlink in the PDF version. Visually the same as \module.
* do_cmd_refmodule(): New function to support new \refmodule macro.Fred Drake1999-01-131-0/+10
|
* Hand't been committed yet (minor changes)Jack Jansen1999-01-131-9/+11
|
* CW Projects for 1.5.2b1Jack Jansen1999-01-1323-0/+0
|
* Distribution databases for 1.5.2b1Jack Jansen1999-01-134-42/+57
|
* Removed USE_MALLOC_DEBUG that shoulnd't be in the production version.Jack Jansen1999-01-131-1/+1
|
* Added: mems.lib.text_file: provides TextFile class for parsing textGreg Ward1999-01-131-0/+206
| | | | | files with (optional) comment stripping, blank line skipping, whitespace removal, and line joining with trailing backslashes.
* Renamed test.py to testcode.py so one can import Python'sGuido van Rossum1999-01-121-0/+0
| | | | test package from inside IDLE. (Suggested by Jack Jansen.)
* Hack to close a window that is colorizing.Guido van Rossum1999-01-122-8/+20
|
* Vladimir Marangozov's patch:Guido van Rossum1999-01-121-0/+3
| | | | | | The separator dances too much and seems to jump by arbitrary amounts in arbitrary directions when I try to move it for resizing the frames. This patch makes it more quiet.