Change by Orivej Desh :
--
pull_requests: +15868
pull_request: https://github.com/python/cpython/pull/16283
___
Python tracker
<https://bugs.python.org/issue6
Change by Orivej Desh :
--
nosy: +orivej
___
Python tracker
<https://bugs.python.org/issue9334>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Orivej Desh :
See https://github.com/python/cpython/pull/14897
The bug was introduced in
https://github.com/python/cpython/commit/0327bde9da203bb256b58218d012ca76ad0db4e4#diff-fa81ddea06129e7a2ef6b5a1c6a0af4dR925
--
components: Interpreter Core
messages: 348292
Change by Orivej Desh :
--
keywords: +patch
pull_requests: +13849
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/13986
___
Python tracker
<https://bugs.python.org/issu
Orivej Desh added the comment:
collections.UserString.__rmod__ references an undefined variable `args`:
def __rmod__(self, format):
return self.__class__(format % args)
https://github.com/python/cpython/commit/573b44c18f69307d7dbc95c950aab57ef7ea303e#diff
Change by Orivej Desh :
--
nosy: +orivej
___
Python tracker
<https://bugs.python.org/issue1692335>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Orivej Desh :
--
nosy: +orivej
___
Python tracker
<https://bugs.python.org/issue32696>
___
___
Python-bugs-list mailing list
Unsubscribe:
Orivej Desh added the comment:
I understand the desirability of avoiding potential problems on supported
platforms (given that you can not test building Python on all of them) and
recognize that both options you have given are reasonable, but as I see it
posixmodule.c incorrectly uses
Orivej Desh added the comment:
The explicit conditional on __APPLE__ can be avoided with the attached patch.
(Tested on NixOS and macOS with Nixpkgs.)
--
nosy: +orivej
Added file: https://bugs.python.org/file47666/darwin-libutil.patch
___
Python