- 05 Feb, 2003 23 commits
-
-
Jack Jansen authored
-
Jack Jansen authored
be bothered to fix it.
-
Guido van Rossum authored
the code.
-
Jeremy Hylton authored
For the case where the current globals match the previous frame's globals, eliminates three tests in two if statements. For the case where we just get __builtins__ from a module, eliminate a couple of tests.
-
Andrew M. Kuchling authored
gzip shouldn't raise ValueError on corrupt files Currently the gzip module will raise a ValueError if the file was corrupt (bad crc or bad size). I can't see how that applies to reading a corrupt file. IOError seems better, and it's what code will likely be looking for.
-
Andrew M. Kuchling authored
-
Tim Peters authored
file can be dumped without (bogus) complaint if the the pickles were created using a single pickle memo.
-
Tim Peters authored
merge_class_dict(): This was missing a decref. Bugfix candidate.
-
Tim Peters authored
Added array.array to the types repr.py knows about, after a suggestion from Jurjen N.E. Bos.
-
Jason Tishler authored
Applied the skip test_ossaudiodev patch.
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
the clipboard contains a filename that filename is used as the default.
-
Jack Jansen authored
-
Jason Tishler authored
It also prevents building against the real X headers, if installed. After discussions with the Cygwin project lead, I believe that building against the real X headers is OK. Especially, since the psuedo-X headers are *not* installed by the Cygwin Tcl/Tk binary package.
-
Jason Tishler authored
Note that this patch just reverts the lib_prefix (i.e., "cyg") portion of my Tcl/Tk 8.3 patch. It seems that Cygwin Tcl/Tk is using a more normal file naming convention again.
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
we have a symlink somewhere in the TESTFN path.
-
Raymond Hettinger authored
to have a full dictionary interface.
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
-
- 04 Feb, 2003 17 commits
-
-
Tim Peters authored
guarantee to keep valid pointers in its slots. tests: Moved ExtensionSaver from test_copy_reg into pickletester, and use it both places. Once extension codes get assigned, it won't be safe to overwrite them willy nilly in test suites, and ExtensionSaver does a thorough job of undoing any possible damage. Beefed up the EXT[124] tests a bit, to check the smallest and largest codes in each opcode's range too.
-
Neil Schemenauer authored
instead of raising a TypeError. Closes #660144 (again).
-
Tim Peters authored
Moved such EXT tests as currently exist from TempAbstractPickleTests to AbstractPickleTests, so that test_cpickle runs them too.
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Walter Dörwald authored
subclasses. (Discussed in SF patch #665835)
-
Marc-André Lemburg authored
by Michael Stone (mbrierst). Python 2.1.4, 2.2.2 candidate.
-
Fred Drake authored
-
Walter Dörwald authored
signed/unsigned comparison warnings on the call to iconv(). Fix comment typos. From SF patch #680146.
-
Tim Peters authored
-
Walter Dörwald authored
str and unicode subclasses not just for generating the output but for testing too.
-
Walter Dörwald authored
so we can jump to the error handling code that does. (Spotted by Neal Norwitz)
-
Walter Dörwald authored
blindly assumed that tp_as_sequence->sq_item always returns a str or unicode object. This might fail with str or unicode subclasses. This patch checks whether the object returned from __getitem__ is a str/unicode object and raises a TypeError if not (and the filter function returned true). Furthermore the result for __getitem__ can be more than one character long, so checks for enough memory have to be done.
-
Jack Jansen authored
providing the format info, only the raw data). - Get rid of fsspecs. - Make the demo program at least do something if img not available.
-
Jack Jansen authored
-
Fred Drake authored
continuing to call these "time tuples" is misleading at best. Closes SF bug #671731; will backport to 2.2.x.
-
Fred Drake authored
-