- 02 Feb, 2001 14 commits
-
-
Marc-André Lemburg authored
-
Tim Peters authored
-
Tim Peters authored
STILL NEEDS UNIX BUILD CHANGES.
-
Fred Drake authored
PortableUnixMailbox as a separate class as well (this also generates the right index entry).
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Adds support for raw packets (AF_PACKET) under Linux. I haven't tested this code thoroughly; it compiles and the basic calls all work without crashing. Not sure what to actually do with raw sockets though. Not sure what other platforms this might be useful for.
-
Fred Drake authored
by the quicktest target.
-
Jeremy Hylton authored
-
Fred Drake authored
the standard library does not use the SOCKET module any more, and it is not defined for all platforms (Windows, in particular).
-
Fred Drake authored
-
Fred Drake authored
Move some index entries next to what they are referring to for better "targetting".
-
Fred Drake authored
-
Fred Drake authored
whrandom module directly.
-
Tim Peters authored
-
- 01 Feb, 2001 24 commits
-
-
Jeremy Hylton authored
PyFPE_END_PROTECT() was called on undefined var
-
Jeremy Hylton authored
socket -- as suggested by Clarence Gardner. Fix httplib to comply with the new ssl-socket interface.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
SF patch 102989 by Thomas Wouters
-
Barry Warsaw authored
fields. You can now backspace out the 0 in 0x0, and you can clear the field when in decimal mode. There are still some oddities about typing into these fields, but it should be much less annoying. The real solution is to ditch the update-while-typing "feature".
-
Barry Warsaw authored
scope (still inside the __name__=='__main__' guard). Necessitated by recent addition of nested scopes.
-
Jeremy Hylton authored
Revise item about restriction on 'from ... import *'. It was in the wrong section and the section restriction was removed.
-
Jeremy Hylton authored
discussion on python-dev. 'from mod import *' is still banned except at the module level. Fix value for special NOOPT entry in symtable. Initialze to 0 instead of None, so that later uses of PyInt_AS_LONG() are valid. (Bug reported by Donn Cave.) replace local REPR macros with PyObject_REPR in object.h
-
Fred Drake authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Fred Drake authored
This closes SF bug #129827.
-
Fred Drake authored
-
Fred Drake authored
wide paragraphs.
-
Fred Drake authored
-
Tim Peters authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
Moved commented-out entries for obsolete module to an appendix, still commented out.
-
Fred Drake authored
-
Fred Drake authored
-
Tim Peters authored
-
Tim Peters authored
internal states. Put the old .seed() (which could only get at about the square root of the # of possibilities) under the new name .whseed(), for bit-level compatibility with older versions. This occurred to me while reviewing effbot's book (he found himself stumbling over .seed() more than once there ...).
-
Jeremy Hylton authored
-
- 31 Jan, 2001 2 commits
-
-
Barry Warsaw authored
I'm now checking it in. I need to write some documentation for it, but I don't have time right now. Still, I wanted to get this into 2.1a2. # Overview: # # This file implements the minimal SMTP protocol as defined in RFC 821. It # has a hierarchy of classes which implement the backend functionality for the # smtpd. A number of classes are provided: # # SMTPServer - the base class for the backend. Raises an UnimplementedError # if you try to use it. # # DebuggingServer - simply prints each message it receives on stdout. # # PureProxy - Proxies all messages to a real smtpd which does final # delivery. One known problem with this class is that it doesn't handle # SMTP errors from the backend server at all. This should be fixed # (contributions are welcome!). # # MailmanProxy - An experimental hack to work with GNU Mailman # <www.list.org>. Using this server as your real incoming smtpd, your # mailhost will automatically recognize and accept mail destined to Mailman # lists when those lists are created. Every message not destined for a list # gets forwarded to a real backend smtpd, as with PureProxy. Again, errors # are not handled correctly yet.
-
Barry Warsaw authored
debugging leaks and other memory problems.
-