Nick Guenther added the comment:
Hello everyone, and thank you as usual for all your hard work keeping the
python ecosystem going.
I saw that the start of this thread said it was going to
> - make ftplib, imaplib, nntplib, pop3lib, smtplib etc. validate certs by
> default.
but this
Nick Guenther added the comment:
Thank you for taking the time to consider my points! Yes, I think you
understood exactly what I was getting at.
I slept on it and thought about what I'd posted the day after and realized most
of the points you raise, especially that serialized next()
New submission from Nick Guenther :
multiprocessing.Pool.imap() is supposed to be a lazy version of map. But it's
not: it submits work to its workers eagerly. As a consequence, in a pipeline,
all the work from earlier steps is queued, performed, and finished first,
before starting
New submission from Nick Guenther:
This code doesn't work. I think it should.
import dbm
with dbm.open("what is box.db", "c") as db:
db["Bpoind"] = Boing
Indeed, there is nothing supporting PEP 343 for dbm on my system:
[kousu@galleon ~]$ grep
Changes by Nick Guenther :
--
nosy: +kousu
___
Python tracker
<http://bugs.python.org/issue10976>
___
___
Python-bugs-list mailing list
Unsubscribe:
Nick Guenther added the comment:
Thank you. Sorry for the duplicates. I tried to search the bug tracker but
nothing stood out to me.
--
___
Python tracker
<http://bugs.python.org/issue19
New submission from Nick Guenther:
Python3's docs given by
>> help("import")
duplicate these two paragraphs:
"The *public names* defined by a module are determined by checking the
module's namespace for a variable named ``__all__``; if defined, it
must be a sequ
Nick Guenther added the comment:
I see that in Doc/tools/sphinx-build.py there is this check:
if sys.version_info[:3] < (2, 4, 0):
sys.stderr.write("""\
Error: Sphinx needs to be executed with Python 2.4 or newer (not 3.0 though).
(If you run this from the Makefil
New submission from Nick Guenther:
I'm running Arch. I just checked out python's hg and tried to build the docs,
and found that I couldn't:
$ cd cpython/doc
$ make update
[lots of output stripped]
$ make pydoc-topics
mkdir -p build/pydoc-topics build/doctrees
python tools/sph
Nick Guenther <[EMAIL PROTECTED]> added the comment:
Oh, okay. That's really confusing because I expect "in" to always return
a bool, but in the spirit of python there's no reason it should I guess.
__
Tracker <[EMAIL PROTECTED]>
&
New submission from Nick Guenther <[EMAIL PROTECTED]>:
I think I've found a bug in python's list comprehension parser. Observe:
>>> [e for i in j in ['a','b','c']]
Traceback (most recent call last):
File "", line 1, in
NameErro
11 matches
Mail list logo