- 18 Ara, 2005 2 kayıt (commit)
-
-
Neal Norwitz yazdı
Fix some 64-bit issues due to mismatch format characters w/actual data types
-
Barry Warsaw yazdı
Add C API function Py_GetBuildNumber(), add it to the interactive prompt banner (i.e. Py_GetBuildInfo()), and add it as the sys.build_number attribute. The build number is a string instead of an int because it may contain a trailing 'M' if there are local modifications.
-
- 17 Ara, 2005 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
(reported by Chris Olds). Backported from the 1.0.6 development branch.
-
- 16 Ara, 2005 3 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
Fredrik Lundh yazdı
-
Fredrik Lundh yazdı
-
- 14 Ara, 2005 4 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
Fredrik Lundh yazdı
-
Fredrik Lundh yazdı
-
Armin Rigo yazdı
Supresses numerous pages of compiler warnings.
-
- 13 Ara, 2005 3 kayıt (commit)
-
-
Fredrik Lundh yazdı
added missing API hooks
-
Fredrik Lundh yazdı
(e.g. cStringIO, ucnhash, etc)
-
Fredrik Lundh yazdı
-
- 12 Ara, 2005 1 kayıt (commit)
-
-
Hye-Shik Chang yazdı
build problem on AIX.
-
- 10 Ara, 2005 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
In C++, it's an error to pass a string literal to a char* function without a const_cast(). Rather than require every C++ extension module to put a cast around string literals, fix the API to state the const-ness. I focused on parts of the API where people usually pass literals: PyArg_ParseTuple() and friends, Py_BuildValue(), PyMethodDef, the type slots, etc. Predictably, there were a large set of functions that needed to be fixed as a result of these changes. The most pervasive change was to make the keyword args list passed to PyArg_ParseTupleAndKewords() to be a const char *kwlist[]. One cast was required as a result of the changes: A type object mallocs the memory for its tp_doc slot and later frees it. PyTypeObject says that tp_doc is const char *; but if the type was created by type_new(), we know it is safe to cast to char *.
-
- 06 Ara, 2005 1 kayıt (commit)
-
-
Armin Rigo yazdı
meaningless numbers, but I figured out I would fix that bug anyway.
-
- 22 Kas, 2005 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Andrew M. Kuchling yazdı
[Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and bugfix. Bug reported by John Schmidt; bugfix by Danny Yoo.
-
- 11 Kas, 2005 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 07 Kas, 2005 1 kayıt (commit)
-
-
Armin Rigo yazdı
accepts strings only for unpickling reasons. This check prevents the honest mistake of passing a string like '2:59.0' to time() and getting an insane object.
-
- 03 Kas, 2005 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Need to check return result of PyInt_AsLong() Will backport.
-
- 02 Kas, 2005 3 kayıt (commit)
-
-
Walter Dörwald yazdı
-
Neal Norwitz yazdı
Close the fd in the close method and invalidated it. Don't try to close a second time when deallocating.
-
Neal Norwitz yazdı
-
- 30 Eki, 2005 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
properties now.
-
- 21 Eki, 2005 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
Remove duplicate declarations from compile.h
-
- 20 Eki, 2005 2 kayıt (commit)
-
-
Jeremy Hylton yazdı
This change implements a new bytecode compiler, based on a transformation of the parse tree to an abstract syntax defined in Parser/Python.asdl. The compiler implementation is not complete, but it is in stable enough shape to run the entire test suite excepting two disabled tests.
-
Neal Norwitz yazdı
-
- 06 Eki, 2005 1 kayıt (commit)
-
-
Hye-Shik Chang yazdı
from U+FFFD to U+FFFE which is considered more appropriate. (from MAL's comment)
-
- 05 Eki, 2005 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 03 Eki, 2005 2 kayıt (commit)
-
-
Neal Norwitz yazdı
Since I can't test this, I'm just adding a comment. If we get access to AIX boxes, we can test this and really resolve. Anyone from IBM want to offer help? Backport candidate I suppose.
-
Neal Norwitz yazdı
Also provide a warning if a directory is passed on the command line. Add minimal command line test. Will backport.
-
- 30 Eyl, 2005 1 kayıt (commit)
-
-
Neal Norwitz yazdı
in latin_1, but Python incorrectly assumes it is in UTF-8 format Will backport.
-
- 29 Eyl, 2005 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 25 Eyl, 2005 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 24 Eyl, 2005 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Hye-Shik Chang yazdı
FreeBSD 5.3 and later versions which got thread-safe getaddrinfo(3). (Reported by Maxim Sobolev)
-
- 22 Eyl, 2005 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
returns in cStringIO.c. Thanks to Andrew Bennetts. This must be a backport candidate.
-
- 21 Eyl, 2005 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Fix segfault. I tried to write a test, but it wouldn't crash when running regrtest. This really should have some sort of test. Should definitely be backported.
-
- 20 Eyl, 2005 1 kayıt (commit)
-
-
Armin Rigo yazdı
-