- 24 Şub, 2002 9 kayıt (commit)
-
-
Jack Jansen yazdı
- Use full paths for Rez and DeRez, which may not be on $PATH. Fixes bug #509074. - Also install the Tools directory on "make installmacsubtree". - Added a note that you have to add Mac/Lib to sys.path after doing a "make installmacsubtree". - Include errors.rsrc in the Python.app resource file, so the error strings are available in MacOS API exceptions.
-
Jack Jansen yazdı
Ugh, by all means, _do_ report exceptions somehow ;-)
-
Jack Jansen yazdı
- Added as_pathname() method to FSRef objects. - In MachoPython expect Unix-style pathnames for both FSSpec and FSRef initializers.
-
Jack Jansen yazdı
Fixed to work under MachoPython, doing the expected unpacking for applesingle files.
-
Jack Jansen yazdı
Get rid of fsspec type initializer, it wasn't used anyway.
-
Jack Jansen yazdı
Rename the routine to start the target running _start(), with a compatibility routine start() calling it. Some suites declare an event start(), which obscures this method, which causes the class initializer to fail when called with start=1. Based on bug report and fix suggestion by Jacob Kaplan-Moss.
-
Jack Jansen yazdı
Added support for unicode strings (utxt).
-
Jack Jansen yazdı
- Added minimal support for floating windows. - Changes by Donovan Preston (and a few minor ones by me) to make IDE run under MachoPython. Mainly making sure we don't call routines that don't exist. - Don't barf when an AppleEvent was not handled. It's ok to ignore.
-
Jack Jansen yazdı
Rewritten, clarified, corrected and cleaned up by Michael J. Barber. Some modifications and clarifications (by me) to Michael's mods.
-
- 23 Şub, 2002 2 kayıt (commit)
-
-
Michael W. Hudson yazdı
Workaround for what is probably a problem in Apple's gcc: <pthread.h> fails on a function pointer formal argument called "destructor", which is typedeffed as a different function pointer type in object.h.
-
Michael W. Hudson yazdı
revision 1.101 of libfuncs.tex SF bug #501591: dir() doc is old Bugfix candidate. + Updated dir() description to match actual 2.2 behavior. + Replaced the dir(sys) example with dir(struct), because the former was way out of date and is bound to change frequently, while the latter is stable. + Added a note cautioning that dir() is supplied primarily for convenience at an interactive prompt (hoping to discourage its use as the foundation of introspective code outside the core).
-
- 22 Şub, 2002 13 kayıt (commit)
-
-
Greg Ward yazdı
-
Fred Drake yazdı
-
Michael W. Hudson yazdı
Make it 1.5.2 compatible again. (I'm not sure how having symlinks around the repository interacts with branches -- I'm going to tread carefully in here)
-
Michael W. Hudson yazdı
Updates related to Modules/Setup and setup.py. This addresses SF bug #512871 (Jon Ribbens): Installation instructions are wrong. Bugfix candidate.
-
Michael W. Hudson yazdı
[ #495401 ] Build troubles: --with-pymalloc in a slightly different manner to the trunk, as discussed on python-dev.
-
Michael W. Hudson yazdı
revision 2.127 of typeobject.c Allow __doc__ to be of arbitrary type. Patch by James Henstridge, fixes #504343. 2.2.1 candidate.
-
Michael W. Hudson yazdı
revision 1.3 of reindent.py SF bug #497839: reindent chokes on empty first lines. Reindenter.run(): copy over initial all-whitespace lines (if any, and after normalizing to remove trailing blanks and tabs). Bugfix candidate.
-
Michael W. Hudson yazdı
revision 1.10 of test_thread.py revision 1.5 of test_threaded_import.py SF bug #516372: test_thread: unhandled exc. in thread Fix exit races in test_thread.py and test_threaded_import.py. I suspect the bug is provokable only under Linux (where child threads seem to get lots of cycles before they get killed after the main thread exits), or on multi-processor machines running other OSes. Bugfix candidate.
-
Michael W. Hudson yazdı
revision 1.25 of urllib2.py Fix bug #511786 (2.2.1 candidate): ensure that custom-supplied headers are preserved for redirected requests.
-
Michael W. Hudson yazdı
revision 2.54 of complexobject.c Declare real and imag as read-only attributes. This fixes SF bug #514858 (Gregory Smith): complex not entirely immutable 2.2.1 Bugfix candidate!
-
Michael W. Hudson yazdı
revision 1.12 of file_util.py [Bug #220993; may also fix bug #479469] Fix flakiness when old installations are present, by always unlinking the destination file before copying to it. Without the unlink(), the copied file remains owned by its previous UID, causing the subsequent chmod() to fail. Bugfix candidate, though it may cause changes on platforms where file ownership behaves differently.
-
Michael W. Hudson yazdı
revision 1.21 of CGIHTTPServer.py date: 2002/02/01 16:27:59; author: gvanrossum; state: Exp; lines: +18 -4 Wesley Chun's SF patch 511380: add CGIHTTPServer error supt for Win32 This uses os.popen3 (if it exists) to ensure that errors from a non-Python CGI script are logged. Bugfix candidate.
-
Michael W. Hudson yazdı
revision 1.11 of install_scripts.py Restrict the mode to the lowest four octal positions; higher positions contain the type of the file (regular file, socket, link, &c.). This means that install_scripts will now print "changing mode of <file> to 775" instead of "... to 100775". 2.2 bugfix candidate, I suppose, though this isn't actually fixing a bug. This patch was applied by an alarmingly automated system -- I hope it worked...
-
- 20 Şub, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
This closes SF bug #520087.
-
- 19 Şub, 2002 4 kayıt (commit)
-
-
Michael W. Hudson yazdı
Bugfix candidate. Fix SF bug #511603: Error calling str on subclass of int Explicitly fill in tp_str with the same pointer as tp_repr.
-
Michael W. Hudson yazdı
package_dir must be converted from the distutils path conventions to local conventions before being used by build_py. Fixes SF bug #509288, probably a candidate for 2.2.1
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
- 16 Şub, 2002 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
Replaces calls to socket.send() (which isn't guaranteed to send all data) with the new socket.sendall() method.
-
- 15 Şub, 2002 3 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
This closes SF bug #505150.
-
Fred Drake yazdı
This closes SF bug #517811.
-
- 14 Şub, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
LaTeX really falls flat on this one!
-
- 08 Şub, 2002 4 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
returning NULL causes the interpreter to raise a SystemError. Noted by Anthony Baxter at Python 10.
-
Fred Drake yazdı
This includes Guido's whitespace cleanup.
-
cvs2svn yazdı
'release22-maint'.
-
- 06 Şub, 2002 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
-