- 27 May, 2002 3 commits
-
-
Michael W. Hudson authored
[ 559250 ] more POSIX signal stuff Adds support (and docs and tests and autoconfery) for posix signal mask handling -- sigpending, sigprocmask and sigsuspend.
-
Michael W. Hudson authored
-
Guido van Rossum authored
allow subclassing.
-
- 26 May, 2002 1 commit
-
-
Chui Tey authored
-
- 25 May, 2002 1 commit
-
-
Fred Drake authored
target.
-
- 24 May, 2002 8 commits
-
-
Guido van Rossum authored
whose tp_mro hasn't been initialized, it would dump core. Fix this by checking for NULL and calling PyType_Ready(). Will fix this in 2.2.1 too.
-
Andrew M. Kuchling authored
Other minor rewrites
-
Guido van Rossum authored
for 'str' and 'unicode', and can be used instead of types.StringTypes, e.g. to test whether something is "a string": isinstance(x, string) is True for Unicode and 8-bit strings. This is an abstract base class and cannot be instantiated directly.
-
Guido van Rossum authored
different free or alloc slot.
-
Guido van Rossum authored
-
Andrew M. Kuchling authored
Remove 1.5.2 reference: who cares?
-
Guido van Rossum authored
The old syntax suggested that a trailing comma was OK inside backticks, but in fact (due to ideosyncrasies of pgen) it was not. Fix the grammar to avoid the ambiguity. Fred: you may want to update the refman.
-
Guido van Rossum authored
are disabled.
-
- 23 May, 2002 17 commits
-
-
Raymond Hettinger authored
-
Jack Jansen authored
Should fix #492465.
-
Jack Jansen authored
and maintain. Fixes #557482.
-
Fred Drake authored
-
Tim Peters authored
"power" was formally ambiguous. Here's his fix.
-
Raymond Hettinger authored
-
Barry Warsaw authored
string with text in column zero. Skip that stuff when looking for the "first statement following the statement containing point".
-
Fred Drake authored
-
Tim Peters authored
-
Fred Drake authored
while modifying these files. Minor style changes to make the use of "my" with arrays more consistent.
-
Fred Drake authored
-
Fred Drake authored
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
-
Barry Warsaw authored
fixed (re: SF bug #555035). Include a unittest.
-
Skip Montanaro authored
closes patch #536278.
-
- 22 May, 2002 10 commits
-
-
Neal Norwitz authored
A MemoryError is now raised when the list cannot be created. There is a test, but as the comment says, it really only works for 32 bit systems. I don't know how to improve the test for other systems (ie, 64 bit or systems where the data size != addressable size, e.g. 64 bit data, but 48 bit addressable memory)
-
Fred Drake authored
-
Barry Warsaw authored
constructor, vetted by Barry.
-
Barry Warsaw authored
WITH_UNIVERSAL_NEWLINES is enabled.
-
Jason Tishler authored
mwh wrote: > Jason, feel free to complain if you think this isn't > the right thing to do. I guess that I would like to complain and reopen this issue. :,) I cannot build a Python 2.2.1 with threads under Cygwin without this patch even though I'm using Michael's static _socket workaround. This is due to the Cygwin fork() problem with DLL base address conflicts that are triggered by importing many modules during the setup.py run. Similar problems can also be caused by regrtest.py. Even after my rebase patch is accepted into Cygwin's setup.exe, I feel this patch will still be necessary. This is because during the build process, the shared extensions (i.e., DLLs) will not be rebased yet. Hence, the potential for DLL base address conflicts will exist. One way to obviate this patch is to push the rebase functionality into Cygwin's ld. Unfortunately, I don't think this is likely to happen. Another possible way, is to use the yet to be defined and implemented unload module functionality: http://mail.python.org/pipermail/python-dev/2001-December/019028.html
-
Jack Jansen authored
-
Jack Jansen authored
Allow the script to have not only a TEXT filetype but also a null filetype (to enable files to be created from the Unix side of OSX to be droppable on the MacPython interpreter).
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-