repo stringclasses 1 value | instance_id stringlengths 20 22 | problem_statement stringlengths 126 60.8k | merge_commit stringlengths 40 40 | base_commit stringlengths 40 40 |
|---|---|---|---|---|
python/cpython | python__cpython-92122 | # The docstring of `enum.Enum` is invalid in reStructuredText since 3.11
**Bug report**
The docstring of `enum.Enum` is invalid in reStructuredText since 3.11.
```
$ python3.11 ~/work/tmp/doc
Python 3.11.0a7+ (heads/main:ad5e852, May 2 2022, 01:40:38) [Clang 11.0.3 (clang-1103.0.32.62)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import enum
>>> print(enum.Enum.__doc__)
(snip)
- attribute access::
>>> Color.RED
<Color.RED: 1>
(snip)
>>>
```
The "attribute access" line ends with a code-block marker "::". But no code-block follows.
As a result, Sphinx emits a warning for the subclasses of Enum as following:
```
/Users/tkomiya/work/tmp/doc/example.py:docstring of example.Transpose:7: WARNING: Literal block expected; none found.
```
refs: https://github.com/sphinx-doc/sphinx/issues/10410
Additionally, the bullet list is interrupted by code-blocks. IMO, these code-blocks should be indented to the item level of the bullet list.
**Your environment**
- CPython versions tested on: Python 3.11.0a7+ (heads/main:ad5e852, May 2 2022, 01:40:38)
- Operating system and architecture: macOS 10.15
<!-- gh-linked-prs -->
### Linked PRs
* gh-92122
<!-- /gh-linked-prs -->
| 90d5c9b195a8133688c2d7b6ad9e0ca8b76df1df | dc8a86893df37e137cfe992e95e7d66cd68e9eaf |
python/cpython | python__cpython-92281 | # BytesGenerator breaks UTF8 string
Hi!
I found an issue when sending emails with Cyrillic letters in Subject header. Some spaces at Subject header are trimmed when sent.
Example:
When sending email with below subject:
`ะฃะฒะตะดะพะผะปะตะฝะธะต ะพ ะฟัะธะฝััะธะธ ะฒ ัะฐะฑะพัั ะพะฑัะฐัะตะฝะธั`
at SMTP server logs I see subject that differs from original:
`ะฃะฒะตะดะพะผะปะตะฝะธะต ะพ ะฟัะธะฝััะธะธะฒ ัะฐะฑะพัั ะพะฑัะฐัะตะฝะธั`
* As you can see, space between words "ะฟัะธะฝััะธะธ ะฒ" was stripped.
During research I've found that problem relates to small piece of code which encodes EmailMessage instance to byte string.
Python versions tested and problem confirmed: 3.8, 3.9, 3.10
Here is minimal reproducible example. Code can be used "as is", without any third party packages.
<details>
<summary>Minimal reproducible example</summary>
```
import io
import email.generator
from email.message import EmailMessage
from email.header import decode_header
def encode_decode(subject: str):
# preparing EmailMessage
msg = EmailMessage()
msg['Subject'] = subject
# below code sample was taken from "send_message" function (lib/python3.8/smtplib.py)
# this is the place where problem actually appears
with io.BytesIO() as bytesmsg:
g = email.generator.BytesGenerator(bytesmsg)
g.flatten(msg, linesep='\r\n')
flatmsg = bytesmsg.getvalue()
# assembling string and cutting off beginning part ('Subject: ')
result = ''
for string, encoding in decode_header(flatmsg.decode()):
result += string.decode(encoding=encoding or 'utf8')
return result[9:]
if __name__ == '__main__':
test_cases = [
'ััััััััััััััััััััััััั', # ok
'ัััััััััััััััััััััััั ', # ok
'ััััััััััััััััััััััั ั', # ok
'ัััััััััััััััััััััั ัั', # ok
'ััััััััััััััััััััั ั ั', # broken
'ัััััััััััััััััััั ัั ั', # ok
'ััััััััััััััััััั ั ั ั', # ok
'ัััััััััััััััััั ั ั ั ั', # broken
'ััััััััััััััััั ั ัั ั ั', # broken
'ัััััััััััััััั ั ััั ั ั', # broken
'ััััััััััััััั ั ัััั ั ั', # broken
'ัััััััััััััั ั ััััั ั ั', # broken
'ััััััััััััั ั ัััััั ั ั', # broken
'ัััััััััััั ั ััััััั ั ั', # broken
'ััััััััััั ั ัััััััั ั ั', # broken
'ัััััััััั ั ััััััััั ั ั', # broken
'ััััััััั ั ัััััััััั ั ั', # broken
'ัััััััั ั ััััััััััั ั ั', # broken
'ััััััั ั ัััััััััััั ั ั', # broken
'ัััััั ั ััััััััััััั ั ั', # broken
'ััััั ั ัััััััััััััั ั ั', # broken
'ัััั ั ััััััััััััััั ั ั', # broken
'ััั ั ัััััััััััััััั ั ั', # broken
'ัั ั ััััััััััััััััั ั ั', # broken
'ั ั ัััััััััััััััััั ั ั', # broken
' ั ััััััััััััััััััั ั ั', # broken
'ั ัััััััััััััััััััั ั ั', # ok
' ััััััััััััััััััััั ั ั', # broken
'ัััััััััััััััััััััั ั ั', # ok
]
for in_ in test_cases:
out_ = encode_decode(in_)
res = 'ok' if out_ == in_ else 'broken'
print(f'In | {in_}', f'Out | {out_}', f'Res | {res}\n', sep='\n')
```
</details>
Above code demonstrates inequality of input and output strings after encoding message with BytesGenerator. Please note that not all strings with Cyrillic letters are broken. Only those strings that have word with single Cyrillic char only are affected under some conditions.
Small additional list of string with explanations you can find below:
<details>
<summary>Additional strings with explanations</summary>
```
# Example 1 - below string will be broken
'ะฃะฒะตะดะพะผะปะตะฝะธะต ะพ ะฟัะธะฝััะธะธ ะฒ ัะฐะฑะพัั ะพะฑัะฐัะตะฝะธั ะดะปั ะฟะพะดะบะปััะตะฝะธั ััะปัะณะธ',
# fixed version (removed one cyrillic UTF8 "ะธ" from word "ะฟัะธะฝััะธะธ")
'ะฃะฒะตะดะพะผะปะตะฝะธะต ะพ ะฟัะธะฝััะธ ะฒ ัะฐะฑะพัั ะพะฑัะฐัะตะฝะธั ะดะปั ะฟะพะดะบะปััะตะฝะธั ััะปัะณะธ',
# fixed version (changed cyrillic UTF8 letter "ะพ" to ASCII letter "o")
'ะฃะฒะตะดะพะผะปะตะฝะธะต o ะฟัะธะฝััะธะธ ะฒ ัะฐะฑะพัั ะพะฑัะฐัะตะฝะธั ะดะปั ะฟะพะดะบะปััะตะฝะธั ััะปัะณะธ',
#
# Example 2 - below string will be broken
'ะฃะฒะตะดะพะผะปะตะฝะธะต ะฟัะธะฝััะธะธ ะฒ ัะฐะฑะพัั ะพะฑัะฐัะตะฝะธั ะดะปั ะฟะพะดะบะปััะตะฝะธั ััะปัะณะธ',
# fixed version (removed preposition "ะฒ" that consist from single cyrillic UTF8 letter)
'ะฃะฒะตะดะพะผะปะตะฝะธะต ะฟัะธะฝััะธะธ ัะฐะฑะพัั ะพะฑัะฐัะตะฝะธั ะดะปั ะฟะพะดะบะปััะตะฝะธั ััะปัะณะธ',
# fixed version (changed preposition "ะฒ" with cyrillic UTF8 letter to ASCII letter "B")
'ะฃะฒะตะดะพะผะปะตะฝะธะต ะฟัะธะฝััะธะธ B ัะฐะฑะพัั ะพะฑัะฐัะตะฝะธั ะดะปั ะฟะพะดะบะปััะตะฝะธั ััะปัะณะธ',
```
</details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-92281
* gh-119245
* gh-119246
<!-- /gh-linked-prs -->
| a6fdb31b6714c9f3c65fefbb3fe388b2b139a75f | c0d81b256604a1079349d82d136db43eefcb3df1 |
python/cpython | python__cpython-91963 | # Issues building Python main on Solaris
As previously mentioned here https://github.com/python/cpython/issues/89886#issuecomment-1106100113, Python main branch currently doesn't build on Solaris due to a problem with `hstrerror` detection and **libncurses** library.
#### hstrerror not found issue
`hstrerror` detection changed in #89886 (changing from `AC_LINK_IFELSE` to `AC_COMPILE_IFELSE`) and because on Oracle Solaris you can compile a program with `hstrerror` but need `-lresolv` for linking, it's now detected as available. Later, this results in `hstrerror` compilation failing at the end with relocation error "_symbol hstrerror: referenced symbol not found_".
I think that the real issue is in the "needs `-lresolv`" detection few lines above:
```configure
dnl On some systems (e.g. Solaris 9), hstrerror and inet_aton are in -lresolv
dnl On others, they are in the C library, so we to take no action
AC_CHECK_LIB(c, inet_aton, [$ac_cv_prog_TRUE],
AC_CHECK_LIB(resolv, inet_aton)
)
```
The problem here is that while `hstrerror` still needs `-lresolv`, `inet_aton` does not, and since only the latter is checked here, the system incorrectly determines that it's not necessary. When this detection gets updated to check both, `-lresolv` is correctly appended to `PATH` and this issue is gone.
#### curses build issue
The curses build issue is related to several missing defines and include path. With those added for Solaris, the build of `_curses` module succeeds.
<!-- gh-linked-prs -->
### Linked PRs
* gh-91963
<!-- /gh-linked-prs -->
| 1064141967a2d22c2ae9e22ae77e8c9616559947 | dcad8fecbd5c8f1542f7a46e0c7bb7e1f27ab115 |
python/cpython | python__cpython-91961 | # Add FreeBSD build and test using Cirrus-CI
**Feature or enhancement**
Add FreeBSD build and test using Cirrus-CI (for pull requests)
**Pitch**
Cirrus-CI is a hosted CI service that supports FreeBSD, Linux, macOS, and Winodws. Add a .cirrus.yml to provide CI coverage on pull requests for FreeBSD 12.3 and 13.0.
Adding a .cirrus.yml to build + test on FreeBSD will add coverage for pull requests. (The Cirrus-CI application would need to be enabled on the cpython repo.)
Here is an example run from my fork: https://cirrus-ci.com/build/5512210465161216
**Previous discussion**
<!-- gh-linked-prs -->
### Linked PRs
* gh-91961
* gh-108972
* gh-108993
* gh-108999
* gh-109010
* gh-109011
* gh-109127
* gh-109457
* gh-113938
<!-- /gh-linked-prs -->
| 2cd170db40ffba357848672ff3d2f8c1e0e74f2c | f8a047941f2e4a1848700c21d58a08c9ec6a9c68 |
python/cpython | python__cpython-102096 | # Deprecate and schedule removal of collections.abc.ByteString and typing.ByteString
The current docstring of `collections.abc.ByteString` is:
```
"""This unifies bytes and bytearray.
XXX Should add all their methods.
"""
```
Let's do that last thing. This will be useful for typing code that accepts both bytes and bytearray, especially with my proposal in PEP-688 to make bytes no longer acceptable as a shortcut for bytearray in the type system.
cc @rhettinger for `collections.abc`
<!-- gh-linked-prs -->
### Linked PRs
* gh-102096
* gh-104294
* gh-104422
* gh-104424
<!-- /gh-linked-prs -->
| 09b7695f12f2b44d2df6898407d7e68dd9493ed4 | 2ba931ff727395cf89b290ed313a8e15db0bfcf1 |
python/cpython | python__cpython-25518 | # Optimize the Fraction class arithmetics for small components
After #24779 there are some speed regressions, which can be [solved](https://github.com/python/cpython/pull/24779/commits/046c84e8f970306b668d62cfacbd58f65b8c6e66) by using private attributes in magic methods.
Also, right now the fractions module code is using sometimes private attributes (`_numerator` and `_denominator`, e.g. in the `__int__`) and sometimes - public (`numerator` and `denominator`, e.g. in the `__floor__`). This looks not very consistent, at least.
<!-- gh-linked-prs -->
### Linked PRs
* gh-25518
* gh-100791
<!-- /gh-linked-prs -->
| c8a1818fb01937b66b93728c11d68c9f9af688a5 | cc5a225cdc2a5d4e035dd08d59cef39182c10a6c |
python/cpython | python__cpython-91849 | # PCbuild/readme.txt mentions build_pgo.bat which was removed in python 3.6
The file `PCbuild/readme.txt` still mentions the `build_pgo.bat` script, even though it was removed in python 3.6 (see https://github.com/python/cpython/blob/f4c03484da59049eb62a9bf7777b963e2267d187/Misc/NEWS.d/3.6.0a1.rst)
<!-- gh-linked-prs -->
### Linked PRs
* gh-91849
* gh-107776
* gh-107777
<!-- /gh-linked-prs -->
| 906b73be5eada1995bd667a02c59f7a11998310f | 7c5153de5a2bd2c886173a317f116885a925cfce |
python/cpython | python__cpython-103773 | # Two (possible) improvements at dataclasses.rst
**Documentation**
Observed two possible improvements at [dataclasses.rst](https://github.com/python/cpython/blob/main/Doc/library/dataclasses.rst)
1. One of the examples at line 705 is throwing an exception. I would kindly suggest to update ```x: List = []``` by ```x: list = field(default_factory=list)``` to avoid the following exception: ```ValueError: mutable default <class 'list'> for field x is not allowed: use default_factory```
2. Remove trailing whitespace in line 745 to avoid exception with automated Azure PR Validation.
@ericvsmith I would be more than happy to raise a PR for above.
<!-- gh-linked-prs -->
### Linked PRs
* gh-103773
* gh-103774
<!-- /gh-linked-prs -->
| 7ef614c1adad2b8857442bf0fea649891b591109 | 3d29edaf0a5f2e12e7f72552f602c761ddaf0d13 |
python/cpython | python__cpython-136401 | # Assertion failure when func_repr is called on an already tp_clear-ed object
<!--
Use this template for hard crashes of the interpreter, segmentation faults, failed C-level assertions, and similar.
Do not submit this form if you encounter an exception being unexpectedly raised from a Python function.
Most of the time, these should be filed as bugs, rather than crashes.
The CPython interpreter is itself written in a different programming language, C.
For CPython, a "crash" is when Python itself fails, leading to a traceback in the C stack.
-->
**Crash report**
It is possible to resurrect a `tp_clear`-ed object using pure python. The following piece of code illustrates how:
```
import gc, weakref
class LateFin:
__slots__ = ('ref',)
def __del__(self):
# 8. Now `latefin`'s finalizer is called. Here we obtain a reference to
# `func`, which is currently undergoing `tp_clear`.
global func
func = self.ref()
class Cyclic(tuple):
__slots__ = ()
# 4. The finalizers of all garbage objects are called. In this case this is
# only us as `func` doesn't have a finalizer.
def __del__(self):
# 5. Create a weakref to `func` now. If we had created it earlier, it
# would have been cleared by the garbage collector before calling the
# finalizers.
self[1].ref = weakref.ref(self[0])
# 6. Drop the global reference to `latefin`. The only remaining
# reference is the one we have.
global latefin
del latefin
# 7. Now `func` is `tp_clear`-ed. This drops the last reference to `Cyclic`,
# which gets `tp_dealloc`-ed. This drops the last reference to `latefin`.
latefin = LateFin()
func = lambda: None
cyc = tuple.__new__(Cyclic, (func, latefin))
# 1. Create a reference cycle of `cyc` and `func`.
func.__module__ = cyc
# 2. Make the cycle unreachable, but keep the global reference to `latefin` so
# that it isn't detected as garbage. This way its finalizer will not be called
# immediately.
del func, cyc
# 3. Invoke garbage collection, which will find `cyc` and `func` as garbage.
gc.set_debug(gc.DEBUG_COLLECTABLE)
gc.collect()
gc.set_debug(0)
# 9. Call `repr()`, which will try to use the NULL `func_qualname`.
repr(func)
```
```
#5 0x00007ffff7d0a596 in __GI___assert_fail (assertion=assertion@entry=0x697e93 "obj && _PyUnicode_CHECK(obj)", file=file@entry=0x696a92 "Objects/unicodeobject.c", line=line@entry=3000,
function=function@entry=0x69e110 <__PRETTY_FUNCTION__.299> "unicode_fromformat_arg") at assert.c:101
#6 0x0000000000538d8e in unicode_fromformat_arg (writer=writer@entry=0x7fffffffd9f0, f=0x682bf1 "U at %p>", f@entry=0x682bf0 "%U at %p>", vargs=vargs@entry=0x7fffffffda28)
at Objects/unicodeobject.c:3000
#7 0x0000000000539098 in PyUnicode_FromFormatV (format=<optimized out>, vargs=vargs@entry=0x7fffffffda68) at Objects/unicodeobject.c:3109
#8 0x00000000005391ab in PyUnicode_FromFormat (format=format@entry=0x682be6 "<function %U at %p>") at Objects/unicodeobject.c:3161
#9 0x00000000004c2c7b in func_repr (op=<optimized out>) at Objects/funcobject.c:710
#10 0x00000000004ea437 in PyObject_Repr (v=0x91d650) at Objects/object.c:434
#11 0x0000000000571932 in builtin_repr (module=<optimized out>, obj=<optimized out>) at Python/bltinmodule.c:2252
#12 0x00000000004e6c82 in cfunction_vectorcall_O (func=0x9a10f0, args=<optimized out>, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/methodobject.c:514
#13 0x00000000004a5700 in _PyObject_VectorcallTstate (tstate=0x915430 <_PyRuntime+166000>, callable=callable@entry=0x9a10f0, args=args@entry=0x9a4f98, nargsf=9223372036854775809,
kwnames=kwnames@entry=0x0) at ./Include/internal/pycore_call.h:92
#14 0x00000000004a57cb in PyObject_Vectorcall (callable=callable@entry=0x9a10f0, args=args@entry=0x9a4f98, nargsf=<optimized out>, kwnames=kwnames@entry=0x0) at Objects/call.c:299
#15 0x0000000000586b4b in _PyEval_EvalFrameDefault (tstate=0x915430 <_PyRuntime+166000>, frame=0x9a4f40, throwflag=<optimized out>) at Python/ceval.c:4765
#16 0x000000000058af91 in _PyEval_EvalFrame (tstate=tstate@entry=0x915430 <_PyRuntime+166000>, frame=frame@entry=0x9a4f40, throwflag=throwflag@entry=0)
at ./Include/internal/pycore_ceval.h:66
#17 0x000000000058b09c in _PyEval_Vector (tstate=tstate@entry=0x915430 <_PyRuntime+166000>, func=func@entry=0xa41dd0, locals=locals@entry=0xa5ca80, args=args@entry=0x0,
argcount=argcount@entry=0, kwnames=kwnames@entry=0x0) at Python/ceval.c:6387
#18 0x000000000058b190 in PyEval_EvalCode (co=co@entry=0xaa0e70, globals=globals@entry=0xa5ca80, locals=locals@entry=0xa5ca80) at Python/ceval.c:1157
#19 0x00000000005cb444 in run_eval_code_obj (tstate=tstate@entry=0x915430 <_PyRuntime+166000>, co=co@entry=0xaa0e70, globals=globals@entry=0xa5ca80, locals=locals@entry=0xa5ca80)
at Python/pythonrun.c:1713
#20 0x00000000005cb4fb in run_mod (mod=mod@entry=0xaafda0, filename=filename@entry=0xa8dad0, globals=globals@entry=0xa5ca80, locals=locals@entry=0xa5ca80, flags=flags@entry=0x7fffffffdf08,
arena=arena@entry=0xa8dc20) at Python/pythonrun.c:1734
#21 0x00000000005cb5bf in pyrun_file (fp=fp@entry=0x9c8d20, filename=filename@entry=0xa8dad0, start=start@entry=257, globals=globals@entry=0xa5ca80, locals=locals@entry=0xa5ca80,
closeit=closeit@entry=1, flags=0x7fffffffdf08) at Python/pythonrun.c:1629
#22 0x00000000005cded0 in _PyRun_SimpleFileObject (fp=fp@entry=0x9c8d20, filename=filename@entry=0xa8dad0, closeit=closeit@entry=1, flags=flags@entry=0x7fffffffdf08)
at Python/pythonrun.c:439
#23 0x00000000005ce078 in _PyRun_AnyFileObject (fp=fp@entry=0x9c8d20, filename=filename@entry=0xa8dad0, closeit=closeit@entry=1, flags=flags@entry=0x7fffffffdf08) at Python/pythonrun.c:78
#24 0x00000000005e9d4b in pymain_run_file_obj (program_name=program_name@entry=0xa02210, filename=filename@entry=0xa8dad0, skip_source_first_line=0) at Modules/main.c:353
#25 0x00000000005e9e49 in pymain_run_file (config=config@entry=0x8fb490 <_PyRuntime+59600>) at Modules/main.c:372
#26 0x00000000005ea4e8 in pymain_run_python (exitcode=exitcode@entry=0x7fffffffe05c) at Modules/main.c:592
#27 0x00000000005ea735 in Py_RunMain () at Modules/main.c:671
#28 0x00000000005ea78a in pymain_main (args=args@entry=0x7fffffffe0a0) at Modules/main.c:701
#29 0x00000000005ea80f in Py_BytesMain (argc=<optimized out>, argv=<optimized out>) at Modules/main.c:725
#30 0x000000000041d70f in main (argc=<optimized out>, argv=<optimized out>) at ./Programs/python.c:15
```
**Your environment**
- CPython versions tested on: 3.10.4, 3.11.0a7+
- Operating system and architecture: x86_64
<!-- gh-linked-prs -->
### Linked PRs
* gh-136401
<!-- /gh-linked-prs -->
| b6b99bf7f1edab77c485faf4e23da868f3a7b68c | bc9bc078df302dd5cc9928c42c37f4f6d414c767 |
python/cpython | python__cpython-91630 | # Improve Fish path setup on macOS
**Feature or enhancement**
Improve the path setup on macOS for users of the Fish shell
**Pitch**
Right now, the installer sets up python paths the same way as on every other shell: by appending a line to the end of the config file that adds directly to $PATH. Modifying the users config directly is not the best way to do this in fish, which has a conf.d directory to place configs into instead. In addition, fish has the `fish_add_path` function that doesn't allow duplicate entries in the PATH which can get out of hand when re-sourcing the config file multiple times.
I am working on a PR to address this right now, by writing a file for each python install to conf.d which adds the path using `fish_add_path`
<!--
New features to Python should first be discussed elsewhere before creating issues on GitHub,
for example in the "ideas" category (https://discuss.python.org/c/ideas/6) of discuss.python.org,
or the python-ideas mailing list (https://mail.python.org/mailman3/lists/python-ideas.python.org/).
Use this space to post links to the places where you have already discussed this feature proposal:
-->
<!--
You can freely edit this text. Remove any lines you believe are unnecessary.
-->
<!-- gh-linked-prs -->
### Linked PRs
* gh-91630
<!-- /gh-linked-prs -->
| 5fa5b7facbcd1f725e51daf31c321e02b7db3f02 | df987331d896031799f33cb0f3a7b5c5712cb4e7 |
python/cpython | python__cpython-114501 | # dump of a single table in sqlite3 library
**Feature or enhancement**
_I would like to dump only one table but by the looks of it, there is no parameter for this._
see https://stackoverflow.com/questions/6677540/how-do-i-dump-a-single-sqlite3-table-in-python
**Pitch**
Copying tables is much easier when a dump per table is available.
**Previous discussion**
https://stackoverflow.com/a/6677833/1497139 already suggested a code change in stackoverflow in 2011. I think it just never made it as a feature request here.
<!-- gh-linked-prs -->
### Linked PRs
* gh-114501
<!-- /gh-linked-prs -->
| 1a10437a14b13100bdf41cbdab819c33258deb65 | 4bf41879d03b1da3c6d38c39a04331e3ae2e7545 |
python/cpython | python__cpython-91568 | # Code still refers to bugs.python.org
The code on main still references bugs.python.org as the location to report bugs rather than https://github.com/python/cpython/issues while the users will be redirected from bugs.python.org it would be preferable to reference the correct URL.
Using an re of "bugs\.python\.org/?[\)\s>]" to try to exclude results that are mentioning past bugs/issues this returns instances of:
```
.\Doc\README.rst:
133 : `Python bug tracker <https://bugs.python.org>`_.
.\Doc\tools\extensions\pyspecific.py:
57 : # Support for marking up and linking to bugs.python.org issues
.\Doc\whatsnew\2.6.rst:
184 : https://bugs.python.org
.\Doc\whatsnew\2.7.rst:
73 : feature or the issue on https://bugs.python.org in which a change was
.\Lib\locale.py:
1478 : # submit a bug report to the Python bug tracker at http://bugs.python.org/
.\Lib\platform.py:
13 : # Python bug tracker (http://bugs.python.org) and assign them to "lemburg".
.\Lib\test\crashers\README:
11 : failure, as well as a bugs.python.org issue number if it exists. Particularly
.\Lib\test\test_xml_etree.py:
2182 : # reported on bugs.python.org
.\Mac\README.rst:
338 : configure: WARNING: ## Report this to https://bugs.python.org/ ##
.\Python\dtoa.c:
75 : * (http://bugs.python.org). */
.\configure:
5 : # Report bugs to <https://bugs.python.org/>.
270 : $0: https://bugs.python.org/ about your system, including
1918 : Report bugs to <https://bugs.python.org/>.
2141 : ## Report this to https://bugs.python.org/ ##
25522 : Report bugs to <https://bugs.python.org/>."
```
The Doc\whatsnew entries could safely be ignored in my opinion, the platform, readme and configure items only need simple substitutions but the .\Doc\tools\extensions\pyspecific.py will require more work as it maps between bpo and bugs.
I would suggest that any changes to the platform, readme and configure items could be considered for backporting to versions still in maintenance.
<!-- gh-linked-prs -->
### Linked PRs
* gh-91568
* gh-117450
* gh-117497
* gh-117890
<!-- /gh-linked-prs -->
| 3de09cadde788065a4f2d45117e789c9353bbd12 | 90c3c68a658db6951b77a5be50088ec2f6adc8eb |
python/cpython | python__cpython-131812 | # multiprocessing.get_logger() logger deadlock on first call by subprocess to logger.info("...") due to internal logger.debug(...) call by multiprocessing.Queue._start_thread
<b>Python:</b> v3.10.2
<b>Platform:</b> Windows 10
<b>Description:</b> A deadlock occurs when a subprocess uses a logging.Logger returned multiprocessing.get_logger() where the initial logging level at the time of the first call to logger.info is level DEBUG or lower, which causes, during that same initial call to logger.info, an internal call to logger.debug(...) (at top of multiprocessing.Queue._start_thread), all of which causes the same thread to attempt to re-acquire an already held lock.
<b>Workaround:</b> Set logging level to INFO or higher (something above DEBUG) to prevent the logging.debug() statement at the top of Queue._start_thread from attempting to init/lock while init is already in progress.
The following example exhibits the issue when SHOW_THE_DEADLOCK==True. Set SHOW_THE_DEADLOCK==False to observe the workaround.
<pre>
from concurrent.futures import ProcessPoolExecutor
import logging
import logging.handlers
from multiprocessing import freeze_support
import multiprocessing
import sys
<b>SHOW_THE_DEADLOCK = True</b> # True to show the bug, False to show workaround.
g_queue: multiprocessing.Queue = None
def global_init(logging_queue):
global g_queue
g_queue = logging_queue
def subprocess_logging_test():
queue_handler = logging.handlers.QueueHandler(g_queue)
l2 = multiprocessing.get_logger()
l2.addHandler(queue_handler)
<b> if not SHOW_THE_DEADLOCK:
l2.setLevel("INFO") # default level is UNSET, if level is <= DEBUG deadlock will occur, this prevents that.
l2.info("write to log once at info and higher to perform thread init etc.")</b>
l2.setLevel("DEBUG")
l2.info("If initial level is DEBUG, deadlock here, else OK.")
l2.warning("If initial level is DEBUG, never reach this point, else OK.")
l2.debug("If initial level is DEBUG, never reach this point, else OK.")
l2.info("If initial level is DEBUG, never reach this point, else OK.")
def main():
global g_queue
g_queue = multiprocessing.Queue(maxsize=99)
handler = logging.StreamHandler(stream=sys.stdout)
listener = logging.handlers.QueueListener(g_queue, handler)
listener.start()
with ProcessPoolExecutor(
initializer=global_init,
initargs=(g_queue,)
) as pexec:
f = pexec.submit(subprocess_logging_test)
f.result()
listener.stop()
if __name__ == '__main__':
freeze_support()
main()
</pre>
The following is an annotated stack from the above example when SHOW_THE_DEADLOCK==True.
<pre>
put (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\multiprocessing\queues.py:92)
<b>with self._notempty: # <----- dead lock</b>
if self._thread is None:
self._start_thread()
self._buffer.append(obj)
self._notempty.notify()
put_nowait (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\multiprocessing\queues.py:138)
enqueue (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\handlers.py:1423)
emit (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\handlers.py:1461)
handle (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\__init__.py:968)
callHandlers (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\__init__.py:1696)
handle (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\__init__.py:1634)
_log (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\__init__.py:1624)
log (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\__init__.py:1547)
debug (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\multiprocessing\util.py:50)
_start_thread (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\multiprocessing\queues.py:165)
def _start_thread(self):
<b>debug('Queue._start_thread()') # <----- at level DEBUG or lower, triggers logging call leading to deadlock.</b>
put (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\multiprocessing\queues.py:94)
put_nowait (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\multiprocessing\queues.py:138)
enqueue (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\handlers.py:1423)
emit (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\handlers.py:1461)
handle (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\__init__.py:968)
callHandlers (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\__init__.py:1696)
handle (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\__init__.py:1634)
_log (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\__init__.py:1624)
info (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\logging\__init__.py:1477)
subprocess_logging_test (c:\PythonTesting\logging_testing.py:25)
_process_worker (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\concurrent\futures\process.py:243)
run (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\multiprocessing\process.py:108)
_bootstrap (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\multiprocessing\process.py:315)
_main (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\multiprocessing\spawn.py:129)
spawn_main (c:\Users\HappyPythonDev\AppData\Local\Programs\Python\Python310\Lib\multiprocessing\spawn.py:116)
<module> (<string>:1)
</pre>
<!-- gh-linked-prs -->
### Linked PRs
* gh-131812
* gh-133898
* gh-133899
* gh-135858
* gh-135910
* gh-135911
* gh-135954
* gh-135988
* gh-135989
<!-- /gh-linked-prs -->
| 18d32fb646b804b26c80910b2c65938e81e2cced | ee0e22c088ce5483d4bacd5457d4feb5886bb58a |
python/cpython | python__cpython-108771 | # speed up urllib.request.getproxies_environment
in module urllib.request๏ผ function getproxies_environment ๏ผhttps://github.com/python/cpython/blob/main/Lib/urllib/request.py#L2493๏ผ
iterate over all environment variables twice
I made a test:
1. create 2500 environment variables
2. call and timing getproxies_environment()
3. the result is: getproxies_environment() take more than 50ms, which is a big overhead
so if there are many environment variables(like 10 thousands) in a machine, packages depend on function urllib.request.getproxies_environment (like requests does) shall be very slow
is 10 thousands environment variables reasonable๏ผ
yes it is, for example, in k8s cluster๏ผkubelete may add a set of environment variables all Services(could be 10 thousands even 100 thousands), in purpose of service discovery
so would it be ok that getproxies_environment don't iterate over all environment variables?
<!-- gh-linked-prs -->
### Linked PRs
* gh-108771
<!-- /gh-linked-prs -->
| 5094690efd7f663f2e0c1a2a633d3344a0557095 | 4f24b92aa0677ed5310dd2d1572b55f4e30c88ef |
python/cpython | python__cpython-101177 | # documentation for function arguments
it is confusing what these mean, is there a page which explains the difference between these, or if not, then could there be a page which explains the difference between these, (and more variations)
```
max(iterable, *[, key, default])
max(arg1, arg2, *args[, key])
iter(object[, sentinal])
input([prompt])
itertools.accumulate(iterable[, func, *, initial=None])
```
<!-- gh-linked-prs -->
### Linked PRs
* gh-101177
* gh-101199
* gh-101200
<!-- /gh-linked-prs -->
| 783d1bc51b886b6135e6a4effb91be207df5f50a | 4510fbb2163a5bdc4250752eab5a4bb9034dc76d |
python/cpython | python__cpython-91442 | # Documentation of asyncio.loop.subprocess_exec() mentions connect_write_pipe() in an incorrect context
In the [documentation of `asyncio.loop.subprocess_exec()`](https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.loop.subprocess_exec), in the description of each of `stdin`, `stdout`, `stderr` arguments, there is an item (correspondingly):
```
* a file-like object representing a pipe to be connected to the
subprocess's standard [input/output/error] stream using
:meth:`~loop.connect_write_pipe`
```
As far as I understand, only the stdin should be handled by `connect_write_pipe()`, and the other two are to be handled by `connect_read_pipe()`. This looks like a copy-paste error.
Also, the wording is misleading, in my opinion. It says that pipe is to be connected to the subprocessโs stdin using `connect_write_pipe()`. But this in fact conflates two different actions: one side of the pipe is connected to the processโs stdin (and this is done by asyncio+subprocess), while the other should be handled with `connect_write_pipe()` (and this you should do yourself it you want to make it accessible with asyncio).
Also, it says that a file-like object has to represent a pipe, but in fact I still can use a regular file object. So, some conditional wording should be used, in my opinion.
In fact, I would not even put this kind of clarification in the listโฆ maybe a paragraph after the list of options? I don't know if removing it altogether would be ok.
<!-- gh-linked-prs -->
### Linked PRs
* gh-91442
<!-- /gh-linked-prs -->
| 37e37553b09dba073cfe77d9fb96863b94df2fbc | d45225bd66a8123e4a30314c627f2586293ba532 |
python/cpython | python__cpython-129398 | # RFC: Clarify usage of macros for PySequence_Fast within the Limited C API
BPO | [47261](https://bugs.python.org/issue47261)
--- | :---
Nosy | @HaoZeke
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-04-08.15:14:46.053>
labels = ['expert-C-API', 'docs']
title = 'RFC: Clarify usage of macros for PySequence_Fast within the Limited C API'
updated_at = <Date 2022-04-08.15:19:49.541>
user = 'https://github.com/HaoZeke'
```
bugs.python.org fields:
```python
activity = <Date 2022-04-08.15:19:49.541>
actor = 'rgoswami'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation', 'C API']
creation = <Date 2022-04-08.15:14:46.053>
creator = 'rgoswami'
dependencies = []
files = []
hgrepos = []
issue_num = 47261
keywords = []
message_count = 2.0
messages = ['416989', '416990']
nosy_count = 2.0
nosy_names = ['docs@python', 'rgoswami']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue47261'
versions = []
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-129398
<!-- /gh-linked-prs -->
| 2ad069d906c6952250dabbffbcb882676011b310 | ae4788809d674f8e27faef2678953be8cf67d4a3 |
python/cpython | python__cpython-94504 | # importlib lock race issue in deadlock handling code
BPO | [47195](https://bugs.python.org/issue47195)
--- | :---
Nosy | @rpurdie
Files | <li>[testit2.py](https://bugs.python.org/file50714/testit2.py "Uploaded as text/plain at 2022-04-01.20:23:23 by @rpurdie")</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-04-01.20:23:24.167>
labels = ['interpreter-core', '3.10']
title = 'importlib lock race issue in deadlock handling code'
updated_at = <Date 2022-04-02.06:56:46.108>
user = 'https://github.com/rpurdie'
```
bugs.python.org fields:
```python
activity = <Date 2022-04-02.06:56:46.108>
actor = 'rpurdie'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Interpreter Core']
creation = <Date 2022-04-01.20:23:24.167>
creator = 'rpurdie'
dependencies = []
files = ['50714']
hgrepos = []
issue_num = 47195
keywords = []
message_count = 2.0
messages = ['416517', '416539']
nosy_count = 1.0
nosy_names = ['rpurdie']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue47195'
versions = ['Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-94504
<!-- /gh-linked-prs -->
| 3325f054e33b318aa56b74472f76a56b8afc0510 | 6b3993c556eb3bb36d1754a17643cddd3f6ade92 |
python/cpython | python__cpython-92046 | # Stable ABI: Some optional (#ifdef'd) functions aren't handled correctly
BPO | [47169](https://bugs.python.org/issue47169)
--- | :---
Nosy | @encukou, @kulikjak
PRs | <li>python/cpython#32365</li><li>python/cpython#32414</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-03-30.15:52:37.045>
labels = ['expert-C-API']
title = "Stable ABI: Some optional (#ifdef'd) functions aren't handled correctly"
updated_at = <Date 2022-04-08.12:49:59.275>
user = 'https://github.com/encukou'
```
bugs.python.org fields:
```python
activity = <Date 2022-04-08.12:49:59.275>
actor = 'petr.viktorin'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['C API']
creation = <Date 2022-03-30.15:52:37.045>
creator = 'petr.viktorin'
dependencies = []
files = []
hgrepos = []
issue_num = 47169
keywords = ['patch']
message_count = 2.0
messages = ['416377', '416477']
nosy_count = 2.0
nosy_names = ['petr.viktorin', 'kulikjak']
pr_nums = ['32365', '32414']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue47169'
versions = []
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-92046
<!-- /gh-linked-prs -->
| 15fe8cea174772060b24c96d335a498aba3b8ed4 | c87233fd3fa77067013c35328f8c4884f0567a59 |
python/cpython | python__cpython-124435 | # ZipFile.writestr should respect SOURCE_DATE_EPOCH
BPO | [47123](https://bugs.python.org/issue47123)
--- | :---
Nosy | @SomberNight
Files | <li>[zipfile_respect_sourcedate.diff](https://bugs.python.org/file50702/zipfile_respect_sourcedate.diff "Uploaded as text/plain at 2022-03-25.19:47:09 by @SomberNight"): change the ZipFile.writestr to respect SOURCE_DATE_EPOCH</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-03-25.19:47:10.113>
labels = ['type-feature', 'library', '3.9', '3.10', '3.11']
title = 'ZipFile.writestr should respect SOURCE_DATE_EPOCH'
updated_at = <Date 2022-03-25.19:47:10.113>
user = 'https://github.com/SomberNight'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-25.19:47:10.113>
actor = 'ghost43'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2022-03-25.19:47:10.113>
creator = 'ghost43'
dependencies = []
files = ['50702']
hgrepos = []
issue_num = 47123
keywords = ['patch']
message_count = 1.0
messages = ['416015']
nosy_count = 1.0
nosy_names = ['ghost43']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue47123'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124435
<!-- /gh-linked-prs -->
| 5d57959d7da8cfcef8df072a6ad53795c60546aa | dda02eb7be62bf0af850a7521c77c90ea997df6c |
python/cpython | python__cpython-103156 | # Make all jump opcodes relative
BPO | [47120](https://bugs.python.org/issue47120)
--- | :---
Nosy | @markshannon, @corona10, @brandtbucher, @iritkatriel
PRs | <li>python/cpython#32115</li><li>python/cpython#32215</li><li>python/cpython#32221</li><li>python/cpython#32353</li><li>python/cpython#32359</li><li>python/cpython#32400</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/iritkatriel'
closed_at = None
created_at = <Date 2022-03-25.14:30:53.931>
labels = ['interpreter-core', '3.11', 'performance']
title = 'Make all jump opcodes relative'
updated_at = <Date 2022-04-07.14:59:34.889>
user = 'https://github.com/iritkatriel'
```
bugs.python.org fields:
```python
activity = <Date 2022-04-07.14:59:34.889>
actor = 'iritkatriel'
assignee = 'iritkatriel'
closed = False
closed_date = None
closer = None
components = ['Interpreter Core']
creation = <Date 2022-03-25.14:30:53.931>
creator = 'iritkatriel'
dependencies = []
files = []
hgrepos = []
issue_num = 47120
keywords = ['patch']
message_count = 4.0
messages = ['416003', '416431', '416466', '416772']
nosy_count = 4.0
nosy_names = ['Mark.Shannon', 'corona10', 'brandtbucher', 'iritkatriel']
pr_nums = ['32115', '32215', '32221', '32353', '32359', '32400']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'performance'
url = 'https://bugs.python.org/issue47120'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-103156
<!-- /gh-linked-prs -->
| 21bea68e2e97369d808db7d053d4b51b3bc761b9 | 33822d037a3381d239dcc532937138da6f3da669 |
python/cpython | python__cpython-100731 | # SimpleHTTPRequestHandler has hard coded index page list.
BPO | [47063](https://bugs.python.org/issue47063)
--- | :---
Nosy | @ethanfurman, @@myronww
PRs | <li>python/cpython#31985</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-03-19.04:25:13.984>
labels = ['type-feature', 'library', '3.11']
title = 'SimpleHTTPRequestHandler has hard coded index page list.'
updated_at = <Date 2022-03-21.14:36:32.938>
user = 'https://github.com/myronww'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-21.14:36:32.938>
actor = 'ethan.furman'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2022-03-19.04:25:13.984>
creator = 'myronww'
dependencies = []
files = []
hgrepos = []
issue_num = 47063
keywords = ['patch']
message_count = 3.0
messages = ['415534', '415535', '415683']
nosy_count = 3.0
nosy_names = ['ethan.furman', 'python-dev', 'myronww']
pr_nums = ['31985']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue47063'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-100731
<!-- /gh-linked-prs -->
| a286caa937405f7415dcc095a7ad5097c4433246 | 64ed609c532a12b27f67a1e12e9e02f136ee3a94 |
python/cpython | python__cpython-132885 | # Make encoding="locale" uses locale encoding even in UTF-8 mode is enabled.
BPO | [47000](https://bugs.python.org/issue47000)
--- | :---
Nosy | @malemburg, @vstinner, @ezio-melotti, @methane, @eryksun
PRs | <li>python/cpython#32003</li><li>python/cpython#32068</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-03-13.06:09:52.037>
labels = ['expert-unicode', '3.11']
title = 'Make encoding="locale" uses locale encoding even in UTF-8 mode is enabled.'
updated_at = <Date 2022-04-04.02:47:05.537>
user = 'https://github.com/methane'
```
bugs.python.org fields:
```python
activity = <Date 2022-04-04.02:47:05.537>
actor = 'methane'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Unicode']
creation = <Date 2022-03-13.06:09:52.037>
creator = 'methane'
dependencies = []
files = []
hgrepos = []
issue_num = 47000
keywords = ['patch']
message_count = 16.0
messages = ['415028', '415118', '415146', '415147', '415219', '415240', '415767', '415768', '415769', '415851', '415867', '415922', '416329', '416330', '416332', '416649']
nosy_count = 5.0
nosy_names = ['lemburg', 'vstinner', 'ezio.melotti', 'methane', 'eryksun']
pr_nums = ['32003', '32068']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue47000'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-132885
* gh-133323
<!-- /gh-linked-prs -->
| 245cd6c53278006fa34fd7799d32f0884eb7e75d | bd2ed7c7ce58084c682ab05d4aaa3a28b774b249 |
python/cpython | python__cpython-132379 | # UAF when writing to a bytearray with an element implementing `__index__` with side-effects
BPO | [46997](https://bugs.python.org/issue46997)
--- | :---
Nosy | @gvanrossum, @JelleZijlstra
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-03-13.02:05:03.024>
labels = ['interpreter-core', '3.9', '3.10', '3.11']
title = 'Invalid memory write in bytearray'
updated_at = <Date 2022-03-13.02:14:01.825>
user = 'https://github.com/JelleZijlstra'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-13.02:14:01.825>
actor = 'JelleZijlstra'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Interpreter Core']
creation = <Date 2022-03-13.02:05:03.024>
creator = 'JelleZijlstra'
dependencies = []
files = []
hgrepos = []
issue_num = 46997
keywords = []
message_count = 2.0
messages = ['415021', '415022']
nosy_count = 2.0
nosy_names = ['gvanrossum', 'JelleZijlstra']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue46997'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-132379
* gh-136581
* gh-136582
<!-- /gh-linked-prs -->
| 5e1e21dee35b8e9066692d08033bbbdb562e2c28 | 25335d297b5248922a4c82183bcdf0c0ada8352b |
python/cpython | python__cpython-99930 | # tempfile.TemporaryDirectory fails removing dir in some edge cases related to symlinks [CVE-2023-6597]
BPO | [46977](https://bugs.python.org/issue46977)
--- | :---
Nosy | @afeblot
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-03-10.17:22:08.506>
labels = ['library', '3.9', 'type-crash']
title = 'tempfile.TemporaryDirectory fails removing dir in some edge cases related to symlinks'
updated_at = <Date 2022-03-10.17:25:32.378>
user = 'https://github.com/afeblot'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-10.17:25:32.378>
actor = 'afeblot'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2022-03-10.17:22:08.506>
creator = 'afeblot'
dependencies = []
files = []
hgrepos = []
issue_num = 46977
keywords = []
message_count = 1.0
messages = ['414871']
nosy_count = 1.0
nosy_names = ['afeblot']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'crash'
url = 'https://bugs.python.org/issue46977'
versions = ['Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-99930
* gh-112838
* gh-112839
* gh-112840
* gh-112842
* gh-112843
<!-- /gh-linked-prs -->
| 81c16cd94ec38d61aa478b9a452436dc3b1b524d | 21221c398f6d89b2d9295895d8a2fd71d28138fa |
python/cpython | python__cpython-129990 | # Update macOS installer builds to use ncurses 6.5
BPO | [46976](https://bugs.python.org/issue46976)
--- | :---
Nosy | @ronaldoussoren, @ned-deily
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/ned-deily'
closed_at = None
created_at = <Date 2022-03-10.17:07:20.172>
labels = ['OS-mac', '3.9', '3.10', '3.11']
title = 'Update macOS installer builds to use ncurses 6.3'
updated_at = <Date 2022-03-10.17:53:11.656>
user = 'https://github.com/ned-deily'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-10.17:53:11.656>
actor = 'ned.deily'
assignee = 'ned.deily'
closed = False
closed_date = None
closer = None
components = ['macOS']
creation = <Date 2022-03-10.17:07:20.172>
creator = 'ned.deily'
dependencies = []
files = []
hgrepos = []
issue_num = 46976
keywords = []
message_count = 2.0
messages = ['414869', '414874']
nosy_count = 2.0
nosy_names = ['ronaldoussoren', 'ned.deily']
pr_nums = []
priority = 'high'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue46976'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-129990
* gh-132187
* gh-132188
<!-- /gh-linked-prs -->
| 0dbe543d70d7f014d4c1e0308f04c1d91bd815ca | 1feaecc2bc42cb96f2d7bdc8d7083171bdcd0929 |
python/cpython | python__cpython-123342 | # dataclass(slots=True) incompatible with __init_subclass__
BPO | [46970](https://bugs.python.org/issue46970)
--- | :---
Nosy | @ericvsmith, @crusaderky
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/ericvsmith'
closed_at = None
created_at = <Date 2022-03-10.00:14:28.417>
labels = ['type-bug', 'library', '3.10']
title = 'dataclass(slots=True) incompatible with __init_subclass__'
updated_at = <Date 2022-03-10.00:28:03.767>
user = 'https://github.com/crusaderky'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-10.00:28:03.767>
actor = 'eric.smith'
assignee = 'eric.smith'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2022-03-10.00:14:28.417>
creator = 'crusaderky'
dependencies = []
files = []
hgrepos = []
issue_num = 46970
keywords = []
message_count = 2.0
messages = ['414822', '414823']
nosy_count = 2.0
nosy_names = ['eric.smith', 'crusaderky']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue46970'
versions = ['Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-123342
* gh-123568
* gh-123569
<!-- /gh-linked-prs -->
| 75e72822a390df81ca11355d8e0aac88e4046c27 | d9439a205acf3d6ed64fc54239249e16b14f9e69 |
python/cpython | python__cpython-91499 | # Document dict behavior when setting equal but not identical key
BPO | [46925](https://bugs.python.org/issue46925)
--- | :---
Nosy | @rhettinger, @methane, @malthe, @JelleZijlstra, @potiuk
PRs | <li>python/cpython#31685</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-03-04.23:25:53.644>
labels = ['3.11', 'type-bug', '3.9', '3.10', 'docs']
title = 'Document dict behavior when setting equal but not identical key'
updated_at = <Date 2022-03-07.10:13:25.530>
user = 'https://github.com/malthe'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-07.10:13:25.530>
actor = 'potiuk'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2022-03-04.23:25:53.644>
creator = 'malthe'
dependencies = []
files = []
hgrepos = []
issue_num = 46925
keywords = []
message_count = 9.0
messages = ['414554', '414560', '414562', '414572', '414581', '414586', '414607', '414636', '414652']
nosy_count = 6.0
nosy_names = ['rhettinger', 'methane', 'docs@python', 'malthe', 'JelleZijlstra', 'potiuk']
pr_nums = ['31685']
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue46925'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-91499
* gh-100390
* gh-100391
<!-- /gh-linked-prs -->
| c615286e8576f2555d4380f38a966c300805b1a5 | a2bb3b7f9d8d15c81b724726454d68357fb31d1c |
python/cpython | python__cpython-91850 | # tarfile.TarFile.next() crashes on empty tar files
BPO | [46922](https://bugs.python.org/issue46922)
--- | :---
Nosy | @ethanfurman
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-03-04.16:43:29.909>
labels = ['library', '3.9', '3.10']
title = 'tarfile.TarFile.next() crashes on empty tar files'
updated_at = <Date 2022-03-04.18:05:20.357>
user = 'https://bugs.python.org/progval'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-04.18:05:20.357>
actor = 'ethan.furman'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2022-03-04.16:43:29.909>
creator = 'progval'
dependencies = []
files = []
hgrepos = []
issue_num = 46922
keywords = []
message_count = 1.0
messages = ['414536']
nosy_count = 2.0
nosy_names = ['progval', 'ethan.furman']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue46922'
versions = ['Python 3.9', 'Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-91850
* gh-99798
<!-- /gh-linked-prs -->
| 78365b8e283c78e23725748500f48dd2c2ca1161 | 7796d3179b71536dd1d2ca7fdbc1255bdb8cfb52 |
python/cpython | python__cpython-133001 | # UBSAN: test_ctypes, test_faulthandler and test_hashlib are failing
BPO | [46913](https://bugs.python.org/issue46913)
--- | :---
Nosy | @gpshead, @vstinner, @tiran, @vadmium, @pablogsal, @miss-islington
PRs | <li>python/cpython#31662</li><li>python/cpython#31665</li><li>python/cpython#31666</li><li>python/cpython#31672</li><li>python/cpython#31673</li><li>python/cpython#31674</li><li>python/cpython#31675</li><li>python/cpython#31676</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-03-03.16:19:36.361>
labels = ['tests', '3.11']
title = 'UBSAN: test_ctypes, test_faulthandler and test_hashlib are failing'
updated_at = <Date 2022-03-10.17:29:40.327>
user = 'https://github.com/vstinner'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-10.17:29:40.327>
actor = 'vstinner'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Tests']
creation = <Date 2022-03-03.16:19:36.361>
creator = 'vstinner'
dependencies = []
files = []
hgrepos = []
issue_num = 46913
keywords = ['patch']
message_count = 20.0
messages = ['414455', '414456', '414457', '414458', '414471', '414477', '414486', '414489', '414491', '414494', '414495', '414497', '414499', '414501', '414507', '414512', '414694', '414867', '414870', '414872']
nosy_count = 6.0
nosy_names = ['gregory.p.smith', 'vstinner', 'christian.heimes', 'martin.panter', 'pablogsal', 'miss-islington']
pr_nums = ['31662', '31665', '31666', '31672', '31673', '31674', '31675', '31676']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue46913'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-133001
<!-- /gh-linked-prs -->
| cc05e4b8676dd438e7928e079925c71dba20cc0f | 4f18916c5c28321f363e85ee7ef3ee29bbf79d8e |
python/cpython | python__cpython-99859 | # Add API to allow extensions to set callback function on creation and destruction of PyCodeObject
BPO | [46898](https://bugs.python.org/issue46898)
--- | :---
Nosy | @carljm, @DinoV, @itamaro, @mpage
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-03-01.22:20:58.520>
labels = ['expert-C-API', 'type-feature', '3.11']
title = 'Add API to allow extensions to set callback function on creation and destruction of PyCodeObject'
updated_at = <Date 2022-03-01.22:20:58.520>
user = 'https://github.com/mpage'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-01.22:20:58.520>
actor = 'mpage'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['C API']
creation = <Date 2022-03-01.22:20:58.520>
creator = 'mpage'
dependencies = []
files = []
hgrepos = []
issue_num = 46898
keywords = []
message_count = 1.0
messages = ['414309']
nosy_count = 4.0
nosy_names = ['carljm', 'dino.viehland', 'itamaro', 'mpage']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue46898'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-99859
* gh-99976
* gh-99978
* gh-107821
* gh-107835
<!-- /gh-linked-prs -->
| 3c137dc613c860f605d3520d7fd722cd8ed79da6 | 0563be23a557917228a8b48cbb31bda285a3a815 |
python/cpython | python__cpython-107853 | # Allow extensions to set a callback to be invoked when a type is modified
BPO | [46895](https://bugs.python.org/issue46895)
--- | :---
Nosy | @carljm, @DinoV, @itamaro, @mpage
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-03-01.22:16:51.046>
labels = ['interpreter-core', 'expert-C-API', 'type-feature', '3.11']
title = 'Allow extensions to set a callback to be invoked when a type is modified'
updated_at = <Date 2022-03-01.22:21:58.988>
user = 'https://github.com/mpage'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-01.22:21:58.988>
actor = 'mpage'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Interpreter Core', 'C API']
creation = <Date 2022-03-01.22:16:51.046>
creator = 'mpage'
dependencies = []
files = []
hgrepos = []
issue_num = 46895
keywords = []
message_count = 1.0
messages = ['414305']
nosy_count = 4.0
nosy_names = ['carljm', 'dino.viehland', 'itamaro', 'mpage']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue46895'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-107853
* gh-107876
* gh-107989
* gh-108053
<!-- /gh-linked-prs -->
| 66e4edd7346b1cd65ddff6da890a0d725e325116 | 04cc01453db2f0af72a06440831637f8bf512daf |
python/cpython | python__cpython-102569 | # Inline bytecode caches
BPO | [46841](https://bugs.python.org/issue46841)
--- | :---
Nosy | @markshannon, @corona10, @pablogsal, @brandtbucher, @neonene, @iritkatriel, @penguin-wwy
PRs | <li>python/cpython#31543</li><li>python/cpython#31552</li><li>python/cpython#31575</li><li>python/cpython#31591</li><li>python/cpython#31618</li><li>python/cpython#31622</li><li>python/cpython#31640</li><li>python/cpython#31663</li><li>python/cpython#31664</li><li>python/cpython#31671</li><li>python/cpython#31709</li><li>python/cpython#31742</li><li>python/cpython#31780</li><li>python/cpython#31817</li><li>python/cpython#31888</li><li>python/cpython#31901</li><li>python/cpython#31968</li><li>python/cpython#32099</li><li>python/cpython#32100</li><li>python/cpython#32205</li><li>python/cpython#32222</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/brandtbucher'
closed_at = None
created_at = <Date 2022-02-24.02:17:14.449>
labels = ['interpreter-core', 'deferred-blocker', '3.11', 'performance']
title = 'Inline bytecode caches'
updated_at = <Date 2022-04-01.11:29:28.677>
user = 'https://github.com/brandtbucher'
```
bugs.python.org fields:
```python
activity = <Date 2022-04-01.11:29:28.677>
actor = 'Mark.Shannon'
assignee = 'brandtbucher'
closed = False
closed_date = None
closer = None
components = ['Interpreter Core']
creation = <Date 2022-02-24.02:17:14.449>
creator = 'brandtbucher'
dependencies = []
files = []
hgrepos = []
issue_num = 46841
keywords = ['patch']
message_count = 29.0
messages = ['413875', '413901', '413987', '413988', '414188', '414194', '414261', '414277', '414343', '414349', '414358', '414359', '414364', '414371', '414372', '414378', '414391', '414461', '414490', '414523', '414547', '414696', '414763', '414955', '415307', '415676', '415969', '416482', '416483']
nosy_count = 7.0
nosy_names = ['Mark.Shannon', 'corona10', 'pablogsal', 'brandtbucher', 'neonene', 'iritkatriel', 'penguin_wwy']
pr_nums = ['31543', '31552', '31575', '31591', '31618', '31622', '31640', '31663', '31664', '31671', '31709', '31742', '31780', '31817', '31888', '31901', '31968', '32099', '32100', '32205', '32222']
priority = 'deferred blocker'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'performance'
url = 'https://bugs.python.org/issue46841'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-102569
<!-- /gh-linked-prs -->
| 08b67fb34f4519be1b0bb4673643a2c761c7ae92 | 767d3a8f6f2f94daa15ad3759d0ecdf4c009b7ab |
python/cpython | python__cpython-96893 | # Parameters and arguments parser syntax error improvments
BPO | [46838](https://bugs.python.org/issue46838)
--- | :---
Nosy | @terryjreedy, @aroberge, @lysnikolaou, @pablogsal, @Andykl
PRs | <li>python/cpython#31590</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-02-23.21:23:21.121>
labels = ['interpreter-core', 'type-feature', '3.11']
title = 'Parameters and arguments parser syntax error improvments'
updated_at = <Date 2022-03-22.11:39:09.698>
user = 'https://github.com/Andykl'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-22.11:39:09.698>
actor = 'pablogsal'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Parser']
creation = <Date 2022-02-23.21:23:21.121>
creator = 'Andy_kl'
dependencies = []
files = []
hgrepos = []
issue_num = 46838
keywords = ['patch']
message_count = 6.0
messages = ['413856', '413858', '413860', '414038', '414052', '415760']
nosy_count = 5.0
nosy_names = ['terry.reedy', 'aroberge', 'lys.nikolaou', 'pablogsal', 'Andy_kl']
pr_nums = ['31590']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue46838'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-96893
<!-- /gh-linked-prs -->
| 6d8da238ccdf946dc90e20821652d8caa25b76ba | e13d1d9dda8c27691180bc618bd5e9bf43dfa89f |
python/cpython | python__cpython-104199 | # ast.Constant.n deprecated without warning
BPO | [46797](https://bugs.python.org/issue46797)
--- | :---
Nosy | @jwilk, @serhiy-storchaka
PRs | <li>python/cpython#31432</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-02-19.08:29:16.968>
labels = ['library', '3.11']
title = 'ast.Constant.n deprecated without warning'
updated_at = <Date 2022-02-19.12:24:07.912>
user = 'https://github.com/jwilk'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-19.12:24:07.912>
actor = 'serhiy.storchaka'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2022-02-19.08:29:16.968>
creator = 'jwilk'
dependencies = []
files = []
hgrepos = []
issue_num = 46797
keywords = ['patch']
message_count = 2.0
messages = ['413541', '413546']
nosy_count = 2.0
nosy_names = ['jwilk', 'serhiy.storchaka']
pr_nums = ['31432']
priority = 'low'
resolution = 'postponed'
stage = 'patch review'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue46797'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-104199
* gh-104322
<!-- /gh-linked-prs -->
| 376137f6ec73e0800e49cec6100e401f6154b693 | 263abd333d18b8825cf6d68a5051818826dbffce |
python/cpython | python__cpython-103905 | # Add Maildir.get_flags() to access message flags without opening the file
BPO | [46734](https://bugs.python.org/issue46734)
--- | :---
Nosy | @gildea
PRs | <li>python/cpython#31302</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-02-12.22:21:50.052>
labels = ['type-feature', 'library', '3.11']
title = 'Add Maildir.get_flags() to access message flags without opening the file'
updated_at = <Date 2022-02-12.22:49:37.459>
user = 'https://github.com/gildea'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-12.22:49:37.459>
actor = 'gildea'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2022-02-12.22:21:50.052>
creator = 'gildea'
dependencies = []
files = []
hgrepos = []
issue_num = 46734
keywords = ['patch']
message_count = 1.0
messages = ['413145']
nosy_count = 1.0
nosy_names = ['gildea']
pr_nums = ['31302']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue46734'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-103905
* gh-113071
<!-- /gh-linked-prs -->
| 38035fed9ba543d587c1fbba5c463d34edf3aff9 | fa84e5fe0a3bd8e77c33b20867d71ac6bee270f9 |
python/cpython | python__cpython-106464 | # Add support for path-like objects to multiprocessing.set_executable for Windows to be on a par with Unix-like systems
BPO | [46720](https://bugs.python.org/issue46720)
--- | :---
Nosy | @maggyero
PRs | <li>python/cpython#31279</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-02-11.14:57:09.587>
labels = ['type-feature', 'library', '3.9', '3.10', '3.11']
title = 'Add support for path-like objects to multiprocessing.set_executable for Windows to be on a par with Unix-like systems'
updated_at = <Date 2022-02-11.22:25:00.201>
user = 'https://github.com/maggyero'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-11.22:25:00.201>
actor = 'maggyero'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2022-02-11.14:57:09.587>
creator = 'maggyero'
dependencies = []
files = []
hgrepos = []
issue_num = 46720
keywords = ['patch']
message_count = 1.0
messages = ['413073']
nosy_count = 1.0
nosy_names = ['maggyero']
pr_nums = ['31279']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue46720'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-106464
* gh-106494
* gh-106495
<!-- /gh-linked-prs -->
| c60df361ce2d734148d503f4a711e67c110fe223 | 76fac7bce55302a8e9a524d72f5384fd89e6dfde |
python/cpython | python__cpython-116989 | # regrtest didn't respect the timeout when running test_subprocess on AMD64 Windows11 3.x
BPO | [46716](https://bugs.python.org/issue46716)
--- | :---
Nosy | @vstinner, @jkloth, @eryksun
PRs | <li>python/cpython#32079</li><li>python/cpython#32081</li>
Files | <li>[process.py](https://bugs.python.org/file50623/process.py "Uploaded as text/plain at 2022-02-13.04:29:45 by @jkloth"): Reproducer script for test_timeout()</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-02-10.23:09:17.270>
labels = ['tests', '3.11']
title = "regrtest didn't respect the timeout when running test_subprocess on AMD64 Windows11 3.x"
updated_at = <Date 2022-03-23.19:22:09.443>
user = 'https://github.com/vstinner'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-23.19:22:09.443>
actor = 'jkloth'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Tests']
creation = <Date 2022-02-10.23:09:17.270>
creator = 'vstinner'
dependencies = []
files = ['50623']
hgrepos = []
issue_num = 46716
keywords = ['patch']
message_count = 9.0
messages = ['413028', '413033', '413104', '413165', '413172', '413189', '413215', '413219', '413649']
nosy_count = 4.0
nosy_names = ['vstinner', 'jkloth', 'jeremy.kloth', 'eryksun']
pr_nums = ['32079', '32081']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue46716'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-116989
* gh-117002
* gh-117003
<!-- /gh-linked-prs -->
| 27cf3ed00cfe942f4277c273a3dda8ee2ba61fc8 | 408e127159e54d87bb3464fd8bd60219dc527fac |
python/cpython | python__cpython-134392 | # asyncio.create_unix_server has an off-by-one error concerning the backlog parameter
BPO | [46715](https://bugs.python.org/issue46715)
--- | :---
Nosy | @asvetlov, @1st1, @jnsnow
Files | <li>[issue.patch](https://bugs.python.org/file50618/issue.patch "Uploaded as text/plain at 2022-02-10.21:24:35 by @jnsnow")</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-02-10.21:24:35.963>
labels = ['type-bug', '3.8', '3.9', '3.10', '3.11', '3.7', 'expert-asyncio']
title = 'asyncio.create_unix_server has an off-by-one error concerning the backlog parameter'
updated_at = <Date 2022-02-10.21:24:35.963>
user = 'https://github.com/jnsnow'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-10.21:24:35.963>
actor = 'jnsnow'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['asyncio']
creation = <Date 2022-02-10.21:24:35.963>
creator = 'jnsnow'
dependencies = []
files = ['50618']
hgrepos = []
issue_num = 46715
keywords = ['patch']
message_count = 1.0
messages = ['413025']
nosy_count = 3.0
nosy_names = ['asvetlov', 'yselivanov', 'jnsnow']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue46715'
versions = ['Python 3.7', 'Python 3.8', 'Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-134392
* gh-134421
<!-- /gh-linked-prs -->
| 109f7597d29f0b504e9b42cb398b44177157abaa | 15a8b5b9bd58a12f28aaee71f36f7224ebee42c0 |
python/cpython | python__cpython-118163 | # create_autospec() doesn't respect configure_mock style kwargs
BPO | [46690](https://bugs.python.org/issue46690)
--- | :---
Nosy | @cjw296, @voidspace, @lisroach, @mariocj89, @tirkarthi
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-02-09.11:54:00.145>
labels = ['3.8', 'type-bug', 'library', '3.9', '3.10']
title = "create_autospec() doesn't respect configure_mock style kwargs"
updated_at = <Date 2022-02-10.13:44:04.417>
user = 'https://bugs.python.org/marchantjm'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-10.13:44:04.417>
actor = 'xtreak'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2022-02-09.11:54:00.145>
creator = 'marchant.jm'
dependencies = []
files = []
hgrepos = []
issue_num = 46690
keywords = []
message_count = 2.0
messages = ['412898', '413001']
nosy_count = 6.0
nosy_names = ['cjw296', 'michael.foord', 'lisroach', 'mariocj89', 'xtreak', 'marchant.jm']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue46690'
versions = ['Python 3.8', 'Python 3.9', 'Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-118163
* gh-118517
<!-- /gh-linked-prs -->
| b28a3339e4c63ea3a801dba9bbbc6af5af42c3a0 | 6bcbee09df9f6fa6496fb7f68b6d655f190903a7 |
python/cpython | python__cpython-109914 | # Add mimalloc memory allocator
BPO | [46657](https://bugs.python.org/issue46657)
--- | :---
Nosy | @nascheme, @tiran, @corona10, @erlend-aasland, @h-vetinari
PRs | <li>python/cpython#31164</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-02-06.14:49:12.884>
labels = ['interpreter-core', 'type-feature', '3.11']
title = 'Add mimalloc memory allocator'
updated_at = <Date 2022-03-24.02:10:23.628>
user = 'https://github.com/tiran'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-24.02:10:23.628>
actor = 'h-vetinari'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Interpreter Core']
creation = <Date 2022-02-06.14:49:12.884>
creator = 'christian.heimes'
dependencies = []
files = []
hgrepos = []
issue_num = 46657
keywords = ['patch']
message_count = 12.0
messages = ['412639', '412641', '412645', '412654', '412669', '412679', '412741', '412749', '412796', '412835', '412867', '412986']
nosy_count = 5.0
nosy_names = ['nascheme', 'christian.heimes', 'corona10', 'erlendaasland', 'h-vetinari']
pr_nums = ['31164']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue46657'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-109914
* gh-111522
* gh-111524
* gh-111527
* gh-111528
* gh-111532
* gh-117811
<!-- /gh-linked-prs -->
| 05f2f0ac92afa560315eb66fd6576683c7f69e2d | 4ebf2fae9664a4042511059627f44d46dceb2e09 |
python/cpython | python__cpython-132489 | # urllib.request.urlopen doesn't handle UNC paths produced by pathlib's as_uri() (but can handle UNC paths with additional slashes)
BPO | [46654](https://bugs.python.org/issue46654)
--- | :---
Nosy | @warsaw, @terryjreedy, @pfmoore, @ronaldoussoren, @vstinner, @larryhastings, @tjguk, @ned-deily, @ezio-melotti, @merwok, @ikelos, @bitdancer, @asvetlov, @zware, @1st1, @koobs, @eryksun, @zooba, @dstufft, @moreati, @lysnikolaou, @pablogsal, @barneygale, @ladykraken
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-02-05.22:27:39.961>
labels = ['type-bug', 'library', '3.9', '3.10', '3.11']
title = "urllib.request.urlopen doesn't handle UNC paths produced by pathlib's as_uri() (but can handle UNC paths with additional slashes)"
updated_at = <Date 2022-02-06.22:09:17.556>
user = 'https://github.com/ikelos'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-06.22:09:17.556>
actor = 'eryksun'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2022-02-05.22:27:39.961>
creator = 'ikelos'
dependencies = []
files = []
hgrepos = []
issue_num = 46654
keywords = []
message_count = 11.0
messages = ['412602', '412603', '412605', '412606', '412607', '412608', '412609', '412610', '412612', '412613', '412619']
nosy_count = 26.0
nosy_names = ['barry', 'terry.reedy', 'paul.moore', 'ronaldoussoren', 'vstinner', 'larry', 'tim.golden', 'ned.deily', 'ezio.melotti', 'eric.araujo', 'mrabarnett', 'ikelos', 'r.david.murray', 'asvetlov', 'docs@python', 'zach.ware', 'yselivanov', 'koobs', 'eryksun', 'steve.dower', 'dstufft', 'Alex.Willmer', 'lys.nikolaou', 'pablogsal', 'barneygale', 'ladykraken']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue46654'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-132489
<!-- /gh-linked-prs -->
| f3192dac669ce14016efcec267ef331108d6b442 | 666eeda13d319aa82b151eef3e3c55a48d90a052 |
python/cpython | python__cpython-108644 | # `test_functools` unexpected failures when C `_functoolsmodule` is missing
BPO | [46647](https://bugs.python.org/issue46647)
--- | :---
Nosy | @rhettinger, @tiran, @shihai1991, @sobolevn
PRs | <li>python/cpython#31141</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = <Date 2022-02-08.04:43:59.900>
created_at = <Date 2022-02-05.10:46:54.761>
labels = ['type-bug', 'tests', '3.10', '3.11']
title = '`test_functools` unexpected failures when C `_functoolsmodule` is missing'
updated_at = <Date 2022-02-08.04:43:59.899>
user = 'https://github.com/sobolevn'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-08.04:43:59.899>
actor = 'sobolevn'
assignee = 'none'
closed = True
closed_date = <Date 2022-02-08.04:43:59.900>
closer = 'sobolevn'
components = ['Tests']
creation = <Date 2022-02-05.10:46:54.761>
creator = 'sobolevn'
dependencies = []
files = []
hgrepos = []
issue_num = 46647
keywords = ['patch']
message_count = 5.0
messages = ['412565', '412572', '412573', '412767', '412809']
nosy_count = 4.0
nosy_names = ['rhettinger', 'christian.heimes', 'shihai1991', 'sobolevn']
pr_nums = ['31141']
priority = 'normal'
resolution = 'wont fix'
stage = 'resolved'
status = 'closed'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue46647'
versions = ['Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-108644
* gh-109274
* gh-109275
<!-- /gh-linked-prs -->
| baa6dc8e388e71b2a00347143ecefb2ad3a8e53b | 57b6205523d934d61b6308d63ef72c494c7d2b7e |
python/cpython | python__cpython-108286 | # AddressSanitizer: Skip tests directly in Python, not with external config
BPO | [46633](https://bugs.python.org/issue46633)
--- | :---
Nosy | @vstinner, @pablogsal
PRs | <li>python/cpython#31632</li><li>python/cpython#31634</li><li>python/cpython#31644</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = <Date 2022-03-02.17:13:40.631>
created_at = <Date 2022-02-04.10:09:11.092>
labels = ['tests', '3.11']
title = 'AddressSanitizer: Skip tests directly in Python, not with external config'
updated_at = <Date 2022-03-02.17:13:40.630>
user = 'https://github.com/vstinner'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-02.17:13:40.630>
actor = 'vstinner'
assignee = 'none'
closed = True
closed_date = <Date 2022-03-02.17:13:40.631>
closer = 'vstinner'
components = ['Tests']
creation = <Date 2022-02-04.10:09:11.092>
creator = 'vstinner'
dependencies = []
files = []
hgrepos = []
issue_num = 46633
keywords = ['patch']
message_count = 11.0
messages = ['412499', '412501', '412506', '414247', '414248', '414250', '414262', '414266', '414370', '414379', '414380']
nosy_count = 2.0
nosy_names = ['vstinner', 'pablogsal']
pr_nums = ['31632', '31634', '31644']
priority = 'normal'
resolution = 'fixed'
stage = 'resolved'
status = 'closed'
superseder = None
type = None
url = 'https://bugs.python.org/issue46633'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-108286
* gh-108289
<!-- /gh-linked-prs -->
| a541e01537cc07b326cc37cc29412b816bc2b4fc | 893215a4e7f59eabb8ccdf188c4b9b1de5bd8966 |
python/cpython | python__cpython-103802 | # Undocumented behavior in strptime for ISO week dates
BPO | [46592](https://bugs.python.org/issue46592)
--- | :---
Nosy | @abalkin, @JonatanSkogsfors, @pganssle
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-01-31.13:06:25.880>
labels = ['type-bug', 'library', '3.10']
title = 'Undocumented behavior in strptime for ISO week dates'
updated_at = <Date 2022-01-31.13:18:52.284>
user = 'https://github.com/jonatanskogsfors'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-31.13:18:52.284>
actor = 'AlexWaygood'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2022-01-31.13:06:25.880>
creator = 'Jonatan Skogsfors'
dependencies = []
files = []
hgrepos = []
issue_num = 46592
keywords = []
message_count = 1.0
messages = ['412200']
nosy_count = 3.0
nosy_names = ['belopolsky', 'Jonatan Skogsfors', 'p-ganssle']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue46592'
versions = ['Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-103802
<!-- /gh-linked-prs -->
| a5308e188b810e5cc69c1570bdc9b21ed6c87805 | b701dce340352e1a20c1776feaa368d4bba91128 |
python/cpython | python__cpython-101319 | # In documentation same-named attributes erroneously link to built-in names
BPO | [46586](https://bugs.python.org/issue46586)
--- | :---
Nosy | @merwok, @ethanfurman, @zware, @JelleZijlstra, @JulienPalard, @Dutcho, @AlexWaygood, @meersuri
PRs | <li>python/cpython#31216</li><li>python/cpython#31429</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/ethanfurman'
closed_at = None
created_at = <Date 2022-01-30.15:12:05.843>
labels = ['easy', '3.11', 'type-bug', 'docs']
title = 'In documentation contents enum.property erroneously links to built-in property'
updated_at = <Date 2022-02-19.06:42:30.886>
user = 'https://github.com/Dutcho'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-19.06:42:30.886>
actor = 'meersuri'
assignee = 'ethan.furman'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2022-01-30.15:12:05.843>
creator = 'Dutcho'
dependencies = []
files = []
hgrepos = []
issue_num = 46586
keywords = ['patch', 'easy']
message_count = 21.0
messages = ['412156', '412523', '412543', '412545', '412551', '412552', '412644', '412789', '412875', '412903', '412909', '413007', '413008', '413009', '413010', '413011', '413115', '413181', '413183', '413185', '413228']
nosy_count = 10.0
nosy_names = ['eric.araujo', 'docs@python', 'ethan.furman', 'python-dev', 'zach.ware', 'JelleZijlstra', 'mdk', 'Dutcho', 'AlexWaygood', 'meersuri']
pr_nums = ['31216', '31429']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue46586'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-101319
* gh-102321
* gh-102322
<!-- /gh-linked-prs -->
| 85b1fc1fc5a2e49d521382eaf5e7793175d00371 | 9f799ab0200f07d762eb8fe822c606e1b4b4866e |
python/cpython | python__cpython-136100 | # Off-by-one errors in hashlib.scrypt error messages
BPO | [46575](https://bugs.python.org/issue46575)
--- | :---
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-01-29.20:26:03.762>
labels = ['type-bug']
title = 'One-off errors in hashlib.scrypt error messages'
updated_at = <Date 2022-01-29.20:26:03.762>
user = 'https://bugs.python.org/ronkaminsky'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-29.20:26:03.762>
actor = 'ron_kaminsky'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2022-01-29.20:26:03.762>
creator = 'ron_kaminsky'
dependencies = []
files = []
hgrepos = []
issue_num = 46575
keywords = []
message_count = 1.0
messages = ['412103']
nosy_count = 1.0
nosy_names = ['ron_kaminsky']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue46575'
versions = []
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-136100
<!-- /gh-linked-prs -->
| a68ddea3bf7e9bb77d096c613bce2ec1e67a28f4 | 75e2c5dd346d18c0e3c11d664c84d47becf1349b |
python/cpython | python__cpython-94187 | # base64 documentation is out-dated; altchars has to have the exact length of 2.
BPO | [46559](https://bugs.python.org/issue46559)
--- | :---
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-01-28.02:52:31.566>
labels = ['3.10', 'docs']
title = 'base64 documentation is out-dated; altchars has to have the exact length of 2.'
updated_at = <Date 2022-01-28.02:52:31.566>
user = 'https://bugs.python.org/ynn'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-28.02:52:31.566>
actor = 'ynn'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2022-01-28.02:52:31.566>
creator = 'ynn'
dependencies = []
files = []
hgrepos = []
issue_num = 46559
keywords = []
message_count = 1.0
messages = ['411967']
nosy_count = 2.0
nosy_names = ['docs@python', 'ynn']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue46559'
versions = ['Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-94187
* gh-99878
* gh-99879
<!-- /gh-linked-prs -->
| 05dfc539c2de34021e44f621f2b7b993682ee200 | 74d5f61ebd1cb14907bf7dae1ad9c1e676707bc5 |
python/cpython | python__cpython-103910 | # Improve efficiency of PRECALL/CALL instructions
BPO | [46532](https://bugs.python.org/issue46532)
--- | :---
Nosy | @markshannon
PRs | <li>python/cpython#31231</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/markshannon'
closed_at = None
created_at = <Date 2022-01-26.09:44:42.979>
labels = []
title = 'Improve efficiency of PRECALL/CALL instructions'
updated_at = <Date 2022-02-10.12:57:59.448>
user = 'https://github.com/markshannon'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-10.12:57:59.448>
actor = 'Mark.Shannon'
assignee = 'Mark.Shannon'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2022-01-26.09:44:42.979>
creator = 'Mark.Shannon'
dependencies = []
files = []
hgrepos = []
issue_num = 46532
keywords = ['patch']
message_count = 3.0
messages = ['411721', '411723', '412996']
nosy_count = 1.0
nosy_names = ['Mark.Shannon']
pr_nums = ['31231']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue46532'
versions = []
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-103910
* gh-109027
<!-- /gh-linked-prs -->
| f9bd6e49ae58e0ba2934f29dd0f3299ba844cc8d | 3a08db8d137a552aebf678bcd2e7444ab72e62c5 |
python/cpython | python__cpython-116309 | # [docs] Minor information-ordering issue in __main__ doc
BPO | [46279](https://bugs.python.org/issue46279)
--- | :---
Nosy | @taleinat, @merwok, @ferdnyc, @riqts
PRs | <li>python/cpython#30480</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2022-01-06.12:57:08.792>
labels = ['easy', '3.11', 'type-bug', 'docs']
title = '[docs] Minor information-ordering issue in __main__ doc'
updated_at = <Date 2022-01-13.09:18:22.891>
user = 'https://github.com/ferdnyc'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-13.09:18:22.891>
actor = 'AlexWaygood'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2022-01-06.12:57:08.792>
creator = 'ferdnyc'
dependencies = []
files = []
hgrepos = []
issue_num = 46279
keywords = ['patch', 'easy']
message_count = 9.0
messages = ['409839', '409997', '410085', '410087', '410088', '410091', '410093', '410121', '410461']
nosy_count = 5.0
nosy_names = ['taleinat', 'eric.araujo', 'docs@python', 'ferdnyc', 'jacksonbrummell1']
pr_nums = ['30480']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue46279'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-116309
* gh-121385
* gh-121386
<!-- /gh-linked-prs -->
| cb688bab08559079d0ee9ffd841dd6eb11116181 | 5f660e8e2ca3acfb89ccbdd990f072149b6baa6a |
python/cpython | python__cpython-126064 | # Avoid temporary `varargs` tuple creation in argument passing
BPO | [46212](https://bugs.python.org/issue46212)
--- | :---
Nosy | @larryhastings, @pablogsal, @isidentical, @erlend-aasland, @colorfulappl
PRs | <li>python/cpython#30312</li>
Files | <li>[bench-print.py](https://bugs.python.org/file50533/bench-print.py "Uploaded as text/plain at 2021-12-31.10:18:07 by @colorfulappl")</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-12-31.10:05:47.113>
labels = ['3.11', 'expert-argument-clinic', 'performance']
title = 'Avoid temporary `varargs` tuple creation in argument passing'
updated_at = <Date 2022-01-21.14:06:02.177>
user = 'https://github.com/colorfulappl'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-21.14:06:02.177>
actor = 'erlendaasland'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Argument Clinic']
creation = <Date 2021-12-31.10:05:47.113>
creator = 'colorfulappl'
dependencies = []
files = ['50533']
hgrepos = []
issue_num = 46212
keywords = ['patch']
message_count = 6.0
messages = ['409412', '409413', '409414', '409659', '411129', '411130']
nosy_count = 5.0
nosy_names = ['larry', 'pablogsal', 'BTaskaya', 'erlendaasland', 'colorfulappl']
pr_nums = ['30312']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'performance'
url = 'https://bugs.python.org/issue46212'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-126064
<!-- /gh-linked-prs -->
| 8c22eba877225ab29cd64672dcb97f09a5f7336f | d07dcce6935364cab807e0df931ed09b088ade69 |
python/cpython | python__cpython-117817 | # venv module produces spurious warning that location has moved
BPO | [46171](https://bugs.python.org/issue46171)
--- | :---
Nosy | @pfmoore, @vsajip, @tjguk, @zware, @eryksun, @zooba, @FFY00, @layday
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-12-24.09:29:51.804>
labels = ['type-bug', '3.9', '3.10', '3.11', 'library', 'OS-windows']
title = 'venv module produces spurious warning that location has moved'
updated_at = <Date 2021-12-31.16:46:09.275>
user = 'https://github.com/layday'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-31.16:46:09.275>
actor = 'eryksun'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)', 'Windows']
creation = <Date 2021-12-24.09:29:51.804>
creator = 'layday'
dependencies = []
files = []
hgrepos = []
issue_num = 46171
keywords = []
message_count = 7.0
messages = ['409135', '409144', '409145', '409256', '409282', '409420', '409424']
nosy_count = 8.0
nosy_names = ['paul.moore', 'vinay.sajip', 'tim.golden', 'zach.ware', 'eryksun', 'steve.dower', 'FFY00', 'layday']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue46171'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-117817
* gh-117898
<!-- /gh-linked-prs -->
| 185999bb3ad3f1484da8fa4b84813980b976dc3c | 64cd6fc9a6a3c3c19091a1c81cbbe8994583017d |
python/cpython | python__cpython-93415 | # python --help output is too long
BPO | [46142](https://bugs.python.org/issue46142)
--- | :---
Nosy | @warsaw, @vstinner, @merwok, @serhiy-storchaka, @eryksun
PRs | <li>python/cpython#30331</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
Linked PRs:
- #93415
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-12-20.23:43:15.950>
labels = ['interpreter-core', 'type-feature', '3.11']
title = 'python --help output is too long'
updated_at = <Date 2022-01-12.01:45:18.299>
user = 'https://github.com/merwok'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-12.01:45:18.299>
actor = 'eric.araujo'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Interpreter Core']
creation = <Date 2021-12-20.23:43:15.950>
creator = 'eric.araujo'
dependencies = []
files = []
hgrepos = []
issue_num = 46142
keywords = ['patch']
message_count = 15.0
messages = ['408981', '408982', '409449', '409450', '409470', '409483', '409738', '409890', '409928', '410052', '410203', '410207', '410238', '410239', '410378']
nosy_count = 5.0
nosy_names = ['barry', 'vstinner', 'eric.araujo', 'serhiy.storchaka', 'eryksun']
pr_nums = ['30331']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue46142'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-93415
* gh-115847
* gh-115853
* gh-116418
* gh-116721
* gh-116724
* gh-116725
* gh-116739
* gh-116756
* gh-116765
* gh-116766
* gh-116779
* gh-116786
* gh-116796
* gh-116797
* gh-116803
* gh-117022
* gh-117034
* gh-117035
<!-- /gh-linked-prs -->
| 2e92ffd7fa89e3bd33ee2f31541d3dc53aaa2d12 | e3f462c9a73d2a6e79aacce7f25aaac361c2d743 |
python/cpython | python__cpython-128451 | # PyUnicode_FSConverter() has confusing reference semantics
BPO | [46083](https://bugs.python.org/issue46083)
--- | :---
Nosy | @Yhg1s
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-12-15.14:28:25.028>
labels = ['expert-C-API', '3.8', '3.9', '3.10', '3.11']
title = 'PyUnicode_FSConverter() has confusing reference semantics'
updated_at = <Date 2021-12-15.14:28:25.028>
user = 'https://github.com/Yhg1s'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-15.14:28:25.028>
actor = 'twouters'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['C API']
creation = <Date 2021-12-15.14:28:25.028>
creator = 'twouters'
dependencies = []
files = []
hgrepos = []
issue_num = 46083
keywords = []
message_count = 1.0
messages = ['408604']
nosy_count = 1.0
nosy_names = ['twouters']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue46083'
versions = ['Python 3.8', 'Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-128451
* gh-128542
* gh-128543
<!-- /gh-linked-prs -->
| 657d7b77e5c69967e9c0000b986fa4872d13958c | 1ef6bf4e29db43bbf06639923516838db2d5a5ba |
python/cpython | python__cpython-104141 | # [pathlib] Option so that OSError does not block glob in pathlib library
BPO | [46050](https://bugs.python.org/issue46050)
--- | :---
Nosy | @matt32106
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-12-11.16:25:35.541>
labels = ['3.8', 'type-feature', 'library']
title = '[pathlib] Option so that OSError does not block glob in pathlib library'
updated_at = <Date 2021-12-11.16:25:35.541>
user = 'https://github.com/matt32106'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-11.16:25:35.541>
actor = 'matt32106'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-12-11.16:25:35.541>
creator = 'matt32106'
dependencies = []
files = []
hgrepos = []
issue_num = 46050
keywords = []
message_count = 1.0
messages = ['408314']
nosy_count = 1.0
nosy_names = ['matt32106']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue46050'
versions = ['Python 3.8']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-104141
<!-- /gh-linked-prs -->
| 94f30c75576bb8a20724b2ac758fa33af089a522 | 373bca0cc5256dc512ffc22bdff4424f7ee8baa2 |
python/cpython | python__cpython-116544 | # functools' singledispatch does not support GenericAlias
BPO | [46032](https://bugs.python.org/issue46032)
--- | :---
Nosy | @rhettinger, @ambv, @serhiy-storchaka, @miss-islington, @uriyyo, @kumaraditya303, @AlexWaygood
PRs | <li>python/cpython#30050</li><li>python/cpython#30254</li><li>python/cpython#30255</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/serhiy-storchaka'
closed_at = <Date 2021-12-26.12:23:57.239>
created_at = <Date 2021-12-10.09:04:56.137>
labels = ['type-bug', '3.9', '3.10', '3.11', 'library', 'docs']
title = "functools' singledispatch does not support GenericAlias"
updated_at = <Date 2021-12-26.12:23:57.239>
user = 'https://github.com/kumaraditya303'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-26.12:23:57.239>
actor = 'serhiy.storchaka'
assignee = 'serhiy.storchaka'
closed = True
closed_date = <Date 2021-12-26.12:23:57.239>
closer = 'serhiy.storchaka'
components = ['Documentation', 'Library (Lib)']
creation = <Date 2021-12-10.09:04:56.137>
creator = 'kumaraditya'
dependencies = []
files = []
hgrepos = []
issue_num = 46032
keywords = ['patch']
message_count = 9.0
messages = ['408179', '408181', '408204', '408205', '408306', '408348', '409169', '409170', '409197']
nosy_count = 7.0
nosy_names = ['rhettinger', 'lukasz.langa', 'serhiy.storchaka', 'miss-islington', 'uriyyo', 'kumaraditya', 'AlexWaygood']
pr_nums = ['30050', '30254', '30255']
priority = 'normal'
resolution = 'fixed'
stage = 'resolved'
status = 'closed'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue46032'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-116544
* gh-124710
* gh-124711
<!-- /gh-linked-prs -->
| 2357d5ba48cd9685cb36bcf92a0eaed86a85f4de | 626668912f3102a96d3f251f5304ad2f8326f3cc |
python/cpython | python__cpython-135779 | # Teach pprint about dict views
BPO | [45959](https://bugs.python.org/issue45959)
--- | :---
Nosy | @rhettinger, @devdanzin, @merwok, @AlexWaygood, @david-peled, @joshinsel
PRs | <li>python/cpython#30135</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-12-02.07:06:56.201>
labels = ['easy', 'type-feature', 'library', '3.11']
title = 'Teach pprint about dict views'
updated_at = <Date 2022-01-18.01:57:55.609>
user = 'https://github.com/rhettinger'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-18.01:57:55.609>
actor = 'eric.araujo'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-12-02.07:06:56.201>
creator = 'rhettinger'
dependencies = []
files = []
hgrepos = []
issue_num = 45959
keywords = ['patch', 'easy']
message_count = 5.0
messages = ['407513', '408582', '408648', '408682', '410839']
nosy_count = 6.0
nosy_names = ['rhettinger', 'ajaksu2', 'eric.araujo', 'AlexWaygood', 'david-peled', 'joshinsel']
pr_nums = ['30135']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue45959'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-135779
<!-- /gh-linked-prs -->
| ee0e22c088ce5483d4bacd5457d4feb5886bb58a | 4e6f0d116e9725efb2d8eb6c3274aa3c024a6fb4 |
python/cpython | python__cpython-109581 | # Reintroduce bootstrap_python for freezing
BPO | [45950](https://bugs.python.org/issue45950)
--- | :---
Nosy | @gvanrossum, @ronaldoussoren, @tiran, @ned-deily, @ericsnowcurrently, @pablogsal
PRs | <li>python/cpython#29859</li><li>python/cpython#29936</li><li>python/cpython#29939</li><li>python/cpython#29939</li>
Dependencies | <li>bpo-45696: "Deep-freeze": skip the marshal step by generating C code</li><li>bpo-45873: Stop using bootstrap_python for deep-freeze in UNIX builds</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/tiran'
closed_at = None
created_at = <Date 2021-12-01.16:26:37.476>
labels = ['type-bug', 'build', '3.11']
title = 'Reintroduce bootstrap_python for freezing'
updated_at = <Date 2021-12-07.02:25:38.567>
user = 'https://github.com/tiran'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-07.02:25:38.567>
actor = 'ned.deily'
assignee = 'christian.heimes'
closed = False
closed_date = None
closer = None
components = ['Build']
creation = <Date 2021-12-01.16:26:37.476>
creator = 'christian.heimes'
dependencies = ['45696', '45873']
files = []
hgrepos = []
issue_num = 45950
keywords = ['patch']
message_count = 11.0
messages = ['407467', '407592', '407776', '407777', '407779', '407782', '407790', '407801', '407827', '407830', '407889']
nosy_count = 6.0
nosy_names = ['gvanrossum', 'ronaldoussoren', 'christian.heimes', 'ned.deily', 'eric.snow', 'pablogsal']
pr_nums = ['29859', '29936', '29939', '29939']
priority = None
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45950'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-109581
<!-- /gh-linked-prs -->
| 467abfe1d4de8ea3fb576759259574730528a398 | 01481f2dc13341c84b64d6dffc08ffed022712a6 |
python/cpython | python__cpython-100756 | # RecursionError when annotating a field with the same name as a field
BPO | [45946](https://bugs.python.org/issue45946)
--- | :---
Nosy | @ericvsmith, @Gobot1234
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/ericvsmith'
closed_at = None
created_at = <Date 2021-12-01.10:19:19.453>
labels = ['library', 'type-crash', '3.11']
title = 'RecursionError when annotating a field with the same name as a field'
updated_at = <Date 2021-12-01.14:30:55.716>
user = 'https://github.com/Gobot1234'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-01.14:30:55.716>
actor = 'eric.smith'
assignee = 'eric.smith'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-12-01.10:19:19.453>
creator = 'Gobot1234'
dependencies = []
files = []
hgrepos = []
issue_num = 45946
keywords = []
message_count = 1.0
messages = ['407438']
nosy_count = 2.0
nosy_names = ['eric.smith', 'Gobot1234']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'crash'
url = 'https://bugs.python.org/issue45946'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-100756
* gh-100784
* gh-100785
<!-- /gh-linked-prs -->
| 0a7936a38f0bab1619ee9fe257880a51c9d839d5 | cc8748712e78805c5be4a0a3f98cfb5c35026d0e |
python/cpython | python__cpython-110496 | # Pdb can't use the commands through -c or .pdbrc files
BPO | [45937](https://bugs.python.org/issue45937)
--- | :---
Nosy | @Zrincet
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-11-30.03:36:50.577>
labels = ['3.8', 'library']
title = "Pdb can't use the commands through -c or .pdbrc files"
updated_at = <Date 2021-11-30.03:36:50.577>
user = 'https://github.com/Zrincet'
```
bugs.python.org fields:
```python
activity = <Date 2021-11-30.03:36:50.577>
actor = 'Zrincet'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-11-30.03:36:50.577>
creator = 'Zrincet'
dependencies = []
files = []
hgrepos = []
issue_num = 45937
keywords = []
message_count = 1.0
messages = ['407350']
nosy_count = 1.0
nosy_names = ['Zrincet']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue45937'
versions = ['Python 3.8']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-110496
* gh-116660
* gh-116661
* gh-116834
* gh-116854
* gh-116855
<!-- /gh-linked-prs -->
| 44f9a84b67c97c94f0d581ffd63b24b73fb79610 | 3c0dcef9808e34744096769b15bad4f1f97569f0 |
python/cpython | python__cpython-100278 | # Specialize COMPARE_OP
BPO | [45885](https://bugs.python.org/issue45885)
--- | :---
Nosy | @markshannon, @brandtbucher, @sweeneyde
PRs | <li>python/cpython#29734</li><li>python/cpython#31040</li><li>python/cpython#31516</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = <Date 2021-12-03.23:45:56.141>
created_at = <Date 2021-11-23.21:00:24.137>
labels = ['interpreter-core', '3.11', 'performance']
title = 'Specialize COMPARE_OP'
updated_at = <Date 2022-02-23.11:06:35.684>
user = 'https://github.com/sweeneyde'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-23.11:06:35.684>
actor = 'Mark.Shannon'
assignee = 'none'
closed = True
closed_date = <Date 2021-12-03.23:45:56.141>
closer = 'Dennis Sweeney'
components = ['Interpreter Core']
creation = <Date 2021-11-23.21:00:24.137>
creator = 'Dennis Sweeney'
dependencies = []
files = []
hgrepos = []
issue_num = 45885
keywords = ['patch']
message_count = 5.0
messages = ['406887', '406930', '407577', '412441', '413784']
nosy_count = 3.0
nosy_names = ['Mark.Shannon', 'brandtbucher', 'Dennis Sweeney']
pr_nums = ['29734', '31040', '31516']
priority = 'normal'
resolution = 'fixed'
stage = 'resolved'
status = 'closed'
superseder = None
type = 'performance'
url = 'https://bugs.python.org/issue45885'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-100278
<!-- /gh-linked-prs -->
| 9076455d1b8132928470c11df874ca7c8580b012 | d4052d835bd6f1b648d533dab8c228b6e3944651 |
python/cpython | python__cpython-105075 | # xattr support missing in os module under cygwin
BPO | [45868](https://bugs.python.org/issue45868)
--- | :---
Nosy | @iritkatriel
Superseder | <li>bpo-45537: Cygwin is unsupported - close all open issues and list them here.</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = <Date 2022-01-23.20:10:01.267>
created_at = <Date 2021-11-22.12:39:12.588>
labels = ['type-bug', '3.8', 'build']
title = 'xattr support missing in os module under cygwin'
updated_at = <Date 2022-01-23.20:10:01.266>
user = 'https://bugs.python.org/enok2'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-23.20:10:01.266>
actor = 'iritkatriel'
assignee = 'none'
closed = True
closed_date = <Date 2022-01-23.20:10:01.267>
closer = 'iritkatriel'
components = ['Build']
creation = <Date 2021-11-22.12:39:12.588>
creator = 'enok2'
dependencies = []
files = []
hgrepos = []
issue_num = 45868
keywords = []
message_count = 4.0
messages = ['406768', '411414', '411415', '411417']
nosy_count = 2.0
nosy_names = ['iritkatriel', 'enok2']
pr_nums = []
priority = 'normal'
resolution = 'wont fix'
stage = 'resolved'
status = 'closed'
superseder = '45537'
type = 'behavior'
url = 'https://bugs.python.org/issue45868'
versions = ['Python 3.8']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-105075
<!-- /gh-linked-prs -->
| 7810b6981ac663b77bc9ee9dc4b1960ec6845ea7 | 7bcf184dacf5cfbcb16b4c2735472314b03a009e |
python/cpython | python__cpython-105366 | # PEP 604 Union syntax does not support forward references
BPO | [45857](https://bugs.python.org/issue45857)
--- | :---
Nosy | @gvanrossum, @ericvsmith, @Fidget-Spinner, @AlexWaygood
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-11-21.14:48:31.479>
labels = ['type-bug', '3.10', '3.11']
title = 'PEP 604 Union syntax does not support forward references'
updated_at = <Date 2021-11-22.16:46:08.109>
user = 'https://bugs.python.org/TNThung'
```
bugs.python.org fields:
```python
activity = <Date 2021-11-22.16:46:08.109>
actor = 'AlexWaygood'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2021-11-21.14:48:31.479>
creator = 'TNThung'
dependencies = []
files = []
hgrepos = []
issue_num = 45857
keywords = []
message_count = 6.0
messages = ['406720', '406724', '406726', '406731', '406775', '406792']
nosy_count = 5.0
nosy_names = ['gvanrossum', 'eric.smith', 'kj', 'AlexWaygood', 'TNThung']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45857'
versions = ['Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-105366
* gh-105460
* gh-105461
<!-- /gh-linked-prs -->
| fbdee000de47ae96fbf53ce8908e8efbb23cfba4 | c85be33acc29f36e07b6220b17f994de7e71801b |
python/cpython | python__cpython-105236 | # Port module setup to PY_STDLIB_MOD() macro and addext()
BPO | [45847](https://bugs.python.org/issue45847)
--- | :---
Nosy | @tiran, @ned-deily, @pablogsal, @miss-islington, @erlend-aasland, @arhadthedev
PRs | <li>python/cpython#29642</li><li>python/cpython#29644</li><li>python/cpython#29660</li><li>python/cpython#29668</li><li>python/cpython#29685</li><li>python/cpython#29688</li><li>python/cpython#29689</li><li>python/cpython#29690</li><li>python/cpython#29696</li><li>python/cpython#29697</li><li>python/cpython#29699</li><li>python/cpython#29702</li><li>python/cpython#29703</li><li>python/cpython#29705</li><li>python/cpython#29706</li><li>python/cpython#29707</li><li>python/cpython#29713</li><li>python/cpython#29715</li><li>python/cpython#29720</li><li>python/cpython#29725</li><li>python/cpython#29727</li><li>python/cpython#29738</li><li>python/cpython#29741</li><li>python/cpython#29743</li><li>python/cpython#29747</li><li>python/cpython#29768</li><li>python/cpython#29769</li><li>python/cpython#29833</li><li>python/cpython#29844</li><li>python/cpython#29914</li><li>python/cpython#29946</li><li>python/cpython#29967</li><li>python/cpython#29969</li><li>python/cpython#31698</li><li>python/cpython#32229</li><li>python/cpython#32299</li><li>python/cpython#32328</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-11-19.16:56:30.299>
labels = ['type-feature', 'build', '3.11']
title = 'Port module setup to PY_STDLIB_MOD() macro and addext()'
updated_at = <Date 2022-04-05.04:48:03.902>
user = 'https://github.com/tiran'
```
bugs.python.org fields:
```python
activity = <Date 2022-04-05.04:48:03.902>
actor = 'Anthony Sottile'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Build']
creation = <Date 2021-11-19.16:56:30.299>
creator = 'christian.heimes'
dependencies = []
files = []
hgrepos = []
issue_num = 45847
keywords = ['patch']
message_count = 61.0
messages = ['406597', '406618', '406646', '406662', '406703', '406714', '406746', '406751', '406754', '406755', '406763', '406771', '406777', '406779', '406781', '406782', '406783', '406784', '406785', '406788', '406801', '406822', '406823', '406842', '406890', '406891', '406892', '406905', '406913', '406914', '407077', '407199', '407249', '407255', '407274', '407287', '407654', '407668', '407861', '407949', '407958', '407959', '407962', '407981', '408008', '414642', '414645', '414648', '414649', '414656', '416425', '416565', '416566', '416567', '416568', '416569', '416570', '416575', '416600', '416712', '416750']
nosy_count = 6.0
nosy_names = ['christian.heimes', 'ned.deily', 'pablogsal', 'miss-islington', 'erlendaasland', 'arhadthedev']
pr_nums = ['29642', '29644', '29660', '29668', '29685', '29688', '29689', '29690', '29696', '29697', '29699', '29702', '29703', '29705', '29706', '29707', '29713', '29715', '29720', '29725', '29727', '29738', '29741', '29743', '29747', '29768', '29769', '29833', '29844', '29914', '29946', '29967', '29969', '31698', '32229', '32299', '32328']
priority = None
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue45847'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-105236
* gh-105359
* gh-105360
<!-- /gh-linked-prs -->
| e01c4de35dd40b132e57f4ba801991619bd2726b | f4d8e10d0d0cc1ba0787d2350a699d9fb227a7cd |
python/cpython | python__cpython-103022 | # Remove C stack use by specializing BINARY_SUBSCR, STORE_SUBSCR, LOAD_ATTR, and STORE_ATTR
BPO | [45829](https://bugs.python.org/issue45829)
--- | :---
Nosy | @gvanrossum, @pmp-p, @markshannon, @pablogsal, @brandtbucher, @sweeneyde
PRs | <li>python/cpython#29592</li><li>python/cpython#30129</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/markshannon'
closed_at = None
created_at = <Date 2021-11-17.09:50:11.128>
labels = ['interpreter-core', '3.11', 'performance']
title = 'Remove C stack use by specializing BINARY_SUBSCR, STORE_SUBSCR, LOAD_ATTR, and STORE_ATTR'
updated_at = <Date 2021-12-16.11:08:35.974>
user = 'https://github.com/markshannon'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-16.11:08:35.974>
actor = 'Mark.Shannon'
assignee = 'Mark.Shannon'
closed = False
closed_date = None
closer = None
components = ['Interpreter Core']
creation = <Date 2021-11-17.09:50:11.128>
creator = 'Mark.Shannon'
dependencies = []
files = []
hgrepos = []
issue_num = 45829
keywords = ['patch']
message_count = 7.0
messages = ['406461', '406473', '406476', '406477', '406530', '406573', '408687']
nosy_count = 6.0
nosy_names = ['gvanrossum', 'pmpp', 'Mark.Shannon', 'pablogsal', 'brandtbucher', 'Dennis Sweeney']
pr_nums = ['29592', '30129']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'performance'
url = 'https://bugs.python.org/issue45829'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-103022
<!-- /gh-linked-prs -->
| 121057aa3600c4d4d392539aeb79e1b09fd5659d | e647dbaded898e5399d01d06771c1b42b5631be8 |
python/cpython | python__cpython-125325 | # Race condition in WeakKeyDictionary/WeakValueDictionary
BPO | [45809](https://bugs.python.org/issue45809)
--- | :---
Nosy | @colesbury
Files | <li>[issue45809-repro.patch](https://bugs.python.org/file50440/issue45809-repro.patch "Uploaded as text/plain at 2021-11-15.19:05:22 by @colesbury"): Patch to make reproduction easier</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-11-15.19:02:38.373>
labels = ['type-bug', 'library', '3.9', '3.10', '3.11']
title = 'Race condition in WeakKeyDictionary/WeakKeyDictionary'
updated_at = <Date 2021-11-15.19:05:22.656>
user = 'https://github.com/colesbury'
```
bugs.python.org fields:
```python
activity = <Date 2021-11-15.19:05:22.656>
actor = 'colesbury'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-11-15.19:02:38.373>
creator = 'colesbury'
dependencies = []
files = ['50440']
hgrepos = []
issue_num = 45809
keywords = ['patch']
message_count = 2.0
messages = ['406357', '406358']
nosy_count = 1.0
nosy_names = ['colesbury']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45809'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-125325
<!-- /gh-linked-prs -->
| cd0f9d111a040ad863c680e9f464419640c8c3fd | 08489325d1cd94eba97c5f5f8cac49521fd0b0d7 |
python/cpython | python__cpython-110508 | # The Python implementation of Decimal does not support the "N" format
BPO | [45739](https://bugs.python.org/issue45739)
--- | :---
Nosy | @rhettinger, @facundobatista, @mdickinson, @ericvsmith, @serhiy-storchaka
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-11-06.13:51:18.396>
labels = ['type-bug', 'library', '3.9', '3.10', '3.11']
title = 'The Python implementation of Decimal does not support the "N" format'
updated_at = <Date 2021-11-29.09:28:44.922>
user = 'https://github.com/serhiy-storchaka'
```
bugs.python.org fields:
```python
activity = <Date 2021-11-29.09:28:44.922>
actor = 'serhiy.storchaka'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-11-06.13:51:18.396>
creator = 'serhiy.storchaka'
dependencies = []
files = []
hgrepos = []
issue_num = 45739
keywords = []
message_count = 10.0
messages = ['405861', '405898', '405901', '407195', '407196', '407210', '407212', '407229', '407234', '407254']
nosy_count = 5.0
nosy_names = ['rhettinger', 'facundobatista', 'mark.dickinson', 'eric.smith', 'serhiy.storchaka']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45739'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-110508
<!-- /gh-linked-prs -->
| d96a8cdfe201546f6d077fa93953b695c4ea8c59 | 6780d63ae5ed5ec98782606491a30b3bdb2f32b4 |
python/cpython | python__cpython-104678 | # SharedMemory documentation: System V vs Posix
BPO | [45728](https://bugs.python.org/issue45728)
--- | :---
Nosy | @terryjreedy, @pitrou, @applio, @nescio007
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-11-05.13:46:16.151>
labels = ['3.11', 'type-feature', '3.9', '3.10', 'docs']
title = 'SharedMemory documentation: System V vs Posix'
updated_at = <Date 2021-11-06.02:30:17.465>
user = 'https://github.com/nescio007'
```
bugs.python.org fields:
```python
activity = <Date 2021-11-06.02:30:17.465>
actor = 'terry.reedy'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2021-11-05.13:46:16.151>
creator = 'jkrupp'
dependencies = []
files = []
hgrepos = []
issue_num = 45728
keywords = []
message_count = 2.0
messages = ['405797', '405843']
nosy_count = 5.0
nosy_names = ['terry.reedy', 'pitrou', 'docs@python', 'davin', 'jkrupp']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue45728'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-104678
* gh-114873
* gh-114874
<!-- /gh-linked-prs -->
| 500ede01178a8063bb2a3c664172dffa1b40d7c9 | e66d0399cc2e78fcdb6a0113cd757d2ce567ca7c |
python/cpython | python__cpython-29429 | # Improve and simplify configure.ac checks
BPO | [45723](https://bugs.python.org/issue45723)
--- | :---
Nosy | @tiran, @erlend-aasland
PRs | <details><li>python/cpython#29429</li><li>python/cpython#29441</li><li>python/cpython#29442</li><li>python/cpython#29466</li><li>python/cpython#29485</li><li>python/cpython#29486</li><li>python/cpython#29500</li><li>python/cpython#29517</li><li>python/cpython#29637</li><li>python/cpython#29701</li><li>python/cpython#29846</li><li>python/cpython#30024</li><li>python/cpython#30026</li><li>python/cpython#30029</li><li>python/cpython#30449</li></details>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/tiran'
closed_at = None
created_at = <Date 2021-11-05.10:05:47.030>
labels = ['type-feature', 'build', '3.11']
title = 'Improve and simplify configure.ac checks'
updated_at = <Date 2022-01-12.04:40:54.295>
user = 'https://github.com/tiran'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-12.04:40:54.295>
actor = 'zach.ware'
assignee = 'christian.heimes'
closed = False
closed_date = None
closer = None
components = ['Build']
creation = <Date 2021-11-05.10:05:47.030>
creator = 'christian.heimes'
dependencies = []
files = []
hgrepos = []
issue_num = 45723
keywords = ['patch']
message_count = 18.0
messages = ['405780', '405799', '405865', '405896', '405932', '405977', '405978', '406021', '406027', '406054', '406104', '406137', '406745', '407281', '408191', '409946', '409951', '409953']
nosy_count = 3.0
nosy_names = ['christian.heimes', 'erlendaasland', 'byllyfish']
pr_nums = ['29429', '29441', '29442', '29466', '29485', '29486', '29500', '29517', '29637', '29701', '29846', '30024', '30026', '30029', '30449']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue45723'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-29429
* gh-29441
* gh-29442
* gh-29466
* gh-29485
* gh-29486
* gh-29500
* gh-29517
* gh-29637
* gh-29701
* gh-29846
* gh-30024
* gh-30026
* gh-30029
* gh-30449
* gh-104925
* gh-105058
* gh-105062
* gh-105118
* gh-105192
* gh-105207
* gh-105226
* gh-105423
<!-- /gh-linked-prs -->
| 57c50c9c7c701a8301c5a89b2b2d050550f62022 | 19b107e9b52dbd73f4c52adcb91e8185a53b45ae |
python/cpython | python__cpython-125379 | # argparse bug: prefix_chars argument to add_argument_group doesn't really work
BPO | [45656](https://bugs.python.org/issue45656)
--- | :---
Files | <li>[argparser-bug.py](https://bugs.python.org/file50410/argparser-bug.py "Uploaded as text/plain at 2021-10-28.18:27:12 by samwyse")</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-10-28.18:27:12.120>
labels = ['type-bug', 'library']
title = "argparse bug: prefix_chars argument to add_argument_group doesn't really work"
updated_at = <Date 2021-11-02.20:19:39.416>
user = 'https://bugs.python.org/samwyse'
```
bugs.python.org fields:
```python
activity = <Date 2021-11-02.20:19:39.416>
actor = 'paul.j3'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-10-28.18:27:12.120>
creator = 'samwyse'
dependencies = []
files = ['50410']
hgrepos = []
issue_num = 45656
keywords = []
message_count = 3.0
messages = ['405217', '405525', '405542']
nosy_count = 2.0
nosy_names = ['samwyse', 'paul.j3']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45656'
versions = ['Python 3.6']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-125379
* gh-125538
* gh-125539
<!-- /gh-linked-prs -->
| c9826c11db25e81b1a90c837f84074879f1b1126 | bb9604b62ae7f043594ffea9287f9213067cc7fb |
python/cpython | python__cpython-113558 | # Better tp_version_tag overflow checks in specializer
BPO | [45648](https://bugs.python.org/issue45648)
--- | :---
Nosy | @markshannon, @Fidget-Spinner
PRs | <li>python/cpython#29272</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-10-28.14:53:27.764>
labels = ['3.11']
title = 'Better tp_version_tag overflow checks in specializer'
updated_at = <Date 2021-10-28.14:53:42.278>
user = 'https://github.com/Fidget-Spinner'
```
bugs.python.org fields:
```python
activity = <Date 2021-10-28.14:53:42.278>
actor = 'kj'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2021-10-28.14:53:27.764>
creator = 'kj'
dependencies = []
files = []
hgrepos = []
issue_num = 45648
keywords = ['patch']
message_count = 1.0
messages = ['405190']
nosy_count = 2.0
nosy_names = ['Mark.Shannon', 'kj']
pr_nums = ['29272']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue45648'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-113558
* gh-114216
* gh-115045
<!-- /gh-linked-prs -->
| f653caa5a88d3b5027a8f286ff3a3ccd9e6fe4ed | c65ae26f2b46ca616a7ca000bbfcdf63b9bdd779 |
python/cpython | python__cpython-101837 | # Tools/freeze needs tests in the test suite.
BPO | [45629](https://bugs.python.org/issue45629)
--- | :---
Nosy | @malemburg, @gpshead, @ericsnowcurrently
PRs | <li>python/cpython#29222</li><li>python/cpython#31094</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/ericsnowcurrently'
closed_at = <Date 2021-10-28.16:15:24.348>
created_at = <Date 2021-10-27.15:42:12.541>
labels = ['3.11']
title = 'Tools/freeze needs tests in the test suite.'
updated_at = <Date 2022-02-03.05:36:25.402>
user = 'https://github.com/ericsnowcurrently'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-03.05:36:25.402>
actor = 'gregory.p.smith'
assignee = 'eric.snow'
closed = True
closed_date = <Date 2021-10-28.16:15:24.348>
closer = 'eric.snow'
components = ['Demos and Tools']
creation = <Date 2021-10-27.15:42:12.541>
creator = 'eric.snow'
dependencies = []
files = []
hgrepos = []
issue_num = 45629
keywords = ['patch']
message_count = 3.0
messages = ['405105', '405197', '412421']
nosy_count = 3.0
nosy_names = ['lemburg', 'gregory.p.smith', 'eric.snow']
pr_nums = ['29222', '31094']
priority = 'normal'
resolution = 'fixed'
stage = 'resolved'
status = 'closed'
superseder = None
type = None
url = 'https://bugs.python.org/issue45629'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-101837
* gh-101839
* gh-101841
* gh-101842
<!-- /gh-linked-prs -->
| 1d194235e4d5981b5fea25c75318d61189103a58 | 3eb12df8b526aa5a2ca6b43f21a1c5e7d38ee634 |
python/cpython | python__cpython-124572 | # Please officially support %G, %V and %u directives in time library
BPO | [45599](https://bugs.python.org/issue45599)
--- | :---
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-10-24.13:50:42.617>
labels = ['type-feature', 'library', '3.11']
title = 'Please officially support %G, %V and %u directives in time library'
updated_at = <Date 2021-10-25.09:48:51.632>
user = 'https://bugs.python.org/Raphael'
```
bugs.python.org fields:
```python
activity = <Date 2021-10-25.09:48:51.632>
actor = 'Raphael'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-10-24.13:50:42.617>
creator = 'Raphael'
dependencies = []
files = []
hgrepos = []
issue_num = 45599
keywords = []
message_count = 1.0
messages = ['404933']
nosy_count = 1.0
nosy_names = ['Raphael']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue45599'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124572
* gh-126094
* gh-126095
<!-- /gh-linked-prs -->
| 85799f1ffd5f285ef93a608b0aaf6acbb464ff9d | 00ea179879726ae221ac7084bdc14752c45ff558 |
python/cpython | python__cpython-108307 | # Rewrite getpath.c in Python
BPO | [45582](https://bugs.python.org/issue45582)
--- | :---
Nosy | @ncoghlan, @tiran, @benjaminp, @ambv, @ericsnowcurrently, @zooba, @miss-islington, @neonene, @FFY00
PRs | <li>python/cpython#29041</li><li>python/cpython#29902</li><li>python/cpython#29906</li><li>python/cpython#29907</li><li>python/cpython#29921</li><li>python/cpython#29930</li><li>python/cpython#29941</li><li>python/cpython#29944</li><li>python/cpython#29948</li><li>python/cpython#29954</li><li>python/cpython#29979</li><li>python/cpython#30014</li><li>python/cpython#31699</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/zooba'
closed_at = <Date 2021-12-03.00:10:47.332>
created_at = <Date 2021-10-22.23:26:55.306>
labels = ['interpreter-core', 'type-feature', '3.11']
title = 'Rewrite getpath.c in Python'
updated_at = <Date 2022-03-06.19:49:35.401>
user = 'https://github.com/zooba'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-06.19:49:35.401>
actor = 'christian.heimes'
assignee = 'steve.dower'
closed = True
closed_date = <Date 2021-12-03.00:10:47.332>
closer = 'steve.dower'
components = ['Interpreter Core']
creation = <Date 2021-10-22.23:26:55.306>
creator = 'steve.dower'
dependencies = []
files = []
hgrepos = []
issue_num = 45582
keywords = ['patch']
message_count = 30.0
messages = ['404841', '404843', '405348', '405640', '405641', '405653', '405658', '405731', '405742', '406183', '406184', '406384', '407113', '407322', '407326', '407561', '407562', '407565', '407587', '407604', '407609', '407616', '407720', '407846', '407852', '407881', '407960', '407994', '408226', '414622']
nosy_count = 9.0
nosy_names = ['ncoghlan', 'christian.heimes', 'benjamin.peterson', 'lukasz.langa', 'eric.snow', 'steve.dower', 'miss-islington', 'neonene', 'FFY00']
pr_nums = ['29041', '29902', '29906', '29907', '29921', '29930', '29941', '29944', '29948', '29954', '29979', '30014', '31699']
priority = 'normal'
resolution = 'fixed'
stage = 'resolved'
status = 'closed'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue45582'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-108307
* gh-128861
<!-- /gh-linked-prs -->
| c1c9cd61da1c5b6318da9f7055d45ec82a9949ba | 615f6e946db6d7eae66b8de9a75a6c58a84516a6 |
python/cpython | python__cpython-94146 | # Cannot import modules from Zip64 files
BPO | [45576](https://bugs.python.org/issue45576)
--- | :---
Nosy | @luisffranca
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-10-22.16:40:33.579>
labels = ['type-bug', 'library', '3.9']
title = 'Cannot import modules from Zip64 files'
updated_at = <Date 2021-10-22.16:40:33.579>
user = 'https://github.com/luisffranca'
```
bugs.python.org fields:
```python
activity = <Date 2021-10-22.16:40:33.579>
actor = 'lfamorim'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-10-22.16:40:33.579>
creator = 'lfamorim'
dependencies = []
files = []
hgrepos = []
issue_num = 45576
keywords = []
message_count = 1.0
messages = ['404792']
nosy_count = 1.0
nosy_names = ['lfamorim']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45576'
versions = ['Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-94146
<!-- /gh-linked-prs -->
| b44898299a2ed97045c270f6474785da2ff07ced | 2cedd25c14d3acfdcb5e8ee55132ce3e334ab8fe |
python/cpython | python__cpython-123098 | # Frozen dataclass deep copy doesn't work with __slots__
BPO | [45520](https://bugs.python.org/issue45520)
--- | :---
Nosy | @ericvsmith, @MojoVampire, @jfuruness, @sobolevn
PRs | <li>python/cpython#29147</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-10-18.23:18:22.340>
labels = ['type-bug', '3.9', '3.10']
title = "Frozen dataclass deep copy doesn't work with __slots__"
updated_at = <Date 2021-10-22.08:08:50.197>
user = 'https://github.com/jfuruness'
```
bugs.python.org fields:
```python
activity = <Date 2021-10-22.08:08:50.197>
actor = 'sobolevn'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2021-10-18.23:18:22.340>
creator = 'jfuruness'
dependencies = []
files = []
hgrepos = []
issue_num = 45520
keywords = ['patch']
message_count = 5.0
messages = ['404245', '404260', '404273', '404354', '404525']
nosy_count = 4.0
nosy_names = ['eric.smith', 'josh.r', 'jfuruness', 'sobolevn']
pr_nums = ['29147']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45520'
versions = ['Python 3.9', 'Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-123098
* gh-124678
* gh-124679
<!-- /gh-linked-prs -->
| 5e7eba09bcdafe361b491b3f8cf30d7dd2df0a78 | 2c108328877984f2d92604764c66ef15bd82b31e |
python/cpython | python__cpython-99843 | # [C API] PEP 670: Convert macros to functions in the Python C API
BPO | [45490](https://bugs.python.org/issue45490)
--- | :---
Nosy | @malemburg, @vstinner, @erlend-aasland
PRs | <li>python/cpython#29728</li><li>python/cpython#31217</li><li>python/cpython#31221</li>
Files | <li>[macros-that-reuse-args.txt](https://bugs.python.org/file50616/macros-that-reuse-args.txt "Uploaded as text/plain at 2022-02-10.12:50:36 by @erlend-aasland")</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-10-15.17:43:25.813>
labels = ['expert-C-API', '3.11']
title = '[C API] PEP 670: Convert macros to functions in the Python C API'
updated_at = <Date 2022-02-11.16:01:26.957>
user = 'https://github.com/vstinner'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-11.16:01:26.957>
actor = 'vstinner'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['C API']
creation = <Date 2021-10-15.17:43:25.813>
creator = 'vstinner'
dependencies = []
files = ['50616']
hgrepos = []
issue_num = 45490
keywords = ['patch']
message_count = 7.0
messages = ['404038', '404045', '404183', '404185', '412861', '412995', '413079']
nosy_count = 3.0
nosy_names = ['lemburg', 'vstinner', 'erlendaasland']
pr_nums = ['29728', '31217', '31221']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue45490'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-99843
<!-- /gh-linked-prs -->
| 02f72b8b938e301bbaaf0142547014e074bd564c | 53eef27133c1da395b3b4d7ce0ab1d5b743ffb41 |
python/cpython | python__cpython-125571 | # configure script cannot detect float word ordering on linux
BPO | [45477](https://bugs.python.org/issue45477)
--- | :---
Nosy | @tiran
Files | <li>[config.log](https://bugs.python.org/file50364/config.log "Uploaded as text/plain at 2021-10-16.16:27:29 by sourish.basu")</li><li>[conftest.o](https://bugs.python.org/file50374/conftest.o "Uploaded as application/octet-stream at 2021-10-20.13:23:38 by sourish.basu")</li><li>[conftest.c](https://bugs.python.org/file50375/conftest.c "Uploaded as text/plain at 2021-10-20.13:23:53 by sourish.basu")</li><li>[conftest_unoptimized.o](https://bugs.python.org/file50376/conftest_unoptimized.o "Uploaded as application/octet-stream at 2021-10-20.14:08:43 by sourish.basu")</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-10-14.21:19:53.235>
labels = ['build', 'expert-installation', '3.10']
title = 'configure script cannot detect float word ordering on linux'
updated_at = <Date 2021-10-22.22:49:31.555>
user = 'https://bugs.python.org/sourishbasu'
```
bugs.python.org fields:
```python
activity = <Date 2021-10-22.22:49:31.555>
actor = 'sourish.basu'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Installation']
creation = <Date 2021-10-14.21:19:53.235>
creator = 'sourish.basu'
dependencies = []
files = ['50364', '50374', '50375', '50376']
hgrepos = []
issue_num = 45477
keywords = []
message_count = 12.0
messages = ['403951', '403978', '404096', '404135', '404138', '404447', '404448', '404449', '404450', '404459', '404463', '404836']
nosy_count = 2.0
nosy_names = ['christian.heimes', 'sourish.basu']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'compile error'
url = 'https://bugs.python.org/issue45477'
versions = ['Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-125571
* gh-126387
* gh-126429
* gh-126430
* gh-126569
* gh-126747
<!-- /gh-linked-prs -->
| 26d627779f79d8d5650fe7be348432eccc28f8f9 | a78d5b32429e2399178ac838e0e62b2bd62c0af9 |
python/cpython | python__cpython-113222 | # Make IDLE recognize .pyi stub files as source for open, save, and edit
BPO | [45447](https://bugs.python.org/issue45447)
--- | :---
Nosy | @terryjreedy, @ronaldoussoren, @zooba, @miss-islington, @E-Paine, @AlexWaygood
PRs | <li>python/cpython#28950</li><li>python/cpython#31303</li><li>python/cpython#31304</li><li>python/cpython#31305</li><li>python/cpython#31306</li><li>python/cpython#31307</li><li>python/cpython#31308</li><li>python/cpython#31309</li><li>python/cpython#31310</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/terryjreedy'
closed_at = None
created_at = <Date 2021-10-12.15:24:36.540>
labels = ['expert-IDLE', 'type-feature', '3.11']
title = 'Make IDLE recognize .pyi stub files as source for open, save, and edit'
updated_at = <Date 2022-02-14.03:35:10.254>
user = 'https://github.com/AlexWaygood'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-14.03:35:10.254>
actor = 'terry.reedy'
assignee = 'terry.reedy'
closed = False
closed_date = None
closer = None
components = ['IDLE']
creation = <Date 2021-10-12.15:24:36.540>
creator = 'AlexWaygood'
dependencies = []
files = []
hgrepos = []
issue_num = 45447
keywords = ['patch']
message_count = 28.0
messages = ['403738', '403741', '403755', '403772', '403884', '403889', '403915', '403998', '404021', '404023', '404030', '404100', '404102', '404110', '410637', '410669', '412561', '412617', '413147', '413149', '413150', '413156', '413157', '413158', '413168', '413169', '413170', '413211']
nosy_count = 6.0
nosy_names = ['terry.reedy', 'ronaldoussoren', 'steve.dower', 'miss-islington', 'epaine', 'AlexWaygood']
pr_nums = ['28950', '31303', '31304', '31305', '31306', '31307', '31308', '31309', '31310']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue45447'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-113222
* gh-113223
* gh-113224
<!-- /gh-linked-prs -->
| cde1335485b7bffb12c378d230ae48ad77d76ab1 | 2f0ec7fa9450caeac820a6dc819d17d14fd16a4b |
python/cpython | python__cpython-101251 | # GzipFile.write should be buffered
BPO | [45387](https://bugs.python.org/issue45387)
--- | :---
Nosy | @marcelm, @rhpvorderman
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-10-06.08:42:34.497>
labels = ['3.8', '3.9', '3.10', 'performance', '3.7', 'library', '3.11']
title = 'GzipFile.write should be buffered'
updated_at = <Date 2021-10-06.08:59:49.938>
user = 'https://github.com/rhpvorderman'
```
bugs.python.org fields:
```python
activity = <Date 2021-10-06.08:59:49.938>
actor = 'marcelm'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-10-06.08:42:34.497>
creator = 'rhpvorderman'
dependencies = []
files = []
hgrepos = []
issue_num = 45387
keywords = []
message_count = 1.0
messages = ['403289']
nosy_count = 2.0
nosy_names = ['marcelm', 'rhpvorderman']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'performance'
url = 'https://bugs.python.org/issue45387'
versions = ['Python 3.6', 'Python 3.7', 'Python 3.8', 'Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-101251
<!-- /gh-linked-prs -->
| 1858db7cbdbf41aa600c954c15224307bf81a258 | 7a56a4148c521969d64164d2776641f19e3ca9e8 |
python/cpython | python__cpython-110163 | # Calling `help` executes @classmethod @property decorated methods
BPO | [45356](https://bugs.python.org/issue45356)
--- | :---
Nosy | @rhettinger, @terryjreedy, @ambv, @berkerpeksag, @serhiy-storchaka, @wimglenn, @corona10, @pablogsal, @akulakov, @sirosen, @randolf-scholz, @AlexWaygood
PRs | <li>python/cpython#29239</li>
Files | <li>[classmethod_property.py](https://bugs.python.org/file50325/classmethod_property.py "Uploaded as text/plain at 2021-10-03.19:45:55 by @randolf-scholz")</li><li>[classmethod_property.py](https://bugs.python.org/file50326/classmethod_property.py "Uploaded as text/plain at 2021-10-03.20:21:20 by @randolf-scholz")</li><li>[ClassPropertyIdea.py](https://bugs.python.org/file50344/ClassPropertyIdea.py "Uploaded as text/plain at 2021-10-11.12:55:13 by @randolf-scholz")</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/rhettinger'
closed_at = None
created_at = <Date 2021-10-03.19:45:55.963>
labels = ['type-bug', '3.11']
title = 'Calling `help` executes @classmethod @property decorated methods'
updated_at = <Date 2022-02-17.20:03:40.349>
user = 'https://github.com/randolf-scholz'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-17.20:03:40.349>
actor = 'rhettinger'
assignee = 'rhettinger'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2021-10-03.19:45:55.963>
creator = 'randolf.scholz'
dependencies = []
files = ['50325', '50326', '50344']
hgrepos = []
issue_num = 45356
keywords = ['patch']
message_count = 23.0
messages = ['403109', '403110', '403111', '403504', '403505', '403578', '403582', '403611', '403613', '403653', '403699', '403713', '405100', '405115', '405121', '405142', '405143', '406600', '406605', '406606', '407493', '407499', '413451']
nosy_count = 13.0
nosy_names = ['rhettinger', 'terry.reedy', 'grahamd', 'lukasz.langa', 'berker.peksag', 'serhiy.storchaka', 'wim.glenn', 'corona10', 'pablogsal', 'andrei.avk', 'sirosen0', 'randolf.scholz', 'AlexWaygood']
pr_nums = ['29239']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45356'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-110163
<!-- /gh-linked-prs -->
| 7f9a99e8549b792662f2cd28bf38a4d4625bd402 | ee2d22f06d8a4ca13b2dba5e8a7a639a3997cc69 |
python/cpython | python__cpython-135610 | # Allow "p" in Py_BuildValue
BPO | [45325](https://bugs.python.org/issue45325)
--- | :---
Nosy | @vstinner, @serhiy-storchaka, @JelleZijlstra, @pablogsal, @godlygeek
PRs | <li>python/cpython#28634</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-09-29.18:08:04.356>
labels = []
title = 'Allow "p" in Py_BuildValue'
updated_at = <Date 2022-02-01.03:59:42.971>
user = 'https://github.com/pablogsal'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-01.03:59:42.971>
actor = 'JelleZijlstra'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2021-09-29.18:08:04.356>
creator = 'pablogsal'
dependencies = []
files = []
hgrepos = []
issue_num = 45325
keywords = ['patch']
message_count = 18.0
messages = ['402897', '402899', '402900', '402901', '402902', '402904', '402910', '402915', '402917', '402918', '402921', '402923', '402924', '402938', '402941', '402951', '402965', '412234']
nosy_count = 5.0
nosy_names = ['vstinner', 'serhiy.storchaka', 'JelleZijlstra', 'pablogsal', 'godlygeek']
pr_nums = ['28634']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue45325'
versions = []
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-135610
* gh-135843
<!-- /gh-linked-prs -->
| 6aa0826ed7688e5f40742cdcaf57420b284e194f | 6ab842fce50a6125797bcddfc4a4b2622aa6c6a9 |
python/cpython | python__cpython-115657 | # Document the removal the usage of the C stack in Python to Python calls
BPO | [45317](https://bugs.python.org/issue45317)
--- | :---
Nosy | @markshannon, @pablogsal
PRs | <li>python/cpython#32304</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/pablogsal'
closed_at = None
created_at = <Date 2021-09-29.11:40:33.214>
labels = ['3.11', 'type-feature', 'deferred-blocker', 'docs']
title = 'Document the removal the usage of the C stack in Python to Python calls'
updated_at = <Date 2022-04-04.14:10:02.227>
user = 'https://github.com/markshannon'
```
bugs.python.org fields:
```python
activity = <Date 2022-04-04.14:10:02.227>
actor = 'Mark.Shannon'
assignee = 'pablogsal'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2021-09-29.11:40:33.214>
creator = 'Mark.Shannon'
dependencies = []
files = []
hgrepos = []
issue_num = 45317
keywords = ['patch']
message_count = 3.0
messages = ['402850', '402853', '414655']
nosy_count = 3.0
nosy_names = ['docs@python', 'Mark.Shannon', 'pablogsal']
pr_nums = ['32304']
priority = 'deferred blocker'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue45317'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-115657
* gh-115857
* gh-115858
<!-- /gh-linked-prs -->
| 59057ce55a443f35bfd685c688071aebad7b3671 | 2ec50b4a66de6be418bfad058117249d4775df0f |
python/cpython | python__cpython-105044 | # Implement PEP 654: Exception Groups
BPO | [45292](https://bugs.python.org/issue45292)
--- | :---
Nosy | @gvanrossum, @markshannon, @tirkarthi, @erlend-aasland, @iritkatriel
PRs | <li>python/cpython#28569</li><li>python/cpython#29207</li><li>python/cpython#29545</li><li>python/cpython#29581</li><li>python/cpython#30158</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/iritkatriel'
closed_at = <Date 2022-01-06.19:06:15.397>
created_at = <Date 2021-09-26.12:07:11.663>
labels = ['interpreter-core', '3.11', 'type-feature', 'library', 'docs']
title = 'Implement PEP 654: Exception Groups'
updated_at = <Date 2022-01-06.19:06:15.396>
user = 'https://github.com/iritkatriel'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-06.19:06:15.396>
actor = 'iritkatriel'
assignee = 'iritkatriel'
closed = True
closed_date = <Date 2022-01-06.19:06:15.397>
closer = 'iritkatriel'
components = ['Documentation', 'Interpreter Core', 'Library (Lib)']
creation = <Date 2021-09-26.12:07:11.663>
creator = 'iritkatriel'
dependencies = []
files = []
hgrepos = []
issue_num = 45292
keywords = ['patch']
message_count = 12.0
messages = ['402661', '404837', '405773', '406266', '406400', '408549', '408557', '408559', '408560', '408589', '408590', '409898']
nosy_count = 5.0
nosy_names = ['gvanrossum', 'Mark.Shannon', 'xtreak', 'erlendaasland', 'iritkatriel']
pr_nums = ['28569', '29207', '29545', '29581', '30158']
priority = 'normal'
resolution = 'fixed'
stage = 'resolved'
status = 'closed'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue45292'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-105044
* gh-105066
* gh-105067
<!-- /gh-linked-prs -->
| 39f6a0489fcc815a578d27dfee2feea003c896f8 | 6da701511e70fb26ad4710153d8d5a82b809919c |
python/cpython | python__cpython-126924 | # 'os.path' should not be a frozen module
BPO | [45272](https://bugs.python.org/issue45272)
--- | :---
Nosy | @gvanrossum, @warsaw, @brettcannon, @jaraco, @ncoghlan, @ericsnowcurrently, @zooba, @corona10, @FFY00
PRs | <li>python/cpython#29329</li><li>python/cpython#29648</li><li>python/cpython#29648</li><li>python/cpython#29648</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/ericsnowcurrently'
closed_at = None
created_at = <Date 2021-09-23.16:24:55.449>
labels = ['type-bug', '3.11']
title = "'os.path' should not be a frozen module"
updated_at = <Date 2021-11-20.00:28:14.819>
user = 'https://github.com/zooba'
```
bugs.python.org fields:
```python
activity = <Date 2021-11-20.00:28:14.819>
actor = 'gvanrossum'
assignee = 'eric.snow'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2021-09-23.16:24:55.449>
creator = 'steve.dower'
dependencies = []
files = []
hgrepos = []
issue_num = 45272
keywords = ['patch']
message_count = 5.0
messages = ['402506', '402516', '403327', '403332', '403334']
nosy_count = 9.0
nosy_names = ['gvanrossum', 'barry', 'brett.cannon', 'jaraco', 'ncoghlan', 'eric.snow', 'steve.dower', 'corona10', 'FFY00']
pr_nums = ['29329', '29648', '29648', '29648']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45272'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-126924
<!-- /gh-linked-prs -->
| a264637654f9d3ac3c140e66fd56ee32faf22431 | 4759ba6eec9f0b36b24b8eb7e7b120d471c67e82 |
python/cpython | python__cpython-106643 | # venv: Make activate et al. export custom prompt prefix as an envvar
BPO | [45264](https://bugs.python.org/issue45264)
--- | :---
Nosy | @jwodder
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-09-22.15:23:41.614>
labels = ['type-feature', 'library', '3.11']
title = 'venv: Make activate et al. export custom prompt prefix as an envvar'
updated_at = <Date 2021-09-22.15:23:41.614>
user = 'https://github.com/jwodder'
```
bugs.python.org fields:
```python
activity = <Date 2021-09-22.15:23:41.614>
actor = 'jwodder'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-09-22.15:23:41.614>
creator = 'jwodder'
dependencies = []
files = []
hgrepos = []
issue_num = 45264
keywords = []
message_count = 1.0
messages = ['402444']
nosy_count = 1.0
nosy_names = ['jwodder']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue45264'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-106643
* gh-106726
<!-- /gh-linked-prs -->
| 8edc8029def8040ebe1caf75d815439156dd2124 | b822b85ac11e73bbe4417bf03ee770ab116bb42d |
python/cpython | python__cpython-100611 | # Remove the usage of the C stack in Python to Python calls
BPO | [45256](https://bugs.python.org/issue45256)
--- | :---
Nosy | @gvanrossum, @pmp-p, @markshannon, @serhiy-storchaka, @zooba, @ctismer, @corona10, @pablogsal, @brandtbucher, @Fidget-Spinner, @thesamesam
PRs | <li>python/cpython#28488</li><li>python/cpython#28836</li><li>python/cpython#28905</li><li>python/cpython#28937</li><li>python/cpython#29235</li><li>python/cpython#29238</li><li>python/cpython#30372</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = <Date 2022-01-06.12:52:24.256>
created_at = <Date 2021-09-21.10:41:59.834>
labels = ['3.11']
title = 'Remove the usage of the C stack in Python to Python calls'
updated_at = <Date 2022-01-06.12:52:24.256>
user = 'https://github.com/pablogsal'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-06.12:52:24.256>
actor = 'Mark.Shannon'
assignee = 'none'
closed = True
closed_date = <Date 2022-01-06.12:52:24.256>
closer = 'Mark.Shannon'
components = []
creation = <Date 2021-09-21.10:41:59.834>
creator = 'pablogsal'
dependencies = []
files = []
hgrepos = []
issue_num = 45256
keywords = ['patch']
message_count = 21.0
messages = ['402311', '402429', '402430', '402485', '402491', '402504', '402518', '402546', '402763', '402766', '402767', '402780', '402785', '403538', '403543', '403832', '404166', '405109', '405193', '406462', '409753']
nosy_count = 11.0
nosy_names = ['gvanrossum', 'pmpp', 'Mark.Shannon', 'serhiy.storchaka', 'steve.dower', 'Christian.Tismer', 'corona10', 'pablogsal', 'brandtbucher', 'kj', 'thesamesam']
pr_nums = ['28488', '28836', '28905', '28937', '29235', '29238', '30372']
priority = 'normal'
resolution = 'fixed'
stage = 'resolved'
status = 'closed'
superseder = None
type = None
url = 'https://bugs.python.org/issue45256'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-100611
* gh-100738
<!-- /gh-linked-prs -->
| 85869498331f7020e18bb243c89cd694f674b911 | 8b1f1251215651c4ef988622345c5cb134e54d69 |
python/cpython | python__cpython-126412 | # mimetypes cannot detect mime of mka files
BPO | [45253](https://bugs.python.org/issue45253)
--- | :---
Nosy | @Fidget-Spinner, @akulakov
Files | <li>[Screenshot from 2021-09-21 13-10-33.png](https://bugs.python.org/file50292/Screenshot%20from%202021-09-21%2013-10-33.png "Uploaded as image/png at 2021-09-21.07:49:08 by manujchandra")</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-09-21.07:49:08.538>
labels = ['type-bug', 'library', '3.9']
title = 'mimetypes cannot detect mime of mka files'
updated_at = <Date 2021-10-11.18:23:24.571>
user = 'https://bugs.python.org/manujchandra'
```
bugs.python.org fields:
```python
activity = <Date 2021-10-11.18:23:24.571>
actor = 'andrei.avk'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-09-21.07:49:08.538>
creator = 'manujchandra'
dependencies = []
files = ['50292']
hgrepos = []
issue_num = 45253
keywords = []
message_count = 2.0
messages = ['402290', '403666']
nosy_count = 3.0
nosy_names = ['kj', 'andrei.avk', 'manujchandra']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'pending'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45253'
versions = ['Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-126412
<!-- /gh-linked-prs -->
| 3c6d2d123004d8e37a2111083e22e2a2c96dffd0 | 4f3253a0ccf3a512c497f779e4a6db2656c75844 |
python/cpython | python__cpython-103684 | # Missing support for Source Specific Multicast
BPO | [45252](https://bugs.python.org/issue45252)
--- | :---
Nosy | @ciresnave
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-09-21.00:26:04.617>
labels = ['type-feature', 'library', '3.11']
title = 'Missing support for Source Specific Multicast'
updated_at = <Date 2021-09-24.23:41:45.383>
user = 'https://github.com/ciresnave'
```
bugs.python.org fields:
```python
activity = <Date 2021-09-24.23:41:45.383>
actor = 'terry.reedy'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-09-21.00:26:04.617>
creator = 'ciresnave'
dependencies = []
files = []
hgrepos = []
issue_num = 45252
keywords = []
message_count = 1.0
messages = ['402283']
nosy_count = 1.0
nosy_names = ['ciresnave']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue45252'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-103684
* gh-105266
* gh-105270
<!-- /gh-linked-prs -->
| 1d99e9e46e9b517532fea11befe2e6d0043850bd | 9169a56fad246364fd3224306e72e0d0725c35aa |
python/cpython | python__cpython-113580 | # signal.SIGCLD alias is not available on OSX
BPO | [45251](https://bugs.python.org/issue45251)
--- | :---
Nosy | @ronaldoussoren, @ned-deily, @tacaswell
Files | <li>[osx_signal_compat.patch](https://bugs.python.org/file50290/osx_signal_compat.patch "Uploaded as text/plain at 2021-09-20.22:27:22 by @tacaswell")</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-09-20.22:27:22.221>
labels = ['OS-mac', '3.9', '3.10', '3.11', 'library', 'docs']
title = 'signal.SIGCLD alias is not available on OSX'
updated_at = <Date 2021-09-24.23:40:59.307>
user = 'https://github.com/tacaswell'
```
bugs.python.org fields:
```python
activity = <Date 2021-09-24.23:40:59.307>
actor = 'terry.reedy'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation', 'Library (Lib)', 'macOS']
creation = <Date 2021-09-20.22:27:22.221>
creator = 'tcaswell'
dependencies = []
files = ['50290']
hgrepos = []
issue_num = 45251
keywords = ['patch']
message_count = 2.0
messages = ['402280', '402292']
nosy_count = 4.0
nosy_names = ['ronaldoussoren', 'ned.deily', 'docs@python', 'tcaswell']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue45251'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-113580
* gh-113585
* gh-113586
<!-- /gh-linked-prs -->
| f48a1bcb2914addee971814fd014e4d8075ea6a9 | 88cb9720001295f82c7771ab4ebf20f3cd0b31fb |
python/cpython | python__cpython-105046 | # Update doctect SyntaxErrors for location range
BPO | [45249](https://bugs.python.org/issue45249)
--- | :---
Nosy | @terryjreedy, @blueyed, @pablogsal, @miss-islington, @Fidget-Spinner, @akulakov
PRs | <li>python/cpython#28567</li><li>python/cpython#28575</li><li>python/cpython#28587</li><li>python/cpython#28854</li><li>python/cpython#28855</li><li>python/cpython#28994</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = <Date 2021-10-16.17:37:28.444>
created_at = <Date 2021-09-20.16:30:58.559>
labels = ['type-bug', 'library', '3.10', '3.11']
title = 'Update doctect SyntaxErrors for location range'
updated_at = <Date 2021-10-16.17:51:11.950>
user = 'https://github.com/akulakov'
```
bugs.python.org fields:
```python
activity = <Date 2021-10-16.17:51:11.950>
actor = 'miss-islington'
assignee = 'none'
closed = True
closed_date = <Date 2021-10-16.17:37:28.444>
closer = 'pablogsal'
components = ['Library (Lib)']
creation = <Date 2021-09-20.16:30:58.559>
creator = 'andrei.avk'
dependencies = []
files = []
hgrepos = []
issue_num = 45249
keywords = ['patch']
message_count = 18.0
messages = ['402257', '402258', '402260', '402263', '402268', '402269', '402271', '402284', '402589', '402652', '402662', '402670', '402739', '402742', '403157', '403588', '404103', '404106']
nosy_count = 6.0
nosy_names = ['terry.reedy', 'blueyed', 'pablogsal', 'miss-islington', 'kj', 'andrei.avk']
pr_nums = ['28567', '28575', '28587', '28854', '28855', '28994']
priority = 'low'
resolution = 'fixed'
stage = 'resolved'
status = 'closed'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45249'
versions = ['Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-105046
* gh-105327
* gh-105328
* gh-105329
<!-- /gh-linked-prs -->
| a4f72fa39a9d391c7b931ba1906d81da4ae01949 | eb0ce92141cd14196a8922cfe9df4a713c5c1d9b |
python/cpython | python__cpython-106209 | # Always use unittest for collecting tests in regrtests
BPO | [45229](https://bugs.python.org/issue45229)
--- | :---
Nosy | @terryjreedy, @ambv, @ambv, @zware, @serhiy-storchaka, @pablogsal, @miss-islington
PRs | <li>python/cpython#28405</li><li>python/cpython#28454</li><li>python/cpython#28455</li><li>python/cpython#28456</li><li>python/cpython#28467</li><li>python/cpython#28468</li><li>python/cpython#28478</li><li>python/cpython#28479</li><li>python/cpython#28615</li><li>python/cpython#28637</li><li>python/cpython#28639</li><li>python/cpython#28645</li><li>python/cpython#28650</li><li>python/cpython#28660</li><li>python/cpython#28666</li><li>python/cpython#28667</li><li>python/cpython#28668</li><li>python/cpython#28927</li><li>python/cpython#28929</li><li>python/cpython#28986</li><li>python/cpython#29004</li><li>python/cpython#29006</li><li>python/cpython#29007</li><li>python/cpython#29095</li><li>python/cpython#29096</li>
Dependencies | <li>bpo-40058: Running test_datetime twice fails with: module 'datetime' has no attribute '_divide_and_round'</li><li>bpo-40173: test.support.import_fresh_module fails to correctly block submodules when fresh is specified</li><li>bpo-45185: test.test_ssl.TestEnumerations is not run</li><li>bpo-45187: Some tests in test_socket are not run</li><li>bpo-45500: Rewrite test_dbm</li><li>bpo-45502: Fix test_shelve and make it discoverable</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/serhiy-storchaka'
closed_at = None
created_at = <Date 2021-09-17.07:31:12.126>
labels = ['type-feature', 'tests', '3.9', '3.10', '3.11']
title = 'Always use unittest for collecting tests in regrtests'
updated_at = <Date 2021-10-20.16:52:45.847>
user = 'https://github.com/serhiy-storchaka'
```
bugs.python.org fields:
```python
activity = <Date 2021-10-20.16:52:45.847>
actor = 'lukasz.langa'
assignee = 'serhiy.storchaka'
closed = False
closed_date = None
closer = None
components = ['Tests']
creation = <Date 2021-09-17.07:31:12.126>
creator = 'serhiy.storchaka'
dependencies = ['40058', '40173', '45185', '45187', '45500', '45502']
files = []
hgrepos = []
issue_num = 45229
keywords = ['patch']
message_count = 33.0
messages = ['402006', '402009', '402053', '402076', '402154', '402156', '402168', '402195', '402214', '402228', '402245', '402254', '402255', '402903', '402945', '402952', '402953', '402956', '402959', '402974', '402982', '402996', '402999', '403000', '403846', '403853', '403855', '404137', '404142', '404143', '404466', '404495', '404496']
nosy_count = 7.0
nosy_names = ['terry.reedy', 'lukasz.langa', 'lukasz.langa', 'zach.ware', 'serhiy.storchaka', 'pablogsal', 'miss-islington', 'jerrylikerice1s']
pr_nums = ['28405', '28454', '28455', '28456', '28467', '28468', '28478', '28479', '28615', '28637', '28639', '28645', '28650', '28660', '28666', '28667', '28668', '28927', '28929', '28986', '29004', '29006', '29007', '29095', '29096']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue45229'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-106209
* gh-106229
* gh-106230
* gh-108859
* gh-108860
* gh-108861
* gh-108868
* gh-108869
* gh-108871
* gh-108872
* gh-108873
* gh-108874
* gh-108875
* gh-108876
* gh-108877
* gh-108897
* gh-108898
* gh-108911
* gh-108913
* gh-108914
* gh-108916
* gh-108919
* gh-108920
<!-- /gh-linked-prs -->
| 0e24499129f3917b199a6d46fa33eeedd2c447fc | 08c08d21b03d949452a77d9ed5e3cf48d6b9804d |
python/cpython | python__cpython-121537 | # API function PySignal_SetWakeupFd is not exported and unusable
BPO | [45201](https://bugs.python.org/issue45201)
--- | :---
Nosy | @vstinner
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-09-15.06:03:15.175>
labels = ['expert-C-API', 'type-bug', '3.9']
title = 'API function PySignal_SetWakeupFd is not exported and unusable'
updated_at = <Date 2021-09-29.08:18:20.534>
user = 'https://bugs.python.org/cy'
```
bugs.python.org fields:
```python
activity = <Date 2021-09-29.08:18:20.534>
actor = 'vstinner'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['C API']
creation = <Date 2021-09-15.06:03:15.175>
creator = 'cy'
dependencies = []
files = []
hgrepos = []
issue_num = 45201
keywords = []
message_count = 2.0
messages = ['401810', '402828']
nosy_count = 2.0
nosy_names = ['vstinner', 'cy']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45201'
versions = ['Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-121537
* gh-121582
<!-- /gh-linked-prs -->
| ca0fb3423c13822d909d75eb616ecf1965e619ae | 84a5597b08b7d53aced2fbd0048271ce762807a8 |
python/cpython | python__cpython-109835 | # Address Sanitizer: libasan dead lock in pthread_create() (test_multiprocessing_fork.test_get() hangs)
BPO | [45200](https://bugs.python.org/issue45200)
--- | :---
Nosy | @terryjreedy, @vstinner, @pablogsal
PRs | <li>python/cpython#28344</li><li>python/cpython#28492</li><li>python/cpython#30797</li>
Files | <li>[bisect10](https://bugs.python.org/file50284/bisect10 "Uploaded as text/plain at 2021-09-17.21:01:59 by @vstinner")</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = <Date 2022-01-22.18:17:15.960>
created_at = <Date 2021-09-15.04:17:40.678>
labels = ['tests', 'type-bug', 'library', '3.11']
title = 'Address Sanitizer: libasan dead lock in pthread_create() (test_multiprocessing_fork.test_get() hangs)'
updated_at = <Date 2022-01-22.18:17:15.960>
user = 'https://github.com/terryjreedy'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-22.18:17:15.960>
actor = 'vstinner'
assignee = 'none'
closed = True
closed_date = <Date 2022-01-22.18:17:15.960>
closer = 'vstinner'
components = ['Library (Lib)', 'Tests']
creation = <Date 2021-09-15.04:17:40.678>
creator = 'terry.reedy'
dependencies = []
files = ['50284']
hgrepos = []
issue_num = 45200
keywords = ['patch']
message_count = 15.0
messages = ['401808', '402075', '402085', '402094', '402095', '402097', '402148', '402152', '402155', '402157', '402205', '402223', '402323', '411273', '411274']
nosy_count = 3.0
nosy_names = ['terry.reedy', 'vstinner', 'pablogsal']
pr_nums = ['28344', '28492', '30797']
priority = 'normal'
resolution = 'fixed'
stage = 'resolved'
status = 'closed'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue45200'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-109835
* gh-109855
* gh-109856
<!-- /gh-linked-prs -->
| bc06743533b5fea2d5ecdad6dd3caa372c67439f | 1b8f2366b38c87b0450d9c15bdfdd4c4a2fc3a01 |
python/cpython | python__cpython-91564 | # tarfile missing some members in documentation
BPO | [44996](https://bugs.python.org/issue44996)
--- | :---
Nosy | @nilsnolde
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-08-25.09:55:33.973>
labels = ['3.8', '3.9', '3.10', '3.11', '3.7', 'docs']
title = 'tarfile missing TarInfo.offset_data member in documentation'
updated_at = <Date 2021-08-25.09:55:33.973>
user = 'https://github.com/nilsnolde'
```
bugs.python.org fields:
```python
activity = <Date 2021-08-25.09:55:33.973>
actor = 'nilsnolde'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2021-08-25.09:55:33.973>
creator = 'nilsnolde'
dependencies = []
files = []
hgrepos = []
issue_num = 44996
keywords = []
message_count = 1.0
messages = ['400248']
nosy_count = 2.0
nosy_names = ['docs@python', 'nilsnolde']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue44996'
versions = ['Python 3.6', 'Python 3.7', 'Python 3.8', 'Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-91564
* gh-114006
* gh-114007
* gh-114520
* gh-114714
* gh-114715
<!-- /gh-linked-prs -->
| 3aa4b839e4aa01d4e8bc5c7685fd0eb17c4609b8 | 3c19ee0422e9b9f1582fb74931c174a84583bca0 |
python/cpython | python__cpython-131007 | # datetime's C implementation verifies fromisoformat is ASCII, but the pure python implementation does not
BPO | [44994](https://bugs.python.org/issue44994)
--- | :---
Nosy | @Julian, @pganssle
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-08-24.20:32:18.922>
labels = ['type-bug', '3.8', '3.9', '3.10', '3.11', '3.7', 'library']
title = "datetime's C implementation verifies fromisoformat is ASCII, but the pure python implementation does not"
updated_at = <Date 2021-08-24.20:32:18.922>
user = 'https://github.com/Julian'
```
bugs.python.org fields:
```python
activity = <Date 2021-08-24.20:32:18.922>
actor = 'Julian'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-08-24.20:32:18.922>
creator = 'Julian'
dependencies = []
files = []
hgrepos = []
issue_num = 44994
keywords = []
message_count = 1.0
messages = ['400235']
nosy_count = 2.0
nosy_names = ['Julian', 'p-ganssle']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue44994'
versions = ['Python 3.7', 'Python 3.8', 'Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-131007
<!-- /gh-linked-prs -->
| 4924bcf0e4f46f61ac806a90192393f915d0f8f9 | 92985e321afb35bff514fbeb7e56c9438da26918 |
python/cpython | python__cpython-104611 | # async generator missing unawaited coroutine warning
BPO | [44928](https://bugs.python.org/issue44928)
--- | :---
Nosy | @graingert
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-08-16.21:29:12.364>
labels = ['interpreter-core', '3.8', '3.9', '3.10', '3.11', '3.7']
title = 'async generator missing unawaited coroutine warning'
updated_at = <Date 2021-08-16.21:29:12.364>
user = 'https://github.com/graingert'
```
bugs.python.org fields:
```python
activity = <Date 2021-08-16.21:29:12.364>
actor = 'graingert'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Interpreter Core']
creation = <Date 2021-08-16.21:29:12.364>
creator = 'graingert'
dependencies = []
files = []
hgrepos = []
issue_num = 44928
keywords = []
message_count = 1.0
messages = ['399684']
nosy_count = 1.0
nosy_names = ['graingert']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue44928'
versions = ['Python 3.6', 'Python 3.7', 'Python 3.8', 'Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-104611
<!-- /gh-linked-prs -->
| 7fc542c88dc8a09d71006a6240943407b83229d0 | 46857d0b2a2ac6aeb6dcce2bf2c92ddf4abe7496 |
python/cpython | python__cpython-120650 | # Support UUIDv6, UUIDv7, and UUIDv8 from RFC 9562
BPO | [44920](https://bugs.python.org/issue44920)
--- | :---
Nosy | @serhiy-storchaka, @loganasherjones, @stevesimmons
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-08-15.17:26:05.956>
labels = ['type-feature', 'library', '3.11']
title = 'Support UUIDv6, UUIDv7, and UUIDv8 from the new version of RFC4122'
updated_at = <Date 2021-08-17.00:36:53.563>
user = 'https://github.com/stevesimmons'
```
bugs.python.org fields:
```python
activity = <Date 2021-08-17.00:36:53.563>
actor = 'loganasherjones'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2021-08-15.17:26:05.956>
creator = 'stevesimmons'
dependencies = []
files = []
hgrepos = []
issue_num = 44920
keywords = []
message_count = 2.0
messages = ['399624', '399647']
nosy_count = 3.0
nosy_names = ['serhiy.storchaka', 'loganasherjones', 'stevesimmons']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue44920'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-120650
* gh-120830
* gh-121119
* gh-123224
* gh-126857
* gh-128149
* gh-135684
* gh-135747
* gh-136548
* gh-136576
* gh-137801
<!-- /gh-linked-prs -->
### Related
* https://github.com/python/cpython/issues/120878
* https://discuss.python.org/t/rfc-4122-9562-uuid-version-7-and-8-implementation/56725/3 | 990ad272f66fe6a50087ad044725bb0f9f8e181d | 214562ed4ddc248b007f718ed92ebcc0c3669611 |
python/cpython | python__cpython-102903 | # refleak test failure in test_exceptions
BPO | [44895](https://bugs.python.org/issue44895)
--- | :---
Nosy | @gvanrossum, @vstinner, @cjerdonek, @ambv, @markshannon, @corona10, @pablogsal, @miss-islington, @iritkatriel
PRs | <li>python/cpython#27746</li><li>python/cpython#27753</li><li>python/cpython#27761</li><li>python/cpython#27767</li><li>python/cpython#27778</li><li>python/cpython#28113</li>
Files | <li>[cpython-1628938551.dump.gz](https://bugs.python.org/file50216/cpython-1628938551.dump.gz "Uploaded as application/x-gzip at 2021-08-14.10:59:54 by @corona10")</li><li>[refleak.py](https://bugs.python.org/file50224/refleak.py "Uploaded as text/plain at 2021-08-16.20:13:38 by @iritkatriel")</li><li>[strict_refleak_check.patch](https://bugs.python.org/file50251/strict_refleak_check.patch "Uploaded as text/plain at 2021-09-01.16:43:27 by @vstinner")</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = None
closed_at = None
created_at = <Date 2021-08-12.00:13:38.919>
labels = ['interpreter-core', '3.10', '3.11']
title = 'refleak test failure in test_exceptions'
updated_at = <Date 2021-09-01.16:43:27.187>
user = 'https://github.com/iritkatriel'
```
bugs.python.org fields:
```python
activity = <Date 2021-09-01.16:43:27.187>
actor = 'vstinner'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Interpreter Core']
creation = <Date 2021-08-12.00:13:38.919>
creator = 'iritkatriel'
dependencies = []
files = ['50216', '50224', '50251']
hgrepos = []
issue_num = 44895
keywords = ['patch']
message_count = 71.0
messages = ['399424', '399449', '399450', '399451', '399452', '399453', '399456', '399457', '399459', '399463', '399472', '399485', '399492', '399507', '399510', '399513', '399516', '399517', '399533', '399537', '399539', '399540', '399541', '399542', '399543', '399546', '399554', '399555', '399556', '399557', '399560', '399578', '399588', '399589', '399601', '399636', '399639', '399676', '399681', '399682', '399696', '399697', '399700', '399703', '399739', '399740', '399762', '399764', '399781', '399785', '399786', '399788', '399789', '399792', '399794', '399795', '399796', '399800', '399855', '399856', '399857', '400645', '400741', '400757', '400779', '400794', '400840', '400844', '400848', '400853', '400854']
nosy_count = 9.0
nosy_names = ['gvanrossum', 'vstinner', 'chris.jerdonek', 'lukasz.langa', 'Mark.Shannon', 'corona10', 'pablogsal', 'miss-islington', 'iritkatriel']
pr_nums = ['27746', '27753', '27761', '27767', '27778', '28113']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue44895'
versions = ['Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-102903
<!-- /gh-linked-prs -->
| 5e7c468fc4ceb801c30844b794e04a2ac6a35743 | 8f70b16e3397ad32757ddbabd5180cbef0036a4b |
python/cpython | python__cpython-93927 | # ssl.OP_LEGACY_SERVER_CONNECT missing
BPO | [44888](https://bugs.python.org/issue44888)
--- | :---
Nosy | @tiran, @xtkoba
PRs | <li>python/cpython#27776</li>
<sup>*Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.*</sup>
<details><summary>Show more details</summary><p>
GitHub fields:
```python
assignee = 'https://github.com/tiran'
closed_at = None
created_at = <Date 2021-08-11.11:35:40.075>
labels = ['expert-SSL']
title = 'ssl.OP_LEGACY_SERVER_CONNECT missing'
updated_at = <Date 2021-08-16.03:58:50.811>
user = 'https://github.com/xtkoba'
```
bugs.python.org fields:
```python
activity = <Date 2021-08-16.03:58:50.811>
actor = 'python-dev'
assignee = 'christian.heimes'
closed = False
closed_date = None
closer = None
components = ['SSL']
creation = <Date 2021-08-11.11:35:40.075>
creator = 'xtkoba'
dependencies = []
files = []
hgrepos = []
issue_num = 44888
keywords = ['patch']
message_count = 1.0
messages = ['399386']
nosy_count = 3.0
nosy_names = ['christian.heimes', 'python-dev', 'xtkoba']
pr_nums = ['27776']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue44888'
versions = []
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-93927
* gh-100359
* gh-100360
<!-- /gh-linked-prs -->
| 79ccc03b62d819d83e592c6c8038545d9263a0d4 | 36a0b1d0dddbdf324d98071ea31e7e9151eea6d5 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.