- 02 Şub, 2001 32 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
Add note about _symtable. Add note that 'from ... import *' restriction may go away -- and move the whole entry closer to the top, because it might bite people.
-
Jeremy Hylton yazdı
include the filename and line number.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Barry Warsaw yazdı
patch for case-preserving HFS+ suport. Untested except to verify that it builds and doesn't break anything on Linux RH6.1.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
symtable.h, so that they can be used by external module. Improve error handling in symtable_enter_scope(), which return an error code that went unchecked by most callers. XXX The error handling in symtable code is sloppy in general. Modify symtable to record the line number that begins each scope. This can help to identify which code block is being referred to when multiple blocks are bound to the same name. Add st_scopes dict that is used to preserve scope info when PyNode_CompileSymtable() is called. Otherwise, this information is tossed as soon as it is no longer needed. Add Py_SymtableString() to pythonrun; analogous to Py_CompileString().
-
Fred Drake yazdı
field. This should avoid binary incompatibility problems with older modules that have not been recompiled.
-
Jeremy Hylton yazdı
trigger my arbitrary exlusion rule, which is: takes more than 10 seconds of wall clock time on my machine. If these tests are going to be skipped, then a boatload of slower tests should be skipped, too.
-
Fred Drake yazdı
for that.
-
Fred Drake yazdı
dead references.
-
Marc-André Lemburg yazdı
-
Marc-André Lemburg yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
STILL NEEDS UNIX BUILD CHANGES.
-
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 8 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
-