Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix two typos in the text about compile(), and add two caveats from | Guido van Rossum | 2001-09-29 | 1 | -2/+9 |
| | | | | | recent user feedback: you must end the input with \n and you must use \n, not \r\n to represent line endings. | ||||
* | forgot to mark use of StringType and UnicodeType in the text. | Skip Montanaro | 2001-09-29 | 1 | -2/+3 |
| | |||||
* | added description of StringTypes object | Skip Montanaro | 2001-09-29 | 1 | -0/+5 |
| | |||||
* | Minor markup improvement. | Fred Drake | 2001-09-29 | 1 | -2/+2 |
| | |||||
* | The list.sort() docs require a function that returns -1, 0 or +1. That's | Tim Peters | 2001-09-29 | 1 | -1/+1 |
| | | | | | never been true, and in particular implies cmp() can't be used(!). Get closer to the truth. | ||||
* | Move XML-RPC-related docs to the "Internet Protocols" chapter. | Fred Drake | 2001-09-28 | 1 | -1/+2 |
| | | | | Add entry for the SimpleXMLRPCServer module. | ||||
* | Preliminary documentation for the SimpleXMLRPCServer module. | Fred Drake | 2001-09-28 | 1 | -0/+69 |
| | |||||
* | Use consistent version annotations instead of something ad hoc. | Fred Drake | 2001-09-28 | 1 | -4/+7 |
| | |||||
* | Added note about non-support of UNC paths on Windows. | Fred Drake | 2001-09-28 | 2 | -1/+6 |
| | | | | This fixes SF bug #465447. | ||||
* | State that encode() and encodestring() append a newline to the input data | Fred Drake | 2001-09-28 | 1 | -2/+7 |
| | | | | | if it does not already end with a newline. This fixes SF bug #463330. | ||||
* | Add entries for the email and compiler packages. | Fred Drake | 2001-09-27 | 1 | -0/+10 |
| | |||||
* | Markup adjustments. | Fred Drake | 2001-09-27 | 1 | -4/+5 |
| | |||||
* | Migrate the compiler documentation from the Tools/compiler/doc/ directory. | Fred Drake | 2001-09-27 | 2 | -0/+589 |
| | | | | Changes made to make it work in the new location. | ||||
* | Fix some markup errors. | Fred Drake | 2001-09-27 | 1 | -2/+2 |
| | |||||
* | Markup adjustment: \[...\] is math markup and does not translate well when | Fred Drake | 2001-09-27 | 1 | -6/+7 |
| | | | | | | used with text as was done here. Fixed so that the typeset version wraps the warning text and the HTML version does not create images of the warning text. | ||||
* | Updates do email package documentation for markup, style, and | Barry Warsaw | 2001-09-26 | 8 | -225/+161 |
| | | | | organization. | ||||
* | Start making some markup adjustments; Barry has indicated he will work on | Fred Drake | 2001-09-26 | 1 | -17/+17 |
| | | | | this before we finish the integration, along with some restructuring. | ||||
* | The email package documentation, currently organized the way I think | Barry Warsaw | 2001-09-26 | 8 | -0/+1168 |
| | | | | Fred prefers. I'm not sure I like this organization, so it may change. | ||||
* | Clarified some points about the interface to the mmap() function. | Fred Drake | 2001-09-25 | 1 | -10/+11 |
| | | | | This closes SF bug #448918. | ||||
* | Minor changes. | Fred Drake | 2001-09-25 | 1 | -5/+8 |
| | |||||
* | Revise the example to be more resiliant in the face of continued use after | Fred Drake | 2001-09-25 | 1 | -18/+18 |
| | | | | | | | | | the object has been pickled; don't mutate the instance dict in the __getstate__() method. Other minor changes for style. Broke up the displayed interactive session to get better page-breaking behavior for typeset versions, and to point out an important aspect of the example. This closes SF bug #453914. | ||||
* | Added documentation for the SSL interface, contributed by Gerhard Häring. | Fred Drake | 2001-09-25 | 1 | -0/+23 |
| | | | | This closes SF patch #461337. | ||||
* | Generalize file.writelines() to allow iterable objects. | Tim Peters | 2001-09-23 | 1 | -2/+4 |
| | |||||
* | Make difflib.ndiff() and difflib.Differ.compare() generators. This | Tim Peters | 2001-09-22 | 1 | -12/+14 |
| | | | | | restores the 2.1 ability of Tools/scripts/ndiff.py to start producing output before the entire comparison is complete. | ||||
* | Add a function to compute a class's method resolution order. This is | Tim Peters | 2001-09-22 | 1 | -1/+9 |
| | | | | | | easy for 2.2 new-style classes, but trickier for classic classes, and different approaches are needed "depending". The function will allow later code to treat all flavors of classes uniformly. | ||||
* | Note that files are iterable; describe what the iterator returns. | Fred Drake | 2001-09-22 | 1 | -0/+5 |
| | | | | This closes SF bug #463738. | ||||
* | Added reference to Tutorial section on user-defined exceptions for | Fred Drake | 2001-09-21 | 1 | -9/+15 |
| | | | | | information on defining new exceptions. This closes SF bug #443559. | ||||
* | Fill in a few more descriptions for xml.parsers.expat. | Fred Drake | 2001-09-20 | 1 | -5/+24 |
| | |||||
* | Document new file() constructor, with the body of open()'s text, plus a | Tim Peters | 2001-09-20 | 1 | -37/+45 |
| | | | | | "new in 2.2" blurb at the end. Replace open()'s text by pointing back to file(). | ||||
* | Docs and News item for the codecs.py additions. | Marc-André Lemburg | 2001-09-19 | 1 | -0/+32 |
| | |||||
* | SF patch #461781 by Chris Lawrence: os.path.realpath - Resolve symlinks: | Guido van Rossum | 2001-09-17 | 1 | -0/+7 |
| | | | | | | | | | | | | | | Once upon a time, I put together a little function that tries to find the canonical filename for a given pathname on POSIX. I've finally gotten around to turning it into a proper patch with documentation. On non-POSIX, I made it an alias for 'abspath', as that's the behavior on POSIX when no symlinks are encountered in the path. Example: >>> os.path.realpath('/usr/bin/X11/X') '/usr/X11R6/bin/X' | ||||
* | Fixed typo in new 'p' description. | Tim Peters | 2001-09-15 | 1 | -1/+1 |
| | |||||
* | SF bug [#461674] struct 'p' format doesn't work (maybe) | Tim Peters | 2001-09-15 | 1 | -7/+11 |
| | | | | Rewrote the 'p' description. | ||||
* | Update the warning about transporting marshals across boxes with different | Tim Peters | 2001-09-14 | 1 | -13/+8 |
| | | | | ideas about sizeof(long). | ||||
* | Markup adjustments for consistency. | Fred Drake | 2001-09-14 | 1 | -5/+6 |
| | |||||
* | SF patch #461413 (Gerhard Häring): Add STARTTLS feature to smtplib | Guido van Rossum | 2001-09-14 | 1 | -0/+8 |
| | | | | | | | | | | | This patch adds the features from RFC 2487 (Secure SMTP over TLS) to the smtplib module: - A starttls() function - Wrapper classes that simulate enough of sockets and files for smtplib, but really wrap a SSLObject - reset the list of known SMTP extensions at each call of ehlo(). This should have been the case anyway. | ||||
* | Admit that we'll never add the args for a "call" event to the profile | Fred Drake | 2001-09-13 | 1 | -8/+9 |
| | | | | | | and trace functions; this now declares that None will be passed for the "call" event. This closes SF bug/suggestion #460315. | ||||
* | Document clearly that the only way to retrieve the return code from the | Fred Drake | 2001-09-11 | 2 | -0/+13 |
| | | | | | child processes is to use the Popen3 and Popen4 classes. This fixes SF bug #460512. | ||||
* | Added entry for the hmac module. | Fred Drake | 2001-09-11 | 1 | -0/+1 |
| | |||||
* | Documentation for the new login() method of the smtplib.SMTP class, | Fred Drake | 2001-09-11 | 1 | -0/+18 |
| | | | | | contributed by Gerhard Häring. This is part of SF patch #460112. | ||||
* | Documentation for the new hmac module, contributed by Gerhard Häring. | Fred Drake | 2001-09-11 | 1 | -0/+48 |
| | | | | This is part of SF patch #460112. | ||||
* | Added documentation on the getfirst() and getlist() methods of the | Fred Drake | 2001-09-11 | 1 | -6/+102 |
| | | | | | cgi.FieldStorage class. This closes SF patch #453691. | ||||
* | Update link to the PyOpenGL project in the "gl" module docs. | Fred Drake | 2001-09-06 | 1 | -6/+8 |
| | | | | This closes SF bug #459256. | ||||
* | Document the built-in iter() function. | Fred Drake | 2001-09-06 | 1 | -0/+17 |
| | |||||
* | Added an additional link to NIST information on secure hashing. | Fred Drake | 2001-09-06 | 1 | -0/+4 |
| | | | | This closes SF bug #458785. | ||||
* | Several updates to cover omissions noted by Rich Salz. | Fred Drake | 2001-09-06 | 1 | -3/+27 |
| | | | | This closes SF bug #458771. | ||||
* | Document the "unixfrom" attribute of the rfc822.Message class. | Fred Drake | 2001-09-06 | 1 | -1/+7 |
| | | | | Based on a patch by Skip Montanaro, this closes SF bug #458885. | ||||
* | Patch #416079: fix the debug string output when receiving telnet commands. | Martin v. Löwis | 2001-09-06 | 1 | -1/+13 |
| | | | | | | added all the telnet options known to arpa/telnet.h added all the options registered with IANA as of today added the possibility for the user to have it's own option negotiation callback | ||||
* | typo... | Skip Montanaro | 2001-09-05 | 1 | -1/+1 |
| | |||||
* | Patch #428326: New class threading.Timer. | Martin v. Löwis | 2001-09-05 | 1 | -0/+36 |
| |