summaryrefslogtreecommitdiffstats
path: root/Doc/lib
Commit message (Collapse)AuthorAgeFilesLines
* Docs and News item for the codecs.py additions.Marc-André Lemburg2001-09-191-0/+32
|
* SF patch #461781 by Chris Lawrence: os.path.realpath - Resolve symlinks:Guido van Rossum2001-09-171-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 Peters2001-09-151-1/+1
|
* SF bug [#461674] struct 'p' format doesn't work (maybe)Tim Peters2001-09-151-7/+11
| | | | Rewrote the 'p' description.
* Update the warning about transporting marshals across boxes with differentTim Peters2001-09-141-13/+8
| | | | ideas about sizeof(long).
* Markup adjustments for consistency.Fred Drake2001-09-141-5/+6
|
* SF patch #461413 (Gerhard Häring): Add STARTTLS feature to smtplibGuido van Rossum2001-09-141-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 profileFred Drake2001-09-131-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 theFred Drake2001-09-112-0/+13
| | | | | child processes is to use the Popen3 and Popen4 classes. This fixes SF bug #460512.
* Added entry for the hmac module.Fred Drake2001-09-111-0/+1
|
* Documentation for the new login() method of the smtplib.SMTP class,Fred Drake2001-09-111-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 Drake2001-09-111-0/+48
| | | | This is part of SF patch #460112.
* Added documentation on the getfirst() and getlist() methods of theFred Drake2001-09-111-6/+102
| | | | | cgi.FieldStorage class. This closes SF patch #453691.
* Update link to the PyOpenGL project in the "gl" module docs.Fred Drake2001-09-061-6/+8
| | | | This closes SF bug #459256.
* Document the built-in iter() function.Fred Drake2001-09-061-0/+17
|
* Added an additional link to NIST information on secure hashing.Fred Drake2001-09-061-0/+4
| | | | This closes SF bug #458785.
* Several updates to cover omissions noted by Rich Salz.Fred Drake2001-09-061-3/+27
| | | | This closes SF bug #458771.
* Document the "unixfrom" attribute of the rfc822.Message class.Fred Drake2001-09-061-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öwis2001-09-061-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 Montanaro2001-09-051-1/+1
|
* Patch #428326: New class threading.Timer.Martin v. Löwis2001-09-051-0/+36
|
* Add more detail to the descriptions of the shutil functions.Fred Drake2001-09-041-4/+9
| | | | This closes SF bug #458223.
* Added documentation for sys.maxunicode and sys.warnoptions.Fred Drake2001-09-041-1/+14
| | | | | Fixed a markup error which caused an em dash to be presented as a minus sign. This closes SF bug #458350.
* New restriction on pow(x, y, z): If z is not None, x and y must be ofTim Peters2001-09-031-6/+12
| | | | | integer types, and y must be >= 0. See discussion at http://sf.net/tracker/index.php?func=detail&aid=457066&group_id=5470&atid=105470
* Move the long minidom example to a separate file; \verbatiminput does theFred Drake2001-09-022-67/+66
| | | | | | right thing with page breaks in long examples, while the verbatim environment does not. This causes the example to wrap to the next page instead of overwriting the page footer and bottom margin.
* Added the "Host" header to the "GET" example.Fred Drake2001-09-011-0/+1
| | | | This closes SF bug #457100.
* Update the links to the FIPS document that defines the Secure HashFred Drake2001-08-301-8/+9
| | | | Algorithm. This closes SF bug #454917.
* Add a new function imp.lock_held(), and use it to skip test_threaded_importTim Peters2001-08-301-0/+13
| | | | when that test is doomed to deadlock.
* Added explanation that [...] * n generates shallow copies of [...], soFred Drake2001-08-281-2/+26
| | | | | | the contents will be shared by multiple references. This closes SF bug #455694.
* Fix a number of minor markup errors, and improve the consistency a bit.Fred Drake2001-08-281-16/+16
|
* Plant a mention in the description of backreferences of the fact thatEric S. Raymond2001-08-281-1/+5
| | | | while \0 doesn't do what one might expect, \g<0> does.
* Docs for the PEP 264 changes.Michael W. Hudson2001-08-273-11/+89
|
* SF patch #454553 by Walter Dörwald: auto-guess content-type header forGuido van Rossum2001-08-231-1/+2
| | | | ftp urls.
* indicate that mktime is platform-dependent. See SF bug 434143.Skip Montanaro2001-08-221-1/+2
|
* indicate that the years for which the calendar function will work areSkip Montanaro2001-08-221-1/+2
| | | | platform dependent. See SF bug 434143.
* Added documentation for BoundedSemaphore(), contributed by Skip Montanaro.Fred Drake2001-08-201-2/+40
| | | | This closes SF patch #452836.
* Clean up some argument profiles, enrich the docstring.Eric S. Raymond2001-08-201-14/+14
|
* Improve Windows time.clock() blurb; was missing return type and unit.Tim Peters2001-08-191-4/+4
|
* Framework code for compilerlike scripts.Eric S. Raymond2001-08-181-0/+87
|
* Document that uu.decode() will always raise a uu.Error if out_fileBarry Warsaw2001-08-171-9/+18
| | | | | isn't given, and the file in the uu header already exists. Also add a description of the uu.Error exception class.
* Re-write the description of the os.spawn*() functions, and cover theFred Drake2001-08-161-17/+51
| | | | | | | whole family instead of just two. This closes SF bug #451630.
* Fix a minor typo and mark an exception name that was missed.Fred Drake2001-08-141-1/+1
|
* Describe the new semantics for setting and deleting a function'sBarry Warsaw2001-08-141-10/+5
| | | | | | | | | __dict__ attribute. Deleting it, or setting it to a non-dictionary result in a TypeError. Note that getting it the first time magically initializes it to an empty dict so that func.__dict__ will always appear to be a dictionary (never None). Closes SF bug #446645.
* Insert omitted "the".Fred Drake2001-08-141-1/+1
|
* Add the smtpd module to the list of undocumented modules; Barry needs toFred Drake2001-08-141-0/+4
| | | | write the documentation for this module.
* David Goodger <dgoodger@atsautomation.com>:Fred Drake2001-08-131-27/+240
| | | | | | | Documentation for difflib/ndiff refactoring: more of the ndiff functionality has been moved to the underlying library (difflib). This closes SF patch #445413.
* For the escape() function, added a reference to the quoteattrs() functionFred Drake2001-08-111-17/+22
| | | | | | | | in xml.sax.saxutils, since that is the right function to use for quoting attribute values. This closes SF bug #444707. Cleaned up a variety of other minor markup errors.
* Add a note that the quoteattr() function is useful for HTML and SGMLFred Drake2001-08-101-0/+2
| | | | attributes as well.
* Added a warning about reference cycles and memory consumption to theFred Drake2001-08-101-0/+10
| | | | | | section on functions which return stack frames. This closes SF bug #449258.
* Usage fix, problem reported by Keith Briggs.Fred Drake2001-08-101-1/+1
|