Doug Hoskisson added the comment:
My suggestion was not to delete the "approximate" entirely. Just move it out of
the first sentence to make it more consistent with the other documentation.
This is the model I'm seeing in empty() and full():
The first sentence is something si
Changes by Doug Hellmann :
--
nosy: +doughellmann
___
Python tracker
<http://bugs.python.org/issue22233>
___
___
Python-bugs-list mailing list
Unsubscribe:
Doug Royal added the comment:
This patch only addresses the proven errors with UserList, UserString, and
collections.
--
keywords: +patch
nosy: +doug.royal
Added file: http://bugs.python.org/file37145/fix_issue18473.patch
___
Python tracker
<h
New submission from Doug Gorley:
strptime() is returning the wrong date if I try to parse today's date
(2014-11-10) as a string with no separators, and if I ask strpdate() to look
for nonexistent hour and minute fields.
>>> datetime.datetime.strptime('20141110', '
Doug Gorley added the comment:
I expected the second call to strpdate() to throw an exception, because %Y
consumed '2014', %m consumed '11', and %d consumed '10', leaving nothing for %H
and %M to match. That would be
New submission from Doug Hellmann:
Under python 2.7 using the "run" command within pdb and passing it arguments
causes those arguments to be printed out. Under 3.5, this is no longer true.
$ python2.7 -m pdb pdb_run.py
> /Users/dhellmann/Dropbox/PyMOTW/Python3/pymotw-3/source/p
Doug Hellmann added the comment:
I should also mention that I haven't tested early versions of 3.x to see where
exactly the regression was introduced.
--
___
Python tracker
<http://bugs.python.org/is
Doug Hellmann added the comment:
The specific case I have right now is with a large code base written by someone
else who is seeing a TypeError when they call super(their-local-class,
self).__init__() because whatever class super() is returning is expecting
arguments to __init__(). The
Doug Hellmann added the comment:
@Nick - Being able to get to the source is ok, but if I can get the actual type
I can always get the source from that. I don't need the actual type object
except to know what it is, and it seems more flexible to return the class
object than a name or
Changes by Doug Hellmann :
--
nosy: +doughellmann
___
Python tracker
<http://bugs.python.org/issue23574>
___
___
Python-bugs-list mailing list
Unsubscribe:
Doug Rohm added the comment:
I realize this hasn't been commented on for a long time, but I'm noticing the
same issue trying to do a silent install with the 3.4.3 x64 windows installer.
The 3.4.2 x64 windows installer worked perfectly fine, but I can't seem to get
the registry
Doug Coleman added the comment:
Six years later and I'm still running into this exact bug with
``subprocess.CalledProcessError`` on python 2.7.12 when doing a
``multiprocessing.Pool.map`` and trying to catch errors from
``subprocess.check_output``.
What's the reason it was never
101 - 112 of 112 matches
Mail list logo