Re: How python source code in large projects are organized?

2009-09-26 Thread Christopher Arndt
On 20 Sep., 22:10, exar...@twistedmatrix.com wrote: > On 07:10 pm, pengyu...@gmail.com wrote: > > >On Sun, Sep 20, 2009 at 11:31 AM, Daniel Fetchinson > > wrote: > >>>I am wondering what is the best way of organizing python source code > >>>in a large projects. There are package code, testing code.

Re: New implementation of re module

2009-07-28 Thread Christopher Arndt
On 27 Jul., 21:27, Wolfgang Rohdewald wrote: > how do I compile _regex.c on Linux? This simple setup.py file should do the trick: from distutils.core import setup, Extension setup(name='regex', version='1.0', py_modules = ['regex'], ext_modules=[Extension('_regex', ['_regex.c'])], )

Re: Is there any Generic RSS/ATOM generator in Python?

2008-02-18 Thread Christopher Arndt
On 11 Feb., 15:47, js <[EMAIL PROTECTED]> wrote: > I'm looking for RSS/ATOM generator I can use in Python. > I searched on pypi and the other places but I couldn't find any > options on this. (I found many parsers, though) > Is there any de-fact standard RSS/ATOM generator? (especially, I'd > like

ANN: nächstes Treffen von pyCologne am 9.1.2008 18: 30 Uhr

2008-01-05 Thread Christopher Arndt
das nächste Treffen lautet: * Vortrag über MoinMoin (Reimar Bauer) * Vortrag über das Publisher/Subscriber-Pattern (Observer-Pattern) (Christopher Arndt) * Diskussion: Weitere Vorgehensweise und Verwendung des pyCologne Logos Ab ca. 20:30 Uhr werden wir den Abend gemütlich in

Re: eggs considered harmful

2007-06-25 Thread Christopher Arndt
On 21 Jun., 14:10, Harry George <[EMAIL PROTECTED]> wrote: > I've asked before, and I'll ask again: If you are doing a Python > project, please make a self-sufficient tarball available as well. Alomost all projects I know of that provide eggs, also have a CVS or SVN repository. Just download a tag

Re: A few questions

2007-05-21 Thread Christopher Arndt
I have a few quibles with your summary of Python's properties: On 21 Mai, 08:16, John Nagle <[EMAIL PROTECTED]> wrote: > If you have a computer science background, here's all you need > to know: Python is a byte-code interpreted untyped Python is strongly but dynamically typed. The fact that

Re: customary way of keeping your own Python and module directory in $HOME

2007-05-21 Thread Christopher Arndt
On 15 Mai, 02:55, [EMAIL PROTECTED] wrote: > My issues have been with keeping a ~/pylib directory for extra > modules, and reconciling that with setuptools / Easy Install. I'm > curious to hear how other folks manage their own local module > directory. For Python libraries, I use the workingenv.py

Re: Getting some element from sets.Set

2007-05-07 Thread Christopher Arndt
On 4 Mai, 10:23, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > > It is not possible to index set objects. That is OK. > > > But, what if I want to find some element from the Set. > > In the particular case, I have to read an attribute from any one of > the elements, which one doesn't matter be

Parse email delivery status notifications (DSN) ?

2006-04-13 Thread Christopher Arndt
(please CC me in you replies if possible, I am not on the list) Hi, I am trying to write a script, that processes bounced emails from our mailing campaigns to remove them from the distribution list and to update the customer database. Since our mailing program is not able to set the "Return-Path

Re: ftputil - uploading many files too long

2005-07-11 Thread Christopher Arndt
geon schrieb: > Hi, > > When I try to upload many files I get such a error message: > > [...] traceback deleted > > ftputil.ftp_error.TemporaryError: 421 Login Timeout (25 seconds): closing > contro > l connection. > > I think its not about many files but because of it takes too long for my ft

pylize 1.2b released

2005-07-08 Thread Christopher Arndt
arndt.de/en/software/pylize/> Author: Christopher Arndt <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Modules for inclusion in standard library?

2005-06-30 Thread Christopher Arndt
Simon Brunning schrieb: > On 6/29/05, Christopher Arndt <[EMAIL PROTECTED]> wrote: > > > Adding sqllite to the standard library has been discussed before: > http://groups-beta.google.com/group/comp.lang.python/browse_thread/thread/fd150297c201f814 Yeah, but they didn

Re: Debugger Confusion

2005-06-29 Thread Christopher Arndt
Rex Eastbourne schrieb: > Also, when I try running pdb in my Emacs shell, I get very weird > behavior: for instance, I'll hit 'h' and enter twenty times with no > output. Then, all of a sudden, twenty output messages will pop up. That may be due to output buffering. Try running your script with "p

Re: Modules for inclusion in standard library?

2005-06-29 Thread Christopher Arndt
Reinhold Birkenfeld schrieb: > Do you have any other good and valued Python modules that you would think are > bug-free, mature (that includes a long release distance) and useful enough to > be granted a place in the stdlib? Hmmm, let's look into /site-packackes, That's what I always have install