- 02 Feb, 2001 34 commits
-
-
Tim Peters authored
-
Tim Peters authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
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 authored
include the filename and line number.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Fred Drake authored
-
Fred Drake authored
-
Barry Warsaw authored
patch for case-preserving HFS+ suport. Untested except to verify that it builds and doesn't break anything on Linux RH6.1.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
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 authored
field. This should avoid binary incompatibility problems with older modules that have not been recompiled.
-
Jeremy Hylton authored
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 authored
for that.
-
Fred Drake authored
dead references.
-
Marc-André Lemburg authored
-
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 6 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.
-