Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Test the rfc822.py module. Contains just a few simple cases, and some | Barry Warsaw | 1999-01-14 | 2 | -0/+83 |
| | | | | troublesome ones encountered on the c.l.py list. | ||||
* | Message.getaddrlist(): This now handles multiple occurances of the | Barry Warsaw | 1999-01-14 | 1 | -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 partly | Fred Drake | 1999-01-14 | 1 | -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 standard | Guido van Rossum | 1999-01-14 | 1 | -1/+1 |
| | | | | header file (yet :-). | ||||
* | Jim Ahlstrom patch: Watcom chokes on a long expression in c_asinh(). | Guido van Rossum | 1999-01-14 | 1 | -1/+5 |
| | | | | Break it up. | ||||
* | Jim Ahlstrom patch: the module doc string is too long for 16-bit VC | Guido van Rossum | 1999-01-14 | 1 | -1/+5 |
| | | | | 1.5. Omit the second part. | ||||
* | Jim Ahlstrom patch: cutoff should be a long for machines with 16-bit | Guido van Rossum | 1999-01-14 | 1 | -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 Rossum | 1999-01-14 | 1 | -1/+5 |
| | |||||
* | Jim Ahlstrom added some SIZEOF defs for VC and WATCOM (only). | Guido van Rossum | 1999-01-14 | 1 | -0/+9 |
| | |||||
* | Added clean and clobber targets. | Fred Drake | 1999-01-14 | 2 | -0/+19 |
| | |||||
* | Update to the latest version of Michael Ernst's script. | Fred Drake | 1999-01-14 | 1 | -24/+104 |
| | |||||
* | "Driver" makefile to convert all documents to SGML or XML at once. | Fred Drake | 1999-01-14 | 1 | -0/+29 |
| | |||||
* | Add usage of the "driver" Makefile. | Fred Drake | 1999-01-14 | 1 | -2/+8 |
| | |||||
* | Elaborate a comment on the format of the table that drives the | Fred Drake | 1999-01-14 | 1 | -1/+5 |
| | | | | conversion. | ||||
* | Adjustments to allow elements with subelements as parameters. This is | Fred Drake | 1999-01-14 | 1 | -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 Drake | 1999-01-14 | 1 | -1/+2 |
| | |||||
* | Escape special characters on output. | Fred Drake | 1999-01-14 | 1 | -2/+4 |
| | |||||
* | In rcpt(), avoid a space after the TO: address when the option list is | Guido van Rossum | 1999-01-14 | 1 | -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 Rossum | 1999-01-14 | 1 | -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.2b1 | Jack Jansen | 1999-01-13 | 2 | -33/+45 |
| | |||||
* | Update the comments on info files. | Fred Drake | 1999-01-13 | 1 | -5/+5 |
| | |||||
* | Use \refmodule when we say "use the XXX module instead". | Fred Drake | 1999-01-13 | 1 | -2/+2 |
| | | | | For the whatsound module, point to sndhdr. | ||||
* | \seemodule: Fix so that each \seemodule entry gets its own paragraph, | Fred Drake | 1999-01-13 | 1 | -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 Drake | 1999-01-13 | 1 | -0/+10 |
| | |||||
* | Hand't been committed yet (minor changes) | Jack Jansen | 1999-01-13 | 1 | -9/+11 |
| | |||||
* | CW Projects for 1.5.2b1 | Jack Jansen | 1999-01-13 | 23 | -0/+0 |
| | |||||
* | Distribution databases for 1.5.2b1 | Jack Jansen | 1999-01-13 | 4 | -42/+57 |
| | |||||
* | Removed USE_MALLOC_DEBUG that shoulnd't be in the production version. | Jack Jansen | 1999-01-13 | 1 | -1/+1 |
| | |||||
* | Added: mems.lib.text_file: provides TextFile class for parsing text | Greg Ward | 1999-01-13 | 1 | -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's | Guido van Rossum | 1999-01-12 | 1 | -0/+0 |
| | | | | test package from inside IDLE. (Suggested by Jack Jansen.) | ||||
* | Hack to close a window that is colorizing. | Guido van Rossum | 1999-01-12 | 2 | -8/+20 |
| | |||||
* | Vladimir Marangozov's patch: | Guido van Rossum | 1999-01-12 | 1 | -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. | ||||
* | Added a few items. | Fred Drake | 1999-01-12 | 1 | -8/+14 |
| | |||||
* | Fix the HTML tarball target to generate the HTML if needed instead of | Fred Drake | 1999-01-12 | 1 | -5/+1 |
| | | | | bombing. | ||||
* | Chris Herborth's first pass at making config and install | Guido van Rossum | 1999-01-12 | 6 | -278/+387 |
| | | | | for BeOS better. | ||||
* | A gift from Sam Rushing - modules asyncore and asynchat for the | Guido van Rossum | 1999-01-12 | 2 | -0/+743 |
| | | | | standard Python library. (Async socket support.) | ||||
* | Bump the date. Seems like fun. ;-) | Fred Drake | 1999-01-12 | 1 | -1/+1 |
| | |||||
* | Simplify command that extracts the number of pages from a PostScript | Fred Drake | 1999-01-12 | 1 | -1/+1 |
| | | | | file; use "grep -c" instead of "grep | wc -l | cut ... | tr ...". | ||||
* | Added \modulesynopsis. | Fred Drake | 1999-01-12 | 2 | -2/+5 |
| | |||||
* | <writer>.send_paragraph(): Clarify what needs to be done by this | Fred Drake | 1999-01-12 | 1 | -1/+4 |
| | | | | | method and what it should not do. (Specifically: handling breaking of last line of preceeding paragraph.) | ||||
* | DumbWriter.send_paragraph(): Fix problem with DumbWriter reported to | Fred Drake | 1999-01-12 | 1 | -1/+1 |
| | | | | the newsgroup by Raymond Tong Leng Ng <rntl@yahoo.com>. | ||||
* | Avoid overflow if possible in calculations for range(); report | Guido van Rossum | 1999-01-12 | 1 | -7/+28 |
| | | | | unavoidable overflow as OverflowError. | ||||
* | do_cmd_methodline(): Fixed reference to method name when generating | Fred Drake | 1999-01-12 | 1 | -3/+3 |
| | | | | the output HTML. | ||||
* | Removed a lot of unnecessary comment markers which cause unexplained | Fred Drake | 1999-01-12 | 1 | -84/+83 |
| | | | | numbers to appear in the HTML version of the manual. | ||||
* | output_body(): For <address> elements, just skip, since they're | Fred Drake | 1999-01-11 | 1 | -0/+4 |
| | | | | always part of the page trailer. | ||||
* | Patches describing the statvfs() and fstatvfs() functions. Additional | Fred Drake | 1999-01-11 | 1 | -16/+68 |
| | | | | | | | text about large file support. All new text by Steve Clift <clift@mail.anacapa.net>, with only minor revision / addition of markup. | ||||
* | Addition to previous note -- comfigure --without-gcc also works. | Guido van Rossum | 1999-01-11 | 1 | -1/+2 |
| | |||||
* | Add note about gcc-2.8.1 setting sys.maxint to -1 on 64-bit IRIX. | Guido van Rossum | 1999-01-11 | 1 | -0/+4 |
| | |||||
* | get_config_h_filename(): Fix to work with current Python | Fred Drake | 1999-01-11 | 1 | -2/+2 |
| | | | | | installations; it was picking up a stale config.h from an overwritten installation. | ||||
* | Some requests have been fulfilled. | Guido van Rossum | 1999-01-11 | 1 | -5/+3 |
| |