- 28 May, 2003 11 kayıt (commit)
-
-
Gregory P. Smith yazdı
sleepycat has told him that since python is OSS and berkeleydb is being distributed with python for the bsddb library all is fine.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* Allow tuple re-use * Call tp_iternext directly
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Gregory P. Smith yazdı
expected DBLockDeadLockErrors.
-
Gregory P. Smith yazdı
oriented DbEnv & Db object BerkeleyDB interface. Include a note about Sleepycat's BerkeleyDB license with regards to distributing it within non-opensource applications and include a link to their website for license details. Document that 'r' is the default flag for the legacy bsddb btopen(), hashopen(), and rnopen() functions. This is apparently different than the dbm libraries in other languages according to Bug #732951. Changing the default from 'r' to 'c' would break backwards compatibility with legacy bsddb applications; documenting the default should suffice.
-
Kurt B. Kaiser yazdı
is not to do that. VPython and student environment support. M PyShell.py M config-main.def M run.py
-
- 27 May, 2003 6 kayıt (commit)
-
-
Jack Jansen yazdı
indicator to wait for the help indexing to finish.
-
Jack Jansen yazdı
between CF objects and their Python representation. Fixes 734695.
-
Jeremy Hylton yazdı
-
Jack Jansen yazdı
-
Raymond Hettinger yazdı
-
Greg Ward yazdı
that way it applies to *only* the ioctl() call, and also happens for the other blocking ioctls (POST, RESET).
-
- 26 May, 2003 11 kayıt (commit)
-
-
Gustavo Niemeyer yazdı
-
Greg Ward yazdı
* sync(), because it waits for hardware buffers to flush, which can take several seconds depending on cirumstances (according to the OSS docs) * close(), because it does an implicit sync()
-
Kurt B. Kaiser yazdı
Modified Files: PyShell.py ScriptBinding.py buildapp.py
-
Gustavo Niemeyer yazdı
-
Kurt B. Kaiser yazdı
The default font is not highlighted in the Options dialog when IDLEfork is first installed. 2. Reduce default font to 10 pt and increase default window height to give a better initial impression on Windows. M config-main.def M configDialog.py
-
Neal Norwitz yazdı
This also fixes several other bugs and patches by providing the proper arguments to cc: 738066 and 741806 need -ieee, 693094 needs -std
-
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 6 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ı
-