Re: [Python-Dev] Fwd: Distributed RCS

2005-08-13 Thread Anthony Baxter
I have great hopes for baz-ng, but I don't know that it's really ready for production use just yet. I don't know that we want to be right out on the bleeding edge of revision control systems for Python. The current bazaar, last time I looked (a few months ago) did not work on Windows. This is

Re: [Python-Dev] Distributed RCS

2005-08-13 Thread Terry Reedy
> Another fwd, describing how Steve Alexander's group user bazaar. I found this rather clear and easy to understand even without having directly used CVS (other than to browse). Some of the automation features seem useful but I don't know whether they are specific to bazaar. Anyway, my though

[Python-Dev] Fwd: Distributed RCS

2005-08-13 Thread Guido van Rossum
Another fwd, describing how Steve Alexander's group user bazaar. --Guido van Rossum (home page: http://www.python.org/~guido/) -- Forwarded message -- From: Steve Alexander <[EMAIL PROTECTED]> Date: Aug 12, 2005 4:00 PM Subject: Re: Distributed RCS To: Guido van Rossum <[EMAIL PRO

Re: [Python-Dev] cvs to bzr?

2005-08-13 Thread Neil Schemenauer
On Sat, Aug 13, 2005 at 06:00:37PM -0500, [EMAIL PROTECTED] wrote: > Based on the message Guido forwarded, I installed bazaar-ng. From Mark's > note it seems they convert cvs repositories to bzr repositories, but I > didn't see any mention in the bzr docs of any sort of cvs2bzr tool. Haven't trie

Re: [Python-Dev] Fwd: Distributed RCS

2005-08-13 Thread Neil Schemenauer
On Sat, Aug 13, 2005 at 02:27:22PM -0700, Guido van Rossum wrote: > What do people think of using this for Python? I think it deserves consideration. One idea would be to have a Bazaar-NG repository that tracks the CVS SF repository. I haven't tried it yet but there is a tool called Tailor[1] th

[Python-Dev] cvs to bzr?

2005-08-13 Thread skip
Based on the message Guido forwarded, I installed bazaar-ng. From Mark's note it seems they convert cvs repositories to bzr repositories, but I didn't see any mention in the bzr docs of any sort of cvs2bzr tool. Likewise, Google didn't turn up anything obvious. Anyone know of something? Thx, Sk

[Python-Dev] Fwd: Distributed RCS

2005-08-13 Thread Guido van Rossum
With permission, I'm forwarding an email from Mark Shuttleworth about Bazaar-2 (aka Bazaar-NG), a distributed source control system (not entirely unlike bitkeeper, I presume) written in Python and in use by the Ubuntu system. What do people think of using this for Python? Is it the right model? Do

Re: [Python-Dev] xml.parsers.expat no userdata in callback functions

2005-08-13 Thread Guido van Rossum
> Kristian Benoit wrote: > > This means one cant parse multiple files at the same time using the same > > handlers. You cant pass the context current context to the handler, you must > > base your code on global variables which is not so nice. > "Martin v. Löwis" replied: > This is not true. You c

Re: [Python-Dev] Exception Reorg PEP checked in

2005-08-13 Thread Wilfredo Sánchez Vega
I'm curious about why Python lacks FileNotFoundError, PermissionError and the like as subclasses of IOError. Catching IOError and looking at errno to figure out what went wrong seems pretty unpythonic, and I've often wished for built-in subclasses of IOError. I sometimes subclass t

Re: [Python-Dev] new PEP type: Process

2005-08-13 Thread David Goodger
[Aahz] > Go ahead and make PEP 6 a Process PEP. Done! -- David Goodger signature.asc Description: OpenPGP digital signature ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-d

Re: [Python-Dev] Extension to dl module to allow passing strings from native function

2005-08-13 Thread Martin v. Löwis
Senko Rasic wrote: > Thoughts, comments? Could this be put in standard module, does it make > sense, etc? Are you aware of the ctypes module? http://starship.python.net/crew/theller/ctypes/ Regards, Martin ___ Python-Dev mailing list Python-Dev@python.

Re: [Python-Dev] xml.parsers.expat no userdata in callback functions

2005-08-13 Thread Martin v. Löwis
Kristian Benoit wrote: > This means one cant parse multiple files at the same time using the same > handlers. You cant pass the context current context to the handler, you must > base your code on global variables which is not so nice. This is not true. You can create multiple parsers, and then ca

Re: [Python-Dev] Hosting svn.python.org

2005-08-13 Thread Martin v. Löwis
[EMAIL PROTECTED] wrote: > I will enthusiastically cast my vote for tummy.com, Sean Reifschneider's > company. Mojam leases a server there (Mojam & Musi-Cal websites running > CentOS 4, Apache+mod_perl, Python, Mason, MySQLdb, Mailman, etc). Their > service has been absolutely awesome. But we do

[Python-Dev] Discussion draft: Proposed Py2.5 C API for set and frozenset objects

2005-08-13 Thread Raymond Hettinger
The object and types PySetObject subclass of object used for both sets and frozensets PySet_Type a basetype PyFrozenSet_Typea basetype The type check macros - PyFrozenS