New submission from Nate <[EMAIL PROTECTED]>:
The following code shows no matches though the strings clearly match.
from difflib import
New submission from Nate :
In multiprocessing/reduction.py, there is a hack workaround in the sendfds()
and recvfds() methods for darwin, as determined by the "ACKNOWLEDGE" constant.
There is a reference to issue #14669 in the code related to why this was added
in the first place
Nate added the comment:
According to https://developer.apple.com/library/content/qa/qa1541/_index.html
some bugs were fixed in 10.5. Not sure if the original attempt to patch the
problem was happening on < 10.5, or if this was still a problem in 10.5+.
I can't for the life of me
New submission from Nate DeSimone :
During network transit, .exe generated with distutils may become corrupted.
The part of the file that is a binary executable is small compared to the full
package typically, so it is possible for the installer to run and lay down bad
files. It would be
New submission from Nate Woods :
I have a small patch that would make zipapp respect SOURCE_DATE_EPOCH. This
will ensure the zip bundles created by zipapp have consistent hashes regardless
of when the source files were last touched. This idea came to my attention
recently when I came
New submission from Nate Soares:
[NOTE: In this comment, I use BB to mean unicode character 0x1D539, b/c the
issue tracker won't let me submit a comment with unicode characters in it.]
Directory structure:
repro/
foo.py
test_foo.py
Contents of foo.py:
BB = 1
__all__ =
Nate Soares added the comment:
To be clear, the trouble I was trying to point at is that if foo.py didn't
have __all__, then it would still have a BB attribute. But if the module is
given __all__, the BB is normalized away into a B. This seems like pretty
strange/counterintuitive behavior
Changes by Nate Tangsurat :
--
pull_requests: +3082
___
Python tracker
<http://bugs.python.org/issue30824>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Nate Soares:
Here's an example test that fails:
def test_isabstract_during_init_subclass(self):
from abc import ABCMeta, abstractmethod
isabstract_checks = []
class AbstractChecker(metaclass=ABCMeta):
def __init_subclass_
Changes by Nate Soares :
--
pull_requests: +556
___
Python tracker
<http://bugs.python.org/issue29822>
___
___
Python-bugs-list mailing list
Unsubscribe:
Nate Soares added the comment:
I didn't know about issue29638, and I'm not sure whether my PR fixes it.
Looking at that bug, I don't think that my PR would fix it, because I still
trust TPFLAGS_IS_ABSTRACT when __abstractmethods__ exists. That said, I'm not
clear on how
Changes by Nate Soares :
--
pull_requests: +1390
___
Python tracker
<http://bugs.python.org/issue29581>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Nate Soares :
--
pull_requests: +2045
___
Python tracker
<http://bugs.python.org/issue29822>
___
___
Python-bugs-list mailing list
Unsubscribe:
Nate Atkinson added the comment:
To be clear-- is_alive() doesn't *always* return True. It returns True until
.join() is called.
Python 3.6.7 (default, Oct 22 2018, 11:32:17)
[GCC 8.2.0] on linux
Type "help", "copyright", "credits" or "license" f
New submission from Nate Atkinson :
Here's what I expect to happen (Python2 behavior):
Python 2.7.14+ (default, Dec 5 2017, 15:17:02)
[GCC 7.2.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from
Nate Atkinson added the comment:
I notice that I maybe have inadvertently assigned this to the wrong group. I
suspect that this should apply to the "Library" rather than "Core". Sorry!
--
___
Python tracker
<https://bug
New submission from Nate Soares:
I believe I've found a bug (or, at least, critical shortcoming) in the way that
python 3.6's __init_subclass__ interacts with abc.ABCMeta (and, presumably,
most other metaclasses in the standard library). In short, if a class
subclasses both an abst
17 matches
Mail list logo