[Python-Dev] OSCON 2008 Call for Proposals

2008-01-12 Thread Aahz
The O'Reilly Open Source Convention (OSCON) is accepting proposals for tutorials and presentations. The submission period ends Feb 4. OSCON 2008 will be in Portland, Oregon July 21-25. For more information and to submit a proposal, see http://conferences.oreilly.com/oscon/ -- Aahz ([EMAIL PROT

Re: [Python-Dev] Rounding Decimals

2008-01-12 Thread Guido van Rossum
On Jan 12, 2008 5:09 PM, Jeffrey Yasskin <[EMAIL PROTECTED]> wrote: > During the discussion about the new Rational implementation > (http://bugs.python.org/issue1682), Guido and Raymond decided that > Decimal should not implement the new Real ABC from PEP 3141. So I've > closed http://bugs.python.o

Re: [Python-Dev] [python] Re: PEP: per user site-packages directory

2008-01-12 Thread Michael Foord
Gregory P. Smith wrote: > > On 1/12/08, *Christian Heimes* <[EMAIL PROTECTED] > > wrote: > > Christian Heimes wrote: > > MA Lemburg has suggested a per user site-packages directory in the > > "pkgutil, pkg_resource and Python 3.0 name space packages" > thr

Re: [Python-Dev] Rounding Decimals

2008-01-12 Thread Jeffrey Yasskin
During the discussion about the new Rational implementation (http://bugs.python.org/issue1682), Guido and Raymond decided that Decimal should not implement the new Real ABC from PEP 3141. So I've closed http://bugs.python.org/issue1623 and won't be pursuing any of the extra rounding methods mention

Re: [Python-Dev] PEP: per user site-packages directory

2008-01-12 Thread Gregory P. Smith
On 1/12/08, Christian Heimes <[EMAIL PROTECTED]> wrote: > > Christian Heimes wrote: > > MA Lemburg has suggested a per user site-packages directory in the > > "pkgutil, pkg_resource and Python 3.0 name space packages" thread. I've > > written a short PEP about it for Python 2.6 and 3.0. > > Additio

Re: [Python-Dev] [Python-3000] inst_persistent_id

2008-01-12 Thread Alexandre Vassalotti
On Jan 12, 2008 12:25 PM, Jim Fulton <[EMAIL PROTECTED]> wrote: > If there are no objections, I'll update the Python 2 documentation to > describe this and add a test. The comment above suggests that this > hook is in pickle and cPickle. It is in cPickle, but was removed from > pickle. I propose

Re: [Python-Dev] PySequence_Concat for dicts

2008-01-12 Thread Raymond Hettinger
[Raymond] >>> When does it come-up that you want a third summed dict >>> while keeping the two originals around unchanged? Does >>> it matter that the addition is non-commutative? Would >>> a + b + c produce an intermediate a/b combo and then >>> another new object for a/b/c so that the entries i

Re: [Python-Dev] PEP: per user site-packages directory

2008-01-12 Thread Christian Heimes
Christian Heimes wrote: > MA Lemburg has suggested a per user site-packages directory in the > "pkgutil, pkg_resource and Python 3.0 name space packages" thread. I've > written a short PEP about it for Python 2.6 and 3.0. Addition: An user has requested a new option to suppress the user site packa

Re: [Python-Dev] How to change path at compile time?

2008-01-12 Thread Martin v. Löwis
> Is there any reasonable way to change the default sys.path at compile > time? (ie. add a directory). [this is off-topic for python-dev] Edit PYTHONPATH in Modules/Setup, e.g. by setting SITEPATH. Regards, Martin ___ Python-Dev mailing list Python-De

Re: [Python-Dev] PySequence_Concat for dicts

2008-01-12 Thread Guido van Rossum
On Jan 12, 2008 8:51 AM, Jared Flatow <[EMAIL PROTECTED]> wrote: > > On Jan 11, 2008 5:21 PM, Raymond Hettinger <[EMAIL PROTECTED]> wrote: > >> When does it come-up that you want a third summed dict > >> while keeping the two originals around unchanged? Does > >> it matter that the addition is non

[Python-Dev] inst_persistent_id

2008-01-12 Thread Jim Fulton
Recently, I reviewed the documentation source for pickle and came across the following comment: BAW: Both pickle and cPickle support something called inst_persistent_id() which appears to give unknown types a second shot at producing a persistent id. Since Jim Fulton can't reme

Re: [Python-Dev] PySequence_Concat for dicts

2008-01-12 Thread Christian Heimes
Jared Flatow wrote: > p.s. If I were to get approval to implement some version of this, > which version of Python would be appropriate to work with? The minimum version is 2.6. 2.5 is in maintenance mode. Changes made to 2.6 are merged into 3.0 so you don't have to create two patches. It'd stick

Re: [Python-Dev] PySequence_Concat for dicts

2008-01-12 Thread Jared Flatow
> On Jan 11, 2008 5:21 PM, Raymond Hettinger <[EMAIL PROTECTED]> wrote: >> When does it come-up that you want a third summed dict >> while keeping the two originals around unchanged? Does >> it matter that the addition is non-commutative? Would >> a + b + c produce an intermediate a/b combo and t