summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Add support for SMTP TLSAndrew M. Kuchling2001-09-141-0/+5
|
* 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.
* Add missing "}".Fred Drake2001-09-121-1/+1
|
* These modules now live under the Carbon package.Jack Jansen2001-09-111-42/+76
| | | | | | Added a few new toolbox modules. Noted machine dependencies for some modules. Moved waste to undoc.tex.
* Added applesingle, macresource, Nav and videoreader.Jack Jansen2001-09-111-9/+67
| | | | | Moved icopen to its alphabetical place. Moved waste here (from toolbox).
* Added a note that these are not available under Carbon (orJack Jansen2001-09-112-3/+8
| | | | OSX MachO Python).
* Another documentation contributor.Fred Drake2001-09-111-0/+1
|
* 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-112-0/+2
|
* 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.
* Updated infomation about libraries for alternate compilers on Windows.Fred Drake2001-09-111-5/+2
| | | | This closes SF patch #459441.
* Remove some XXX markersAndrew M. Kuchling2001-09-101-15/+17
| | | | Update the patch and bug counts
* Work around a LaTeX2HTML bug that caused the "m" in "mutable" to be droppedFred Drake2001-09-101-1/+1
| | | | in one place.
* Removed an erronous comment about alias files.Jack Jansen2001-09-101-3/+0
|
* Add section on long integer changesAndrew M. Kuchling2001-09-101-18/+69
| | | | | Add removal of 3-arg pow() for floats Rewrite introduction a bit
* Do not rebuild html-$(RELEASE).tar every time we need to use it.Fred Drake2001-09-061-1/+1
|
* Bump version number.Fred Drake2001-09-061-1/+1
|
* 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
|
* Bump version number.Fred Drake2001-09-061-1/+1
|
* Added an additional link to NIST information on secure hashing.Fred Drake2001-09-061-0/+4
| | | | This closes SF bug #458785.
* Clarified the interaction between string literals and continuation lines.Fred Drake2001-09-061-5/+28
| | | | Fixes bug reported as SF bug #453728.
* Make the examples for "Default Argument Values" more presentable andFred Drake2001-09-061-9/+13
| | | | | less hostile to newbie use at the interactive prompt. This is in response to SF bug #458654.
* Fix parameter for PyInt_Check().Fred Drake2001-09-061-1/+31
| | | | Add refcount information for other recently documented APIs.
* Document the PyMethod_* type object, functions, and macros.Fred Drake2001-09-061-0/+58
|
* Document the rule that Python.h must be included before any standardFred Drake2001-09-062-2/+7
| | | | headers. This is the final checkin for SF bug #458768.
* Do not #include <stdio.h> since Python.h already does that.Fred Drake2001-09-061-1/+0
|
* Use the standard argument convention for main(), and conform to theFred Drake2001-09-061-1/+2
| | | | Python/C style guide.
* 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 #449815: Set filesystemencoding based on CODESET.Martin v. Löwis2001-09-051-1/+5
|
* Note some changes that I need to write aboutAndrew M. Kuchling2001-09-051-0/+10
|
* Patch #428326: New class threading.Timer.Martin v. Löwis2001-09-051-0/+36
|
* At Guido's suggestion, here's a new C API function, PyObject_Dir(), likeTim Peters2001-09-041-0/+10
| | | | __builtin__.dir(). Moved the guts from bltinmodule.c to object.c.
* Correction: the Borland C port isn't fully operational yetAndrew M. Kuchling2001-09-041-3/+4
|
* 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.
* Add Jack Jansen's explanation of the MacOS X changesAndrew M. Kuchling2001-08-301-7/+43
|
* SF patch #455966: Allow leading 0 in float/imag literals.Tim Peters2001-08-301-7/+7
| | | | Consequences for Jython still unknown (but raised on Jython-Dev).
* Update documentation for GC API. Closes SF patch #421893.Neil Schemenauer2001-08-301-29/+48
|
* 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.