Re: [Python-3000] docutils and Python 3000

2008-01-05 Thread Paul Moore
On 05/01/2008, Michele Simionato <[EMAIL PROTECTED]> wrote: > I would like to know if docutils has been ported to Python 3.0 and if > yes where I can download the code. That would be a question for the docutils development list - [EMAIL PROTECTED] Paul. ___

[Python-3000] Is pickle's persistent_id worth keeping?

2008-01-05 Thread Alexandre Vassalotti
Hi, I currently trying to clean up the interface of the pickle module for Python 3K. So far, I haven't done much, except documenting parts the pickle stream format. There's still one thing I still don't understand about pickle, persistent_id. I haven't found any useful use-cases for it. Using Goo

Re: [Python-3000] Is pickle's persistent_id worth keeping?

2008-01-05 Thread Neil Schemenauer
Alexandre Vassalotti <[EMAIL PROTECTED]> wrote: > There's still one thing I still don't understand about pickle, > persistent_id. I haven't found any useful use-cases for it. Using > Google's code search, only Zope (or variant of) seems to have found > some obscure way to use it. Durus (an object

[Python-3000] Rounding Decimals

2008-01-05 Thread Jeffrey Yasskin
On Jan 5, 2008 3:34 PM, Mark Dickinson <[EMAIL PROTECTED]> wrote: > > On Jan 5, 2008 5:54 PM, <[EMAIL PROTECTED]> wrote: > > > > At first I didn't realize why I'd missed this feature. While the > > rounding *modes* are well documented, though, after 20 minutes of > > reading documentation I still

Re: [Python-3000] [Python-Dev] Rounding Decimals

2008-01-05 Thread Raymond Hettinger
> I think pep 3141's round(x, ndigits) does (1). The only thing it > doesn't support yet is specifying the rounding mode. Perhaps the pep > should say that round() passes any extra named arguments on to the > __round__() method so that users can specify a rounding mode for types > that support it?

Re: [Python-3000] Is pickle's persistent_id worth keeping?

2008-01-05 Thread Phillip J. Eby
At 06:50 PM 1/5/2008 -0500, Alexandre Vassalotti wrote: >I currently trying to clean up the interface of the pickle module for >Python 3K. So far, I haven't done much, except documenting parts the >pickle stream format. > >There's still one thing I still don't understand about pickle, >persistent_i