Re: [Python-Dev] mUTF-7 support?

2014-10-10 Thread Charles Cazabon
in Python 2 either. It never supported international mailbox names. Correct. I had to hack in mUTF-7 support in getmail to properly support international IMAP users. Charles -- --- Charles Cazabon GPL'ed software available

Re: [Python-Dev] datetime nanosecond support

2012-07-25 Thread Charles Cazabon
in that it uses an idealized 24*60*60 second day, etc. Charles -- --- Charles Cazabon GPL'ed software available at: http://pyropus.ca/software

Re: [Python-Dev] Anyone still using Python 2.5?

2011-12-21 Thread Charles Cazabon
and such that don't necessarily run a current OS, so getmail v4 targets 2.3.3 and up. If I'm writing something new today, I usually assume 2.6 and up. Charles -- --- Charles Cazabon GPL'ed software available at: http

Re: [Python-Dev] 2.7 Release? 2.7 == last of the 2.x line?

2009-11-03 Thread Charles Cazabon
for them to upgrade will only hurt Python 3. Charles -- --- Charles Cazabon GPL'ed software available at: http://pyropus.ca/software

Re: [Python-Dev] 2.7 Release? 2.7 == last of the 2.x line?

2009-11-03 Thread Charles Cazabon
and switch to 3 now is simply not realistic in any of the environments in which I use Python daily. My $0.02. Charles -- --- Charles Cazabon GPL'ed software available at: http://pyropus.ca/software

Re: [Python-Dev] Addition of pyprocessing module to standard lib.

2008-05-20 Thread Charles Cazabon
) on various hardware platforms. I used it extensively when doing portability testing of another project. http://www.testdrive.hp.com/ Charles -- --- Charles Cazabon GPL'ed software available at: http://pyropus.ca

Re: [Python-Dev] Addition of pyprocessing module to standard lib.

2008-05-14 Thread Charles Cazabon
elderly Solaris 8 box. I didn't test it on anything else. Charles -- --- Charles Cazabon GPL'ed software available at: http://pyropus.ca/software

[Python-Dev] [OT] Re: getpass and stdin

2008-02-26 Thread Charles Cazabon
. Apologies that he's decided to bother you with it. Charles -- -- Charles Cazabon [EMAIL PROTECTED] Software, consulting, and services available at http://pyropus.ca

Re: [Python-Dev] Testers wanted: mailbox.py bugfix

2007-01-17 Thread Charles Cazabon
-- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed software available at: http://pyropus.ca/software

Re: [Python-Dev] beta1 coming real soon

2006-06-14 Thread Charles Cazabon
: Thomas Heller [EMAIL PROTECTED] To: python-dev@python.org Date: Fri, 31 Dec 1999 23:11:35 +0100 Subject: Re: [Python-Dev] beta1 coming real soon Stolen Guido's time machine, have we? Charles -- --- Charles Cazabon

Re: [Python-Dev] pysqlite for 2.5?

2006-03-29 Thread Charles Cazabon
-- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed software available at: http://pyropus.ca/software/ --- ___ Python-Dev

Re: [Python-Dev] pysqlite for 2.5?

2006-03-28 Thread Charles Cazabon
is a good idea. Whatever name is chosen: please no from sqlite3 import dbapi2 as sqlite! Amen. db.sqlite3 is the perfect name. Charles -- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed software available

Re: [Python-Dev] What about PEP 299?

2006-03-28 Thread Charles Cazabon
() with sys.argv as its argument(s), so the user can get this behaviour with `python -X somemodule.py`. Charles -- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed software available at: http

Re: [Python-Dev] What about PEP 299?

2006-03-28 Thread Charles Cazabon
Guido van Rossum [EMAIL PROTECTED] wrote: On 3/28/06, Charles Cazabon [EMAIL PROTECTED] wrote: It might be worth instead adding an option flag to the executable that implies from the loaded module, run __main__() with sys.argv as its argument(s), so the user can get this behaviour

Re: [Python-Dev] The path module PEP

2006-01-25 Thread Charles Cazabon
-- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed software available at: http://pyropus.ca/software/ --- ___ Python-Dev mailing list Python-Dev@python.org http

Re: [Python-Dev] The path module PEP

2006-01-24 Thread Charles Cazabon
be more readable and obvious. Charles -- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed software available at: http://pyropus.ca/software

Re: [Python-Dev] timeout options in high-level networking modules

2005-12-22 Thread Charles Cazabon
. Right now, if you do socket.setdefaulttimeout() to a non-None value and then try to use anything that does SSL (poplib, imaplib), the connections will quickly die. Charles -- --- Charles Cazabon [EMAIL

Re: [Python-Dev] Plea to distribute debugging lib

2005-11-04 Thread Charles Cazabon
-- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed software available at: http://pyropus.ca/software/ --- ___ Python-Dev mailing list Python-Dev@python.org

Re: [Python-Dev] Replacement for print in Python 3.0

2005-09-01 Thread Charles Cazabon
has the interesting side-effect of writing to stdout. It's an anomaly. It stands out in the language as a sore thumb waiting for Guido's hammer. Charles -- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed

Re: [Python-Dev] Replacement for print in Python 3.0

2005-09-01 Thread Charles Cazabon
`. Charles -- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed software available at: http://pyropus.ca/software

Re: [Python-Dev] Replacement for print in Python 3.0

2005-09-01 Thread Charles Cazabon
Fredrik Lundh [EMAIL PROTECTED] wrote: Charles Cazabon wrote: in fact, it does nothing for the program but merely has the interesting side-effect of writing to stdout. yeah, real programmers don't generate output. That wasn't quite my point - I meant that the rest of Python's statements

Re: [Python-Dev] Proof of the pudding: str.partition()

2005-08-31 Thread Charles Cazabon
that for py3k that .rfind/.rindex/.rjust/.rsplit disappear, and .find/.index/.just/.split grow an optional fromright (or equivalent) optional keyword argument? Charles -- --- Charles Cazabon [EMAIL

Re: [Python-Dev] Proof of the pudding: str.partition()

2005-08-31 Thread Charles Cazabon
Guido van Rossum [EMAIL PROTECTED] wrote: On 8/31/05, Charles Cazabon [EMAIL PROTECTED] wrote: While I'm at it, why not propose that for py3k that .rfind/.rindex/.rjust/.rsplit disappear, and .find/.index/.just/.split grow an optional fromright (or equivalent) optional keyword argument

Re: [Python-Dev] Python 3 design principles

2005-08-31 Thread Charles Cazabon
namespace, making print an alias for writeln, alias the standard library namespace, ... ? Charles -- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed software available at: http://pyropus.ca/software

Re: [Python-Dev] partition() (was: Remove str.find in 3.0?)

2005-08-30 Thread Charles Cazabon
, there's also .cut(). Charles -- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed software available at: http://pyropus.ca/software

Re: [Python-Dev] PEP: Migrating the Python CVS to Subversion

2005-08-10 Thread Charles Cazabon
-- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed software available at: http://pyropus.ca/software/ --- ___ Python-Dev mailing list

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

2005-08-05 Thread Charles Cazabon
thinks this?). Should we toss in a subclass called SimpleError? Much Python code I've looked at uses ValueError for this purpose. Would adding a special exception add much utility? Charles -- --- Charles Cazabon

Re: [Python-Dev] Wishlist: dowhile

2005-06-15 Thread Charles Cazabon
-- --- Charles Cazabon [EMAIL PROTECTED] GPL'ed software available at: http://pyropus.ca/software/ --- ___ Python-Dev mailing list