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
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
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
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
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&
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
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