- 28 Feb, 2004 1 commit
-
-
Neal Norwitz authored
-
- 27 Feb, 2004 1 commit
-
-
Raymond Hettinger authored
-
- 26 Feb, 2004 5 commits
-
-
Christian Tismer authored
if a function cannot be stored as global. This is for compatibility with pickle.py .
-
Marc-André Lemburg authored
-
Michael W. Hudson authored
-
Michael W. Hudson authored
float_richcompare. Reported on c.l.py by Helmut Jarausch.
-
Gregory P. Smith authored
* 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 Feb, 2004 6 commits
-
-
Hye-Shik Chang authored
by SIGCHLD or sth because no signal is masked before. This fixes an optimized installation problem on FreeBSD libpthread.
-
Jack Jansen authored
Reported by Bob Ippolito.
-
Jack Jansen authored
for MacPython 2.3 (and, hopefully, python 2.3 for windows too).
-
Fred Drake authored
-
Jeremy Hylton authored
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 authored
-
- 23 Feb, 2004 2 commits
-
-
Jeremy Hylton authored
-
Marc-André Lemburg authored
-
- 21 Feb, 2004 3 commits
-
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Samuele Pedroni authored
-
- 20 Feb, 2004 11 commits
-
-
Thomas Heller authored
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 authored
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 authored
-
Thomas Heller authored
Studio .NET 2003). The output files are named wininst-7.1.exe and wininst-7.1_d.exe.
-
Thomas Heller authored
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 authored
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.
-
Thomas Heller authored
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.
-
Vinay Sajip authored
-
Vinay Sajip authored
Exception traceback text is now cached. Closing a handler now removes it from the internal _handlers list. Handlers now chain to Handler.close() from their close() methods. Exception info can be passed as a tuple in exc_info. shutdown() is registered to be called at application exit.
-
Vinay Sajip authored
Corrections to comments. Tracebacks can now be sent via SocketHandler. SocketHandler now uses exponential backoff strategy. Handlers now chain to Handler.close() from their close() methods.
-
Vinay Sajip authored
Corrections to comments. Added RESET_ERROR definition.
-
- 19 Feb, 2004 9 commits
-
-
Fred Drake authored
- comment out documentation for a non-existant feature (--spec-file) that the comments indicate isn't clearly needed - lots of minor markup adjustments to get a more consistent presentation
-
Fred Drake authored
the term Installer (always capitalized, however) - generalize the text about the term "installer" in a fairly reasonable way
-
Fred Drake authored
functions made available in the post-installation script run by the Windows installer
-
Fred Drake authored
-
Michael W. Hudson authored
recent gcc on Linux/x86) [ 899109 ] 1==float('nan') by implementing rich comparisons for floats. Seems to make comparisons involving NaNs somewhat less surprising when the underlying C compiler actually implements C99 semantics.
-
Guido van Rossum authored
right; (2) write_results_file() didn't return a tuple of two ints when it couldn't create the file. Will backport.
-
Raymond Hettinger authored
for types other than PyInt being accepted for the optional argument. (Spotted by Neal Norwitz.)
-
Neal Norwitz authored
-
Neal Norwitz authored
-
- 18 Feb, 2004 1 commit
-
-
David Ascher authored
Allow the user to create Tkinter.Tcl objects which are just like Tkinter.Tk objects except that they do not initialize Tk. This is useful in circumstances where the script is being run on machines that do not have an X server running -- in those cases, Tk initialization fails, even if no window is ever created. Includes documentation change and tests. Tested on Linux, Solaris and Windows. Reviewed by Martin von Loewis.
-
- 17 Feb, 2004 1 commit
-
-
Fred Drake authored
suggested approach to dealing with it isn't a good one; we need a better general purpose config reader, not a distutils-specific reader
-