[issue34305] inspect.getsourcefile and inspect.getcomments do not work with decorated functions

2018-11-05 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35105] Document that CPython accepts "invalid" identifiers

2018-11-05 Thread orlnub123
orlnub123 added the comment: I take back my previous suggestion, I agree that documenting it in setattr() (and **kwargs) is the way to go. It's obvious that you can assign anything to the __dict__, since it represents a dict, but setattr() is more ambiguous. 'Anything' was the key word for

[issue35165] Possible wrong method name in attribute references doc

2018-11-05 Thread Denis Osipov
Denis Osipov added the comment: Got it. But now docs says that overriding the __getattr__() method is enough to customize attribute access. It's not completely true. If I understand it correct, to make __getattr__() work every time you need to call it by __getattribute__ or raise

[issue19675] Pool dies with excessive workers, but does not cleanup

2018-11-05 Thread Julien Palard
Change by Julien Palard : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34751] Hash collisions for tuples

2018-11-05 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: Many thanks! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25750] tp_descr_get(self, obj, type) is called without owning a reference to "self"

2018-11-05 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: > Is it necessary to use METH_FASTCALL? In Python 3, the bug only occurs with METH_FASTCALL. The issue is a reference counting bug and the temporary tuple used for a METH_VARARGS method avoids the bug. -- ___

[issue26740] tarfile: accessing (listing and extracting) tarball fails with UnicodeDecodeError

2018-11-05 Thread SÅ‚awomir Nizio
SÅ‚awomir Nizio added the comment: I had the same problem with entries: SCHILY.xattr.system.posix_acl_default, SCHILY.xattr.system.posix_acl_access in a tarball with pax header. This seems to be fixed for Python 3 in the issue 8633, commit 1465cc2 in cpython. Tarfile from Python 2 assumes

<    1   2