- 03 Mar, 2004 4 kayıt (commit)
-
-
Skip Montanaro yazdı
* reverse order of files on the command line in pickle2db.py to make it symmetrical with db2pickle.py in the two-arg case (src, then dest)
-
Sjoerd Mullender yazdı
-
Skip Montanaro yazdı
-
Raymond Hettinger yazdı
documentation as well as the source code.
-
- 02 Mar, 2004 1 kayıt (commit)
-
-
Brett Cannon yazdı
are within proper boundaries as specified in the docs. This can break possible code (datetime module needed changing, for instance) that uses 0 for values that need to be greater 1 or greater (month, day, and day of year). Fixes bug #897625.
-
- 01 Mar, 2004 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
__getitem__() and __setitem__(). Simplifies the API, reduces the code size, adds flexibility, and makes deques work with bisect.bisect(), random.shuffle(), and random.sample().
-
Skip Montanaro yazdı
and add flag comments to ceval.c and main.c alerting people to the coupling between pystack and the layout of those files.
-
- 29 Şub, 2004 3 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Raymond Hettinger yazdı
* Add doctests for the examples in the library reference. * Add two methods, left() and right(), modeled after deques in C++ STL. * Apply the new method to asynchat.py. * Add comparison operators to make deques more substitutable for lists. * Replace the LookupErrors with IndexErrors to more closely match lists.
-
- 28 Şub, 2004 7 kayıt (commit)
-
-
Jack Jansen yazdı
- Allow easy access to the PackMan homepage, for even more databases.
-
Jack Jansen yazdı
preferences object.
-
Jack Jansen yazdı
- Try not only "darwin-7.X.Y" but also "darwin-7.X" and "darwin-7", so far we've never had to create anew database for a minor release. - Distinguish between the various different installs (user-installed MacPython, apple-installed MacPython, other).
-
Vinay Sajip yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
- 27 Şub, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 26 Şub, 2004 5 kayıt (commit)
-
-
Christian Tismer yazdı
if a function cannot be stored as global. This is for compatibility with pickle.py .
-
Marc-André Lemburg yazdı
-
Michael W. Hudson yazdı
-
Michael W. Hudson yazdı
float_richcompare. Reported on c.l.py by Helmut Jarausch.
-
Gregory P. Smith yazdı
* Fixed a bug in the compatibility interface set_location() method where it would not properly search to the next nearest key when used on BTree databases. [SF bug id 788421] * Fixed a bug in the compatibility interface set_location() method where it could crash when looking up keys in a hash or recno format database due to an incorrect free().
-
- 24 Şub, 2004 6 kayıt (commit)
-
-
Hye-Shik Chang yazdı
by SIGCHLD or sth because no signal is masked before. This fixes an optimized installation problem on FreeBSD libpthread.
-
Jack Jansen yazdı
Reported by Bob Ippolito.
-
Jack Jansen yazdı
for MacPython 2.3 (and, hopefully, python 2.3 for windows too).
-
Fred Drake yazdı
-
Jeremy Hylton yazdı
Invoke the standard error handlers for non-200 responses. Always supply a "Connection: close" header to prevent the server from leaving the connection open. Downstream users of the socket may attempt recv()/read() with no arguments, which would block if the connection were kept open.
-
Fred Drake yazdı
-
- 23 Şub, 2004 2 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
Marc-André Lemburg yazdı
-
- 21 Şub, 2004 3 kayıt (commit)
-
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Samuele Pedroni yazdı
-
- 20 Şub, 2004 6 kayıt (commit)
-
-
Thomas Heller yazdı
msvccompiler.get_build_version(). Distributions without a pre-install-script didn't work any longer, we must at least provide the terminating NUL character.
-
Thomas Heller yazdı
included in Python distributions for systems other than Windows. Windows installers can be build on non-Windows systems as long as they only include pure python module distributions.
-
Thomas Heller yazdı
-
Thomas Heller yazdı
Studio .NET 2003). The output files are named wininst-7.1.exe and wininst-7.1_d.exe.
-
Thomas Heller yazdı
by bdist_wininst *must* use the same runtime libary as the Python version. Actually this means the Python version where the installer is run, not the one which is used to build it. Must think about that - for now I assume MSVC6 is used up to Python 2.3, and MSVC7.1 is used starting at Python 2.4. So the filename for wininst.exe is now wininst-6.exe for the Release version and wininst-6_d.exe for the Debug version, when built with MSVC6.
-
Thomas Heller yazdı
Patch #892660 from Mark Hammond, for distutils bdist_wininst command. install.c: support for a 'pre-install-script', run before anything has been installed. Provides a 'message_box' module function for use by either the pre-install or post-install scripts. bdist_wininst.py: support for pre-install script. Typo (build->built), fixes so that --target-version can still work, even when the distribution has extension modules - in this case, we insist on --skip-build, as we still can't actually build other versions.
-