Re: [Python-Dev] Progress on switching Windows build to Berkeley DB 4.7.25...

2008-07-19 Thread Jesus Cea
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Trent Nelson wrote: | Hi all, | | Jesus, apologies that this has taken so long for me to get back | to, I've been completely and utterly swamped with client work the | past few weeks. However, thanks to a couple of hours spare at | Detroit airport ye

[Python-Dev] Removing bsddb module from py3k (was Re: [Python-3000] No beta2 tonight)

2008-07-19 Thread Nick Coghlan
Josiah Carlson wrote: On Fri, Jul 18, 2008 at 11:03 AM, Fred Drake <[EMAIL PROTECTED]> wrote: On Jul 18, 2008, at 1:45 PM, Josiah Carlson wrote: It's entirely possible that I know very little about what was being made available via the bsddb module, but to match the API of what is included in t

Re: [Python-Dev] Implementing restricted Python in Zope2

2008-07-19 Thread Nick Coghlan
Shane Hathaway wrote: ranjith kannikara wrote: As a student I am not familiar with Restricted Python and python AST implementation.And in need of help to start the Restricted Python implementation. Here is some context for Python-Dev. RestrictedPython is a custom Python compiler that, when co

[Python-Dev] Fuzzing bugs: most bugs are closed

2008-07-19 Thread Victor Stinner
Hi, I filled 14 issues about bugs found by fuzzing (see my other email "Play with fuzzing" for more informations). Most bugs are now closed, cool :-) Last bugs: == Trivial open bugs == segfault on locale.gettext(None) - http://bugs.python.org/issue3302 - attached patch is trivial: fix the PyA

[Python-Dev] Problem with PyObject_DEL in pydebug mode

2008-07-19 Thread Victor Stinner
Hi, I filled an issue about the crash: "import re; re.finditer("a", {})" http://bugs.python.org/issue3299 It appears quickly that the bug is specific to Python compiled in pydebug mode, or to be exact: when Py_TRACE_REFS is defined. == The Py_TRACE_REFS option == The problem is that PyObjec

Re: [Python-Dev] Fuzzing bugs: most bugs are closed

2008-07-19 Thread Jesse Noller
On Sat, Jul 19, 2008 at 7:23 AM, Victor Stinner <[EMAIL PROTECTED]> wrote: > Hi, > > I filled 14 issues about bugs found by fuzzing (see my other email "Play with > fuzzing" for more informations). Most bugs are now closed, cool :-) Last > bugs: > > > == Trivial open bugs == > > segfault on locale.

Re: [Python-Dev] [Python-3000] No beta2 tonight

2008-07-19 Thread Josiah Carlson
On Fri, Jul 18, 2008 at 7:43 PM, Greg Ewing <[EMAIL PROTECTED]> wrote: > Josiah Carlson wrote: >> >> It's entirely possible that I know very little about what was being >> made available via the bsddb module, but to match the API of what is >> included in the documentation (plus the dictionary inte

Re: [Python-Dev] [Python-3000] No beta2 tonight

2008-07-19 Thread Josiah Carlson
On Sat, Jul 19, 2008 at 7:54 AM, Josiah Carlson <[EMAIL PROTECTED]> wrote: > On Fri, Jul 18, 2008 at 7:43 PM, Greg Ewing <[EMAIL PROTECTED]> wrote: >> Josiah Carlson wrote: >>> >>> It's entirely possible that I know very little about what was being >>> made available via the bsddb module, but to ma

Re: [Python-Dev] Removing bsddb module from py3k (was Re: [Python-3000] No beta2 tonight)

2008-07-19 Thread Josiah Carlson
On Sat, Jul 19, 2008 at 3:22 AM, Nick Coghlan <[EMAIL PROTECTED]> wrote: > Josiah Carlson wrote: >> >> On Fri, Jul 18, 2008 at 11:03 AM, Fred Drake <[EMAIL PROTECTED]> wrote: >>> >>> On Jul 18, 2008, at 1:45 PM, Josiah Carlson wrote: It's entirely possible that I know very little about wh

Re: [Python-Dev] Removing bsddb module from py3k (was Re: [Python-3000] No beta2 tonight)

2008-07-19 Thread Jesus Cea
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Josiah Carlson wrote: | On-disk key -> value dictionary. In every use of bsddb that I've seen | (or done myself), that's been the extent of it's use. That's what I | *was* offering. But it seems that everyone has had experience with | bsddb on a fa

Re: [Python-Dev] Fwd: Change in repr of Decimal in 2.6

2008-07-19 Thread Terry Reedy
Karen Tracey wrote: Yeah, but the testcases are not quite that simple. They're often testing return values from functions and as much verifying that the type is correct as the value, so I think I'd have to change stuff like: >>> f.clean('1') Decimal("1") to: >>> x = f.clean('1') >>> p

[Python-Dev] Python-2.6b2.tar.bz missing sig file on web site

2008-07-19 Thread Charles Hixson
Python-2.6b2.tar.bz missing sig file on web site. That's about all the info I have, except that the tgz is also missing the sig file, and that 3.0b2 has it's sig file. Hope this is the correct place to report this. ___ Python-Dev mailing list Python-D

Re: [Python-Dev] Python-2.6b2.tar.bz missing sig file on web site

2008-07-19 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Jul 19, 2008, at 11:01 PM, Charles Hixson wrote: Python-2.6b2.tar.bz missing sig file on web site. That's about all the info I have, except that the tgz is also missing the sig file, and that 3.0b2 has it's sig file. Hope this is the correc

Re: [Python-Dev] Fwd: Change in repr of Decimal in 2.6

2008-07-19 Thread Karen Tracey
On Sat, Jul 19, 2008 at 10:52 PM, Terry Reedy <[EMAIL PROTECTED]> wrote: > >>> f.clean('1') == Decimal('1') > True > Ah, yes, why didn't I think of that? > > Since 'True' is a keyword, and Guido is *very* reluctant to even add > keywords, let alone change their spelling, I think you can depend