Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | (py-comment-indent-function): A replacement for | Barry Warsaw | 1998-07-07 | 1 | -13/+32 |
| | | | | | | | | | | | | comment-indent-function's default lambda value (in simple.el), this version finally kills this nit: auto-filling a comment that starts in column zero with filladapt turned off would cascade the #'s to the right. Now auto-filling seems to work with or without filladapt, and with the comment starting in any column. (python-mode): Set comment-indent-function. | ||||
* | Get rid of some obsolete opcodes. | Guido van Rossum | 1998-07-07 | 2 | -10/+0 |
| | |||||
* | Rewritten a bit to address some criticism in the newsgroup. | Guido van Rossum | 1998-07-06 | 1 | -31/+44 |
| | |||||
* | Added back the description of the exec statement. It appears that I | Guido van Rossum | 1998-07-06 | 1 | -0/+38 |
| | | | | | | accidentally cut it out when removing the access statement! Added a paragraph on __builtins__ and other possible manipulations of the key space of the dictionaries. Added some index entries. | ||||
* | The permissions ('mode' flag) should default to 0666. | Guido van Rossum | 1998-07-03 | 1 | -1/+1 |
| | |||||
* | The _fromlinepattern was a little too restrictive -- some sendmails | Guido van Rossum | 1998-07-02 | 1 | -1/+1 |
| | | | | don't put the seconds in the time! | ||||
* | # The variable total is never used somehow. I think I had plans for | Guido van Rossum | 1998-07-02 | 1 | -2/+2 |
| | | | | # it but can't remember what. Get rid of a comparison that breaks. | ||||
* | According to Robin Dunn, at least one FTP server returns 200 instead | Guido van Rossum | 1998-07-02 | 1 | -1/+1 |
| | | | | of 250 on a successful delete. | ||||
* | Normalize markup. | Fred Drake | 1998-07-02 | 1 | -68/+78 |
| | |||||
* | Normalize the markup. | Fred Drake | 1998-07-02 | 1 | -38/+42 |
| | |||||
* | Added index entry. | Fred Drake | 1998-07-02 | 1 | -0/+1 |
| | |||||
* | Added \deprecated to exit_thread() function. | Fred Drake | 1998-07-02 | 1 | -0/+1 |
| | | | | Reflects Guido's revision. | ||||
* | On Windows, put the select file descriptor arrays on the heap. | Guido van Rossum | 1998-07-02 | 1 | -0/+22 |
| | | | | | This is because they are huge and the stack is limited on Windows. Other platforms keep declaring it on the stack. | ||||
* | Gotta have an __init__() method -- pdb.py calls it! | Guido van Rossum | 1998-07-01 | 1 | -0/+2 |
| | |||||
* | Several changes: | Barry Warsaw | 1998-07-01 | 1 | -40/+90 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Convert to using re module 2. Added two new exception classes a. MissingSectionHeaderError which signals an early parsing exception when options appear in the file before any section header. Previously a bogus TypeError was thrown deeper down. b. ParsingError which collates any non-fatal parsing errors. ConfigParser.read() will raise this after the entire file was parsed if any errors occurred during parsing (client could just catch the exception and continue, because the ConfigParser instance would still be initialized with the valid data). (small note: Error.__msg => Error._msg) 3. ConfigParser.__read() now uses re which has the following minor semantic change: underscore is now allowed in section header and option name. Also, because of the old regexps, theoretically. Fixed continuation line bug reported by F. Lundh. 4. It seemed that the old ConfigParser automatically added the option `name' to every section, which contained the name of the section. This seemed bogus to me so I took it out. | ||||
* | Fix two smal memory leaks discovered by Vadim Chugunov. | Guido van Rossum | 1998-07-01 | 1 | -3/+2 |
| | |||||
* | Disable malloc debug in frozen programs. | Jack Jansen | 1998-07-01 | 1 | -1/+1 |
| | |||||
* | The init routine for MacOS had a non-standard name. Changed to | Jack Jansen | 1998-07-01 | 2 | -3/+3 |
| | | | | initMacOS(). | ||||
* | Convert \n to \r in strings that are displayed in the dialogs. | Jack Jansen | 1998-07-01 | 1 | -8/+19 |
| | |||||
* | Fix the \kbd definition so it didn't leave the courier face on. | Fred Drake | 1998-07-01 | 1 | -1/+1 |
| | |||||
* | Mark the actual SMTP commands (HELO, etc.) the same way FTP & NNTP commands | Fred Drake | 1998-07-01 | 1 | -29/+36 |
| | | | | | | are in the appropriate sections. Some minor nits. | ||||
* | Added a section to the chapter on modules, describing the package system. | Andrew M. Kuchling | 1998-07-01 | 1 | -0/+202 |
| | | | | | | | | The text is almost completely from GvR's essay on packages; some introductory paragraphs have been removed, and everything after the 'Details' section in the HTML has been dropped (seems too technical). A paragraph has been added after the sample package layout stating that there must be a file called__init__.py in a directory to make it a package. | ||||
* | New blood. | Guido van Rossum | 1998-06-30 | 1 | -0/+11 |
| | |||||
* | Improved test set for int() and long() string conversions. | Guido van Rossum | 1998-06-30 | 1 | -0/+59 |
| | |||||
* | Get rid of the lock; it's no longer needed. | Guido van Rossum | 1998-06-30 | 1 | -15/+5 |
| | |||||
* | # Be more definite about the MIPSpro compiler bug being fixed in a | Guido van Rossum | 1998-06-30 | 1 | -2/+2 |
| | | | | # later release. | ||||
* | Document __copy__() and __deepcopy__() methods. | Guido van Rossum | 1998-06-30 | 1 | -1/+14 |
| | |||||
* | Use the real name of the module: "smtplib", not "smtp". | Fred Drake | 1998-06-30 | 1 | -56/+73 |
| | | | | | | Use logical (& consistent) markup. Added a see-also section at the end. | ||||
* | Note that readline returns '' on EOF, not "EOF" (whatever that may be). | Guido van Rossum | 1998-06-30 | 1 | -1/+1 |
| | |||||
* | Clearly I was to quick with the previous commit... | Guido van Rossum | 1998-06-30 | 1 | -3/+6 |
| | | | | | | | | | | Need to add \optional{} to sort argument too. Made x a \var in descr of pop. Fixed note for pop() and mentioned that it is experimental. Also added pop to index. | ||||
* | Documented the pop() method for lists. | Guido van Rossum | 1998-06-30 | 1 | -4/+9 |
| | | | | # The brackets generated by \optional{} are real ugly. Alas... | ||||
* | Documented os.linesep (line separator). | Guido van Rossum | 1998-06-30 | 1 | -0/+7 |
| | |||||
* | Add pop method. | Guido van Rossum | 1998-06-30 | 1 | -0/+1 |
| | |||||
* | Added doc strings for methods and a new pop() method. | Guido van Rossum | 1998-06-30 | 1 | -7/+54 |
| | |||||
* | As suggested by pson@pson.pp.se, correct the docs for head(), body(), | Guido van Rossum | 1998-06-30 | 1 | -8/+6 |
| | | | | article(). | ||||
* | Fix the comments describing the return values of the head(), body(), | Guido van Rossum | 1998-06-30 | 1 | -0/+6 |
| | | | | article() commands. | ||||
* | Changed URL to crypto page. | Andrew M. Kuchling | 1998-06-30 | 1 | -1/+1 |
| | |||||
* | Fix by Sjoerd Mullender to support symbolic links and make a backup of | Guido van Rossum | 1998-06-29 | 1 | -56/+80 |
| | | | | | | | | .mirrorinfo. Fix by me to call string.lstrip(filename) to cope with a bug in strop.strip() in Python 1.4. Additionally, I changed all print statements that print filenames etc. to put them in backquotes so that it will be more obvious when there's a funny character on one of them (such as a space...). | ||||
* | Document new default arg to groups() and new functions/methods | Guido van Rossum | 1998-06-29 | 1 | -6/+25 |
| | | | | groupdict() and findall(). | ||||
* | Fix a stupid little bug: len() of an unsized returns -1 and leaves an | Guido van Rossum | 1998-06-29 | 1 | -1/+5 |
| | | | | exception waiting to happen next... | ||||
* | Add PyImport_AppendInittab() an PyImport_ExtendInittab(). | Guido van Rossum | 1998-06-29 | 1 | -0/+3 |
| | |||||
* | For completeness, add a dummy load_package() method to RHooks. It | Guido van Rossum | 1998-06-29 | 1 | -0/+1 |
| | | | | | should never be called, so this isn't really needed, but this signifies that rexec now supports packages -- because ihooks does. | ||||
* | Support loading of packages. (I had this coded up for a while but | Guido van Rossum | 1998-06-29 | 1 | -34/+172 |
| | | | | | didn't want to commit until it had been tested. I presume that it works in Grail.) | ||||
* | Added findall() to RegexObject -- return a list of all matches in a | Guido van Rossum | 1998-06-29 | 1 | -16/+61 |
| | | | | | | string. Added groupdict() to MatchObject -- return the named groups as a dict. Added default argument to groups() to specify what to return for unmatching groups; groupdict() also has this. | ||||
* | Improved by Eric Raymond. | Guido van Rossum | 1998-06-29 | 1 | -17/+84 |
| | |||||
* | # Make tabnanny happy. | Guido van Rossum | 1998-06-29 | 1 | -3/+3 |
| | |||||
* | Improved by Eric Raymond. | Guido van Rossum | 1998-06-29 | 1 | -18/+29 |
| | |||||
* | Experimental feature: add default argument to getattr(). | Guido van Rossum | 1998-06-29 | 1 | -5/+13 |
| | |||||
* | Unsigned 1 and 2 byte sized formats shouldn't result in long integer values! | Guido van Rossum | 1998-06-29 | 1 | -2/+8 |
| | |||||
* | Oops! Of course, Tim is right -- when the item is not a hex number, | Guido van Rossum | 1998-06-29 | 1 | -2/+2 |
| | | | | the '%' should be put back in. |