- 26 May, 2003 5 kayıt (commit)
-
-
Neal Norwitz yazdı
Modified the patch some. Fixed invalid link in UNICODE (to STRING). Also updates some references.
-
Kurt B. Kaiser yazdı
SF 661318 Adds autosave capability to IDLE and IDLE configuration dialog. User can Run/F5 without explicit save dialog. The default is to require the user to confirm the save. M ScriptBinding.py M config-main.def M configDialog.py
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Greg Ward yazdı
-
- 25 May, 2003 6 kayıt (commit)
-
-
Jack Jansen yazdı
to be installed to a different location. This should make the OSX binary installer building a lot simpler.
-
Jack Jansen yazdı
in the bootstrap script of the applet.
-
Just van Rossum yazdı
-
Raymond Hettinger yazdı
-
Tim Peters yazdı
Python-Dev. Fixed typos in test comments. Added some trivial new test guts to show the parallelism (now) among __delitem__, __setitem__ and __getitem__ wrt error conditions. Still a bugfix candidate for 2.2.3 final, but waiting for Fred to get a chance to chime in.
-
Tim Peters yazdı
Someone review this, please! Final releases are getting close, Fred (the weakref guy) won't be around until Tuesday, and the pre-patch code can indeed raise spurious RuntimeErrors in the presence of threads or mutating comparison functions. See the bug report for my confusions: I can't see any reason for why __delitem__ iterated over the keys. The new one-liner implementation is much faster, can't raise RuntimeError, and should be better-behaved in all respects wrt threads. New tests test_weak_keyed_bad_delitem and test_weak_keyed_cascading_deletes fail before this patch. Bugfix candidate for 2.2.3 too, if someone else agrees with this patch.
-
- 24 May, 2003 9 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
restarts the shell while it is generating output. Also improved annotation when user repeatedly hammers the Ctrl-F6 restart.
-
Kurt B. Kaiser yazdı
user's PYTHONPATH is empty (though Linux can). Modified Files: idle idle.py idle.pyw
-
Kurt B. Kaiser yazdı
e.g. further improve subprocess interrupt, exceptions, and termination. 2. Remove the workarounds in PyShell.py and ScriptBinding.py involving interrupting the subprocess prior to killing it, not necessary anymore. 3. Fix a bug introduced at PyShell Rev 1.66: was getting extra shell menu every time the shell window was recreated. M PyShell.py M ScriptBinding.py M rpc.py M run.py
-
Just van Rossum yazdı
-
Tim Peters yazdı
float_pow(): Don't let the platform pow() raise -1.0 to an integer power anymore; at least glibc gets it wrong in some cases. Note that math.pow() will continue to deliver wrong (but platform-native) results in such cases.
-
Just van Rossum yazdı
-
Raymond Hettinger yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 23 May, 2003 8 kayıt (commit)
-
-
Neal Norwitz yazdı
TIOCGPGRP and many other definitions come from bsdtty.h, so it needs to be included at least on HPUX.
-
Christian Tismer yazdı
two fixed bits, position 15 and 16. It is right, why should these be elsewhere.
-
Walter Dörwald yazdı
over the size of the array, or the callers check the index bounds themselves, so the index check never failed => Replace it with an assert().
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Christian Tismer yazdı
the purpose. Increased my claim to two bits, hoping that nobody will complain about it. I'm taking the highest two bits, whatever the integer word size may be.
-
Greg Ward yazdı
-
Greg Ward yazdı
Bug spotted by Joerg Lehmann <joerg@luga.de>.
-
- 22 May, 2003 12 kayıt (commit)
-
-
Neal Norwitz yazdı
Update error message. Hopefully this is clearer to some people.
-
Walter Dörwald yazdı
From SF patch #736962.
-
Walter Dörwald yazdı
so make it static.
-
Raymond Hettinger yazdı
-
Jeremy Hylton yazdı
Remove comment about how code used to work.
-
Jeremy Hylton yazdı
to do. XXX Please be careful when checking in patches to avoid checking in junk that explains what the patched code used to do.
-
Tim Peters yazdı
-
Fred Drake yazdı
document" text from html/stdabout.dat, not html/about.dat.
-
Barry Warsaw yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Andrew M. Kuchling yazdı
Check the supplied breakpoint number more carefully. (Incompatibility: before this patch, "enable -1" would enable the last breakpoint on the list; now -1 is not a legal ID. Not sure anyone would ever use negative indices...) 2.2 bugfix candidate, assuming making -1 illegal isn't considered a problem.
-