[issue1649329] Extract file-finding and language-handling code from gettext.find

2011-02-16 Thread Shannon -jj Behrens
Shannon -jj Behrens added the comment: The more I think about this, the more I think we should just drop it. * The easiest way around my original problem was to not install the eggs in zipped format. That's easy. Just mark the egg as not zip safe. * I don't currently

[issue1649329] Extract file-finding and language-handling code from gettext.find

2010-11-30 Thread Shannon -jj Behrens
Shannon -jj Behrens added the comment: Sorry, I just had a baby on Saturday. Hence, I'm a bit late getting to this. It might take me a couple weeks. -- ___ Python tracker <http://bugs.python.org/issu

[issue1649329] Extract file-finding and language-handling code from gettext.find

2010-11-25 Thread Shannon -jj Behrens
Shannon -jj Behrens added the comment: I've never managed to get a patch into Python, but I wouldn't mind trying ;) -- ___ Python tracker <http://bugs.python.org

[issue1649329] Extract file-finding and language-handling code from gettext.find

2010-11-25 Thread Shannon -jj Behrens
Shannon -jj Behrens added the comment: Although, perhaps this bug is going away. It seems like using zip files for eggs is going out of vogue. -- ___ Python tracker <http://bugs.python.org/issue1649

[issue1649329] Extract file-finding and language-handling code from gettext.find

2010-11-25 Thread Shannon -jj Behrens
Shannon -jj Behrens added the comment: > OTOH maybe a lightweight ABC with mixin methods and a concrete implementation > of the full gettext logic may be clear and educational here. Shannon, if > you’re still getting those emails, what do you think? Yep, that&

[issue3893] timedelta overflows in a surprising way

2008-09-18 Thread Shannon -jj Behrens
Shannon -jj Behrens <[EMAIL PROTECTED]> added the comment: Yes, that makes perfect sense. Sorry, I missed that part of the docs. Please feel free to close this bug. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3893] timedelta overflows in a surprising way

2008-09-17 Thread Shannon -jj Behrens
New submission from Shannon -jj Behrens <[EMAIL PROTECTED]>: I was very surprised by the following behavior: >>> from datetime import datetime >>> now = datetime.today() >>> future = datetime.today() >>> (now - future).seconds 86395 I kno