- 02 Şub, 2001 11 kayıt (commit)
-
-
Fred Drake yazdı
PortableUnixMailbox as a separate class as well (this also generates the right index entry).
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
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 yazdı
by the quicktest target.
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
the standard library does not use the SOCKET module any more, and it is not defined for all platforms (Windows, in particular).
-
Fred Drake yazdı
-
Fred Drake yazdı
Move some index entries next to what they are referring to for better "targetting".
-
Fred Drake yazdı
-
Fred Drake yazdı
whrandom module directly.
-
Tim Peters yazdı
-
- 01 Şub, 2001 24 kayıt (commit)
-
-
Jeremy Hylton yazdı
PyFPE_END_PROTECT() was called on undefined var
-
Jeremy Hylton yazdı
socket -- as suggested by Clarence Gardner. Fix httplib to comply with the new ssl-socket interface.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
SF patch 102989 by Thomas Wouters
-
Barry Warsaw yazdı
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 yazdı
scope (still inside the __name__=='__main__' guard). Necessitated by recent addition of nested scopes.
-
Jeremy Hylton yazdı
Revise item about restriction on 'from ... import *'. It was in the wrong section and the section restriction was removed.
-
Jeremy Hylton yazdı
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 yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
This closes SF bug #129827.
-
Fred Drake yazdı
-
Fred Drake yazdı
wide paragraphs.
-
Fred Drake yazdı
-
Tim Peters yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
Moved commented-out entries for obsolete module to an appendix, still commented out.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
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 yazdı
-
- 31 Ock, 2001 5 kayıt (commit)
-
-
Barry Warsaw yazdı
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 yazdı
debugging leaks and other memory problems.
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
debugging memory leaks and the like.
-
Barry Warsaw yazdı
- All constructors grow an optional argument `factory' which is a callable used when new message instances are created by the next() methods. Defaults to the rfc822.Message class. - A new subclass of UnixMailbox is added, called PortableUnixMailbox. It's identical to UnixMailbox, but uses a more portable test for From_ delimiter lines. With PortableUnixMailbox, any line that starts with "From " is considered a delimiter (this should really check for two newlines before the F, but it doesn't.
-