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-98592 | # Tkinter: Don't stringify callback arguments
BPO | [22214](https://bugs.python.org/issue22214)
--- | :---
Nosy | @terryjreedy, @serhiy-storchaka
PRs | <li>python/cpython#16545</li>
Dependencies | <li>bpo-21585: Run Tkinter tests with wantobjects=False</li>
Files | <li>[tkinter_obj_cmd.patch](https://bugs.python.org/file36393/tkinter_obj_cmd.patch "Uploaded as text/plain at 2014-08-17.14:24:07 by @serhiy-storchaka")</li><li>[tkinter_obj_cmd_2.patch](https://bugs.python.org/file36406/tkinter_obj_cmd_2.patch "Uploaded as text/plain at 2014-08-18.14:52:45 by @serhiy-storchaka")</li><li>[tkinter_obj_cmd_3.patch](https://bugs.python.org/file43468/tkinter_obj_cmd_3.patch "Uploaded as text/plain at 2016-06-19.08:56:06 by @serhiy-storchaka")</li><li>[tkinter_obj_cmd_4.patch](https://bugs.python.org/file43476/tkinter_obj_cmd_4.patch "Uploaded as text/plain at 2016-06-19.21:31:23 by @serhiy-storchaka")</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 2014-08-17.14:24:09.210>
labels = ['3.7', '3.8', 'type-feature', 'expert-tkinter', '3.9']
title = "Tkinter: Don't stringify callback arguments"
updated_at = <Date 2019-10-02.17:57:31.798>
user = 'https://github.com/serhiy-storchaka'
```
bugs.python.org fields:
```python
activity = <Date 2019-10-02.17:57:31.798>
actor = 'serhiy.storchaka'
assignee = 'serhiy.storchaka'
closed = False
closed_date = None
closer = None
components = ['Tkinter']
creation = <Date 2014-08-17.14:24:09.210>
creator = 'serhiy.storchaka'
dependencies = ['21585']
files = ['36393', '36406', '43468', '43476']
hgrepos = []
issue_num = 22214
keywords = ['patch']
message_count = 7.0
messages = ['225446', '225480', '225494', '268847', '268868', '268871', '268883']
nosy_count = 3.0
nosy_names = ['terry.reedy', 'gpolo', 'serhiy.storchaka']
pr_nums = ['16545']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue22214'
versions = ['Python 3.7', 'Python 3.8', 'Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-98592
<!-- /gh-linked-prs -->
| e188527c343c74574d481b77c30063db1436e62b | 6b80a5b20f31a067bd1c374295608df5f1210f49 |
python/cpython | python__cpython-99539 | # asyncio: support multiprocessing (support fork)
BPO | [22087](https://bugs.python.org/issue22087)
--- | :---
Nosy | @gvanrossum, @pitrou, @1st1, @thehesiod, @miss-islington
PRs | <li>python/cpython#7208</li><li>python/cpython#7215</li><li>python/cpython#7218</li><li>python/cpython#7226</li><li>python/cpython#7232</li><li>python/cpython#7233</li>
Files | <li>[test_loop.py](https://bugs.python.org/file36117/test_loop.py "Uploaded as text/plain at 2014-07-26.18:01:38 by dan.oreilly"): Test script demonstrating the issue</li><li>[handle_mp_unix.diff](https://bugs.python.org/file36118/handle_mp_unix.diff "Uploaded as text/plain at 2014-07-26.18:20:15 by dan.oreilly"): Patch that makes _UnixDefaultEventLoopPolicy create a new loop object if get_event_loop is called in a forked mp child process</li><li>[handle-mp_unix2.patch](https://bugs.python.org/file36119/handle-mp_unix2.patch "Uploaded as text/plain at 2014-07-26.20:13:57 by dan.oreilly"): Use os.getpid() instead of multiprocessing. Store pid state in Policy instance rather than the Loop instance.</li><li>[handle_mp_unix_with_test.diff](https://bugs.python.org/file36134/handle_mp_unix_with_test.diff "Uploaded as text/plain at 2014-07-27.16:09:52 by dan.oreilly"): Adds a unit test to previous patch</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 2014-07-26.18:01:10.150>
labels = ['type-bug', 'expert-asyncio']
title = 'asyncio: support multiprocessing (support fork)'
updated_at = <Date 2018-05-30.00:56:36.541>
user = 'https://bugs.python.org/danoreilly'
```
bugs.python.org fields:
```python
activity = <Date 2018-05-30.00:56:36.541>
actor = 'yselivanov'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['asyncio']
creation = <Date 2014-07-26.18:01:10.150>
creator = 'dan.oreilly'
dependencies = []
files = ['36117', '36118', '36119', '36134']
hgrepos = []
issue_num = 22087
keywords = ['patch']
message_count = 23.0
messages = ['224082', '224084', '224085', '224097', '224125', '224140', '224143', '224144', '224145', '226698', '235404', '235411', '288327', '297222', '297226', '297227', '297229', '318077', '318092', '318135', '318140', '318143', '318144']
nosy_count = 7.0
nosy_names = ['gvanrossum', 'pitrou', 'zmedico', 'yselivanov', 'thehesiod', 'dan.oreilly', 'miss-islington']
pr_nums = ['7208', '7215', '7218', '7226', '7232', '7233']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue22087'
versions = ['Python 3.4', 'Python 3.5', 'Python 3.6']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-99539
* gh-99745
* gh-99756
* gh-99769
* gh-99963
<!-- /gh-linked-prs -->
| 0c1fbc17b48f56c6070d335ed291a24c91ed190a | 9dc08361bef67a331d1609c8629314c0ca5a79d5 |
python/cpython | python__cpython-124899 | # Argparse exceptions should include which argument has a problem
BPO | [21666](https://bugs.python.org/issue21666)
--- | :---
<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 2014-06-05.04:25:08.064>
labels = ['type-feature']
title = 'Argparse exceptions should include which argument has a problem'
updated_at = <Date 2014-06-08.06:03:05.054>
user = 'https://bugs.python.org/vpython'
```
bugs.python.org fields:
```python
activity = <Date 2014-06-08.06:03:05.054>
actor = 'paul.j3'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2014-06-05.04:25:08.064>
creator = 'v+python'
dependencies = []
files = []
hgrepos = []
issue_num = 21666
keywords = []
message_count = 5.0
messages = ['219778', '219949', '219969', '220011', '220016']
nosy_count = 2.0
nosy_names = ['v+python', 'paul.j3']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue21666'
versions = []
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124899
<!-- /gh-linked-prs -->
| eb2d268ac7480b5e2b4ffb9a644cad7ac75ae954 | 4a943c3251d1b3fdf50cfb9264ae74e5bc845c3c |
python/cpython | python__cpython-116050 | # Make help() beginner helpful when no PAGER or LESS variable
BPO | [21625](https://bugs.python.org/issue21625)
--- | :---
Nosy | @terryjreedy, @jcea, @nedbat, @stevendaprano, @bitdancer, @serhiy-storchaka, @eryksun, @ZackerySpytz, @nagarajan
PRs | <li>python/cpython#21520</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 2014-06-01.12:04:38.377>
labels = ['type-feature', '3.8']
title = 'Make help() beginner helpful when no PAGER or LESS variable'
updated_at = <Date 2020-07-18.16:49:12.756>
user = 'https://github.com/nedbat'
```
bugs.python.org fields:
```python
activity = <Date 2020-07-18.16:49:12.756>
actor = 'nagarajan'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2014-06-01.12:04:38.377>
creator = 'nedbat'
dependencies = []
files = []
hgrepos = []
issue_num = 21625
keywords = ['patch']
message_count = 9.0
messages = ['219497', '219516', '219520', '219547', '219566', '219595', '219596', '338493', '373909']
nosy_count = 9.0
nosy_names = ['terry.reedy', 'jcea', 'nedbat', 'steven.daprano', 'r.david.murray', 'serhiy.storchaka', 'eryksun', 'ZackerySpytz', 'nagarajan']
pr_nums = ['21520']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue21625'
versions = ['Python 3.8']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-116050
* gh-116183
<!-- /gh-linked-prs -->
| 0704166f9a9c6028314d50b493670e7862c968b3 | 7895a61168aad4565a1d953104c9ec620e7c588f |
python/cpython | python__cpython-104218 | # Clean up turtle.py code formatting
BPO | [21573](https://bugs.python.org/issue21573)
--- | :---
Nosy | @rhettinger, @terryjreedy, @ezio-melotti, @bitdancer, @AnishShah
<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 2014-05-25.01:48:23.909>
labels = ['type-feature']
title = 'Clean up turtle.py code formatting'
updated_at = <Date 2016-02-06.09:04:38.015>
user = 'https://bugs.python.org/jesstess'
```
bugs.python.org fields:
```python
activity = <Date 2016-02-06.09:04:38.015>
actor = 'anish.shah'
assignee = 'jesstess'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2014-05-25.01:48:23.909>
creator = 'jesstess'
dependencies = []
files = []
hgrepos = []
issue_num = 21573
keywords = ['gsoc']
message_count = 12.0
messages = ['219068', '219072', '219410', '219427', '219438', '219462', '219476', '219524', '219536', '219537', '219610', '223765']
nosy_count = 9.0
nosy_names = ['rhettinger', 'terry.reedy', 'gregorlingl', 'ezio.melotti', 'r.david.murray', 'jesstess', 'ingrid', 'Lita.Cho', 'anish.shah']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue21573'
versions = ['Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-104218
<!-- /gh-linked-prs -->
| e407661e7a70ad49a69df3058634bc4fccebbcd6 | 6616710731b9ad1a4e6b73696e8bd5c40cf8762d |
python/cpython | python__cpython-113352 | # freeze.py not working properly with OS X framework builds
BPO | [21502](https://bugs.python.org/issue21502)
--- | :---
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 2014-05-14.00:11:32.240>
labels = ['OS-mac', 'type-feature']
title = 'freeze.py not working properly with OS X framework builds'
updated_at = <Date 2015-02-07.15:33:25.994>
user = 'https://bugs.python.org/yjiangnan'
```
bugs.python.org fields:
```python
activity = <Date 2015-02-07.15:33:25.994>
actor = 'ned.deily'
assignee = 'ned.deily'
closed = False
closed_date = None
closer = None
components = ['macOS']
creation = <Date 2014-05-14.00:11:32.240>
creator = 'yjiangnan'
dependencies = []
files = []
hgrepos = []
issue_num = 21502
keywords = []
message_count = 2.0
messages = ['218493', '235528']
nosy_count = 2.0
nosy_names = ['ronaldoussoren', 'ned.deily']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue21502'
versions = ['Python 3.4', 'Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-113352
* gh-113361
* gh-113362
<!-- /gh-linked-prs -->
| df1eec3dae3b1eddff819fd70f58b03b3fbd0eda | 526d0a9b6eafb95c425838715a4961d97dc600da |
python/cpython | python__cpython-107019 | # smtplib Sends Commands in Lower-Case
BPO | [21296](https://bugs.python.org/issue21296)
--- | :---
Nosy | @warsaw, @bitdancer
<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 2014-04-18.11:03:16.179>
labels = ['type-feature', 'expert-email']
title = 'smtplib Sends Commands in Lower-Case'
updated_at = <Date 2014-04-20.15:15:28.153>
user = 'https://bugs.python.org/luiji'
```
bugs.python.org fields:
```python
activity = <Date 2014-04-20.15:15:28.153>
actor = 'pitrou'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['email']
creation = <Date 2014-04-18.11:03:16.179>
creator = 'luiji'
dependencies = []
files = []
hgrepos = []
issue_num = 21296
keywords = []
message_count = 2.0
messages = ['216779', '216895']
nosy_count = 3.0
nosy_names = ['barry', 'r.david.murray', 'luiji']
pr_nums = []
priority = 'low'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue21296'
versions = ['Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-107019
<!-- /gh-linked-prs -->
| 3782def5a2b4d24ab5d356f89da181e99a9a59b2 | d228825e08883fc13f35eb91435f95d32524931c |
python/cpython | python__cpython-120019 | # Attaching a PropertyMock records calls
BPO | [21255](https://bugs.python.org/issue21255)
--- | :---
Nosy | @merwok, @voidspace, @kushaldas, @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 = 'https://github.com/voidspace'
closed_at = None
created_at = <Date 2014-04-16.16:19:15.626>
labels = ['type-bug', 'library']
title = 'Attaching a PropertyMock records calls'
updated_at = <Date 2020-02-18.09:21:36.362>
user = 'https://github.com/voidspace'
```
bugs.python.org fields:
```python
activity = <Date 2020-02-18.09:21:36.362>
actor = 'xtreak'
assignee = 'michael.foord'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2014-04-16.16:19:15.626>
creator = 'michael.foord'
dependencies = []
files = []
hgrepos = []
issue_num = 21255
keywords = []
message_count = 3.0
messages = ['216488', '216603', '217006']
nosy_count = 4.0
nosy_names = ['eric.araujo', 'michael.foord', 'kushal.das', 'xtreak']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue21255'
versions = ['Python 3.4', 'Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-120019
* gh-120336
* gh-120337
<!-- /gh-linked-prs -->
| 9e9ee50421c857b443e2060274f17fb884d54473 | 422c4fc855afd18bcc6415902ea1d85a50cb7ce1 |
python/cpython | python__cpython-121666 | # doc: PropertyMock refuses to raise AttributeErrror as a side effect
BPO | [21254](https://bugs.python.org/issue21254)
--- | :---
Nosy | @rbtcollins, @voidspace, @ericsnowcurrently, @kushaldas, @s-t-e-v-e-n-k
<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/voidspace'
closed_at = None
created_at = <Date 2014-04-16.16:15:17.468>
labels = ['easy', 'type-bug', '3.8', '3.9', '3.10', 'library', 'docs']
title = 'doc: PropertyMock refuses to raise AttributeErrror as a side effect'
updated_at = <Date 2021-03-28.22:54:36.893>
user = 'https://github.com/voidspace'
```
bugs.python.org fields:
```python
activity = <Date 2021-03-28.22:54:36.893>
actor = 'iritkatriel'
assignee = 'michael.foord'
closed = False
closed_date = None
closer = None
components = ['Documentation', 'Library (Lib)']
creation = <Date 2014-04-16.16:15:17.468>
creator = 'michael.foord'
dependencies = []
files = []
hgrepos = []
issue_num = 21254
keywords = ['easy']
message_count = 5.0
messages = ['216487', '216503', '275934', '275937', '275938']
nosy_count = 5.0
nosy_names = ['rbcollins', 'michael.foord', 'eric.snow', 'kushal.das', 'stevenk']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue21254'
versions = ['Python 3.8', 'Python 3.9', 'Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-121666
* gh-121968
* gh-121969
<!-- /gh-linked-prs -->
| 94e6644584d9cb08a4edcd1027e288386184816b | cecaceea31f32f01b5617989e3dc8b2077f53f89 |
python/cpython | python__cpython-105958 | # PyArg_ParseTupleAndKeywords doesn't take const char *keywords[]
BPO | [21011](https://bugs.python.org/issue21011)
--- | :---
Nosy | @methane, @serhiy-storchaka, @MojoVampire, @hvenev
<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 2014-03-21.16:45:16.140>
labels = ['extension-modules', 'type-feature', '3.8']
title = "PyArg_ParseTupleAndKeywords doesn't take const char *keywords[]"
updated_at = <Date 2018-07-03.09:45:24.075>
user = 'https://github.com/hvenev'
```
bugs.python.org fields:
```python
activity = <Date 2018-07-03.09:45:24.075>
actor = 'serhiy.storchaka'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Extension Modules']
creation = <Date 2014-03-21.16:45:16.140>
creator = 'h.venev'
dependencies = []
files = []
hgrepos = []
issue_num = 21011
keywords = []
message_count = 4.0
messages = ['214388', '214857', '320945', '320952']
nosy_count = 4.0
nosy_names = ['methane', 'serhiy.storchaka', 'josh.r', 'h.venev']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue21011'
versions = ['Python 3.8']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-105958
<!-- /gh-linked-prs -->
| da6760bdf5ed8ede203618d5118f4ceb2cb1652d | cda737924fd616c4e08027888258f97e81f34447 |
python/cpython | python__cpython-113186 | # ipaddress "is_private" and "is_global" are insufficiently documented and is_global probably has a bug
BPO | [20857](https://bugs.python.org/issue20857)
--- | :---
Nosy | @loewis, @ncoghlan, @bitdancer
<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 2014-03-06.16:20:35.832>
labels = ['type-bug']
title = 'ipaddress "is_private" and "is_global" are insufficiently documented and is_global probably has a bug'
updated_at = <Date 2014-03-06.21:50:40.486>
user = 'https://github.com/bitdancer'
```
bugs.python.org fields:
```python
activity = <Date 2014-03-06.21:50:40.486>
actor = 'loewis'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2014-03-06.16:20:35.832>
creator = 'r.david.murray'
dependencies = []
files = []
hgrepos = []
issue_num = 20857
keywords = []
message_count = 3.0
messages = ['212812', '212813', '212843']
nosy_count = 4.0
nosy_names = ['loewis', 'ncoghlan', 'pmoody', 'r.david.murray']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue20857'
versions = ['Python 3.4', 'Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-113186
<!-- /gh-linked-prs -->
| 2a4cbf17af19a01d942f9579342f77c39fbd23c4 | e2fcaf19d302b05d3466807bad0a61f39db2a51b |
python/cpython | python__cpython-110578 | # pdb "args" crashes when an arg is not printable
BPO | [20853](https://bugs.python.org/issue20853)
--- | :---
Nosy | @jneb, @bitdancer, @xdegaye, @akulakov
PRs | <li>python/cpython#28400</li>
Files | <li>[pdb.patch](https://bugs.python.org/file34369/pdb.patch "Uploaded as text/plain at 2014-03-12.07:58:48 by @jneb"): attempt to patch pdb.py</li><li>[pdb.patch](https://bugs.python.org/file34370/pdb.patch "Uploaded as text/plain at 2014-03-12.08:22:56 by @jneb"): Simple patch to pdb to allow objects with bad __repr__</li><li>[safe_repr.py](https://bugs.python.org/file35326/safe_repr.py "Uploaded as text/plain at 2014-05-23.15:08:09 by @xdegaye")</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 2014-03-05.10:45:57.026>
labels = ['type-feature', 'library']
title = 'pdb "args" crashes when an arg is not printable'
updated_at = <Date 2021-09-17.02:50:21.987>
user = 'https://github.com/jneb'
```
bugs.python.org fields:
```python
activity = <Date 2021-09-17.02:50:21.987>
actor = 'andrei.avk'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2014-03-05.10:45:57.026>
creator = 'jneb'
dependencies = []
files = ['34369', '34370', '35326']
hgrepos = []
issue_num = 20853
keywords = ['patch']
message_count = 11.0
messages = ['212759', '212760', '213212', '213214', '213217', '213273', '213593', '213841', '213987', '218975', '401999']
nosy_count = 4.0
nosy_names = ['jneb', 'r.david.murray', 'xdegaye', 'andrei.avk']
pr_nums = ['28400']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue20853'
versions = ['Python 2.7', 'Python 3.3']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-110578
* gh-110734
* gh-111002
<!-- /gh-linked-prs -->
| c523ce0f434582580a3721e15cb7dd6b56ad0236 | de956b263b98bb9928ce4377c42ca8271c4f2682 |
python/cpython | python__cpython-102656 | # [doc] Clarify copyreg.pickle() documentation
BPO | [20823](https://bugs.python.org/issue20823)
--- | :---
Nosy | @serhiy-storchaka, @miss-islington, @kumaraditya303
PRs | <li>python/cpython#30230</li><li>python/cpython#30669</li><li>python/cpython#30670</li>
Files | <li>[copyreg.patch](https://bugs.python.org/file34263/copyreg.patch "Uploaded as text/plain at 2014-03-02.08:53:01 by peter.otten")</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 2014-03-02.08:46:06.048>
labels = ['easy', 'type-bug', '3.9', '3.10', '3.11', 'docs']
title = '[doc] Clarify copyreg.pickle() documentation'
updated_at = <Date 2022-01-18.20:17:10.000>
user = 'https://bugs.python.org/peterotten'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-18.20:17:10.000>
actor = 'miss-islington'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2014-03-02.08:46:06.048>
creator = 'peter.otten'
dependencies = []
files = ['34263']
hgrepos = []
issue_num = 20823
keywords = ['patch', 'easy']
message_count = 6.0
messages = ['212541', '288092', '296271', '410883', '410884', '410885']
nosy_count = 5.0
nosy_names = ['peter.otten', 'docs@python', 'serhiy.storchaka', 'miss-islington', 'kumaraditya']
pr_nums = ['30230', '30669', '30670']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue20823'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-102656
* gh-103892
* gh-104098
<!-- /gh-linked-prs -->
| 0421ed44a9f9405269a8ceb9103451a04d8b90bb | f8abfa331421e2c28388c5162f37820495e3c2ee |
python/cpython | python__cpython-108340 | # sqlite dumpiter dumps invalid script when virtual tables are used
BPO | [20463](https://bugs.python.org/issue20463)
--- | :---
Nosy | @bitdancer, @RonnyPfannschmidt, @palaviv, @tirkarthi
Files | <li>[20463.patch](https://bugs.python.org/file45049/20463.patch "Uploaded as text/plain at 2016-10-10.18:04:18 by @palaviv")</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 2014-01-31.19:57:36.445>
labels = ['extension-modules', 'type-bug']
title = 'sqlite dumpiter dumps invalid script when virtual tables are used'
updated_at = <Date 2018-09-23.16:16:06.541>
user = 'https://github.com/RonnyPfannschmidt'
```
bugs.python.org fields:
```python
activity = <Date 2018-09-23.16:16:06.541>
actor = 'xtreak'
assignee = 'ghaering'
closed = False
closed_date = None
closer = None
components = ['Extension Modules']
creation = <Date 2014-01-31.19:57:36.445>
creator = 'Ronny.Pfannschmidt'
dependencies = []
files = ['45049']
hgrepos = []
issue_num = 20463
keywords = ['patch']
message_count = 3.0
messages = ['209825', '248823', '278437']
nosy_count = 5.0
nosy_names = ['ghaering', 'r.david.murray', 'Ronny.Pfannschmidt', 'palaviv', 'xtreak']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue20463'
versions = ['Python 2.7']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-108340
* gh-108563
* gh-108564
* gh-108565
<!-- /gh-linked-prs -->
| d0160c7c22c8dff0a61c49b5304244df6e36465e | fecb9faf0b2df6a219696502a34b918c5d2bfe9d |
python/cpython | python__cpython-104175 | # [doc] No Argument Clinic documentation on how to specify a return converter
BPO | [20459](https://bugs.python.org/issue20459)
--- | :---
Nosy | @larryhastings, @furkanonder
<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/larryhastings'
closed_at = None
created_at = <Date 2014-01-31.16:21:42.779>
labels = ['easy', '3.9', '3.10', '3.11', 'expert-argument-clinic', 'docs']
title = '[doc] No Argument Clinic documentation on how to specify a return converter'
updated_at = <Date 2021-12-06.23:40:05.988>
user = 'https://github.com/brettcannon'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-06.23:40:05.988>
actor = 'iritkatriel'
assignee = 'larry'
closed = False
closed_date = None
closer = None
components = ['Documentation', 'Argument Clinic']
creation = <Date 2014-01-31.16:21:42.779>
creator = 'brett.cannon'
dependencies = []
files = []
hgrepos = []
issue_num = 20459
keywords = ['easy']
message_count = 2.0
messages = ['209803', '364723']
nosy_count = 2.0
nosy_names = ['larry', 'furkanonder']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue20459'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-104175
* gh-104198
<!-- /gh-linked-prs -->
| 721a78395d07c68351625aedb827a47dd4f48525 | 2318bedb3645d2dfb56944553f01d6c434904c4b |
python/cpython | python__cpython-104167 | # Argument Clinic: when cloning functions with path_t, path_t retains the old name
BPO | [20432](https://bugs.python.org/issue20432)
--- | :---
Nosy | @larryhastings
<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/larryhastings'
closed_at = None
created_at = <Date 2014-01-29.05:26:03.504>
labels = ['type-bug', 'expert-argument-clinic']
title = 'Argument Clinic: when cloning functions with path_t, path_t retains the old name'
updated_at = <Date 2015-02-25.15:25:49.080>
user = 'https://github.com/larryhastings'
```
bugs.python.org fields:
```python
activity = <Date 2015-02-25.15:25:49.080>
actor = 'serhiy.storchaka'
assignee = 'larry'
closed = False
closed_date = None
closer = None
components = ['Argument Clinic']
creation = <Date 2014-01-29.05:26:03.504>
creator = 'larry'
dependencies = []
files = []
hgrepos = []
issue_num = 20432
keywords = []
message_count = 1.0
messages = ['209615']
nosy_count = 1.0
nosy_names = ['larry']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue20432'
versions = ['Python 3.4']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-104167
<!-- /gh-linked-prs -->
| d0b4abedfb8b0322df835065f85551d097cfecb8 | 5245cb64d9a898804edf683427ef4d4fd20ccaec |
python/cpython | python__cpython-137304 | # Errors in documentation of standard codec error handlers
BPO | [20413](https://bugs.python.org/issue20413)
--- | :---
Nosy | @ncoghlan, @ezio-melotti, @vadmium
<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 2014-01-27.20:41:06.038>
labels = ['type-feature', 'docs']
title = 'Errors in documentation of standard codec error handlers'
updated_at = <Date 2015-02-07.00:01:07.843>
user = 'https://bugs.python.org/RalfM'
```
bugs.python.org fields:
```python
activity = <Date 2015-02-07.00:01:07.843>
actor = 'ncoghlan'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2014-01-27.20:41:06.038>
creator = 'RalfM'
dependencies = []
files = []
hgrepos = []
issue_num = 20413
keywords = []
message_count = 5.0
messages = ['209477', '209502', '235496', '235500', '235506']
nosy_count = 6.0
nosy_names = ['ncoghlan', 'ezio.melotti', 'mrabarnett', 'docs@python', 'martin.panter', 'RalfM']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue20413'
versions = ['Python 3.3', 'Python 3.4', 'Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-137304
<!-- /gh-linked-prs -->
| 9e512ae01081c5eedf6ca1b35fb69d9e54f6f91a | 35759fe2faf1443455dfcb15ef7c435e34b492c7 |
python/cpython | python__cpython-117333 | # clarify meaning of xbar and mu in pvariance/variance of statistics module
BPO | [20389](https://bugs.python.org/issue20389)
--- | :---
Nosy | @ncoghlan, @stevendaprano, @iritkatriel
Files | <li>[issue20389_statistics_docs.diff](https://bugs.python.org/file33990/issue20389_statistics_docs.diff "Uploaded as text/plain at 2014-02-08.10:03:29 by @ncoghlan"): Module docs patch</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/stevendaprano'
closed_at = None
created_at = <Date 2014-01-25.12:37:20.207>
labels = ['easy', 'library', '3.9', '3.10', '3.11']
title = 'clarify meaning of xbar and mu in pvariance/variance of statistics module'
updated_at = <Date 2021-08-20.10:12:17.443>
user = 'https://bugs.python.org/jtaylor'
```
bugs.python.org fields:
```python
activity = <Date 2021-08-20.10:12:17.443>
actor = 'iritkatriel'
assignee = 'steven.daprano'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2014-01-25.12:37:20.207>
creator = 'jtaylor'
dependencies = []
files = ['33990']
hgrepos = []
issue_num = 20389
keywords = ['patch', 'easy']
message_count = 5.0
messages = ['209192', '209193', '210119', '210605', '399953']
nosy_count = 5.0
nosy_names = ['ncoghlan', 'steven.daprano', 'jtaylor', 'oscarbenjamin', 'iritkatriel']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue20389'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-117333
* gh-118080
<!-- /gh-linked-prs -->
| fefd5d97111364afa027ae580c3244f427dda59d | 6099fdf733c2d67c05f0f64c9980fb621741baed |
python/cpython | python__cpython-129866 | # socketserver.TCPServer can not listen IPv6 address
BPO | [20215](https://bugs.python.org/issue20215)
--- | :---
Nosy | @gpshead, @jaraco, @nirs, @giampaolo, @bitdancer, @berkerpeksag, @vadmium, @jleedev
PRs | <li>python/cpython#17851</li>
Files | <li>[issue20215_socketserver.patch](https://bugs.python.org/file35147/issue20215_socketserver.patch "Uploaded as text/plain at 2014-05-03.22:02:08 by andreasr"): Patch against latest Python 3.5 mercurial branch</li><li>[issue20215-gps01.diff](https://bugs.python.org/file43983/issue20215-gps01.diff "Uploaded as text/plain at 2016-08-02.23:23:56 by @gpshead")</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 2014-01-10.02:03:02.342>
labels = ['type-feature', 'library']
title = 'socketserver.TCPServer can not listen IPv6 address'
updated_at = <Date 2020-01-06.02:11:41.352>
user = 'https://bugs.python.org/dazhaoyu'
```
bugs.python.org fields:
```python
activity = <Date 2020-01-06.02:11:41.352>
actor = 'jaraco'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2014-01-10.02:03:02.342>
creator = 'dazhaoyu'
dependencies = []
files = ['35147', '43983']
hgrepos = []
issue_num = 20215
keywords = ['patch']
message_count = 14.0
messages = ['207818', '207824', '217833', '226219', '231363', '231377', '231379', '243884', '271865', '271869', '271871', '271872', '271873', '325416']
nosy_count = 14.0
nosy_names = ['gregory.p.smith', 'jaraco', 'nirs', 'giampaolo.rodola', 'r.david.murray', 'neologix', 'berker.peksag', 'martin.panter', 'jpokorny', 'jleedev', 'dazhaoyu', 'andreasr', 'Carlos.Ralli', 'Paul Marks']
pr_nums = ['17851']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue20215'
versions = ['Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-129866
* gh-129868
* gh-129869
<!-- /gh-linked-prs -->
| 5ce70ad129d2e34a09f8ae6ee0542f4f996fb8ec | f2ae79d29e5e0bd24ad1300cb44e3a99104755c7 |
python/cpython | python__cpython-121675 | # TestProgram is mentioned in the unittest docs but is not documented
BPO | [20109](https://bugs.python.org/issue20109)
--- | :---
Nosy | @brettcannon, @ezio-melotti, @bitdancer, @voidspace
<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 2014-01-02.18:01:47.665>
labels = ['easy', '3.9', '3.10', '3.11', 'type-feature', 'docs']
title = 'TestProgram is mentioned in the unittest docs but is not documented'
updated_at = <Date 2021-06-22.22:48:08.205>
user = 'https://github.com/bitdancer'
```
bugs.python.org fields:
```python
activity = <Date 2021-06-22.22:48:08.205>
actor = 'brett.cannon'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2014-01-02.18:01:47.665>
creator = 'r.david.murray'
dependencies = []
files = []
hgrepos = []
issue_num = 20109
keywords = ['easy']
message_count = 3.0
messages = ['207178', '259728', '259831']
nosy_count = 6.0
nosy_names = ['brett.cannon', 'ezio.melotti', 'r.david.murray', 'michael.foord', 'docs@python', 'beng94']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue20109'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-121675
* gh-121742
* gh-121743
<!-- /gh-linked-prs -->
| f6f4022a357f70f1c40945403065e81b6c2e4854 | 901ea411bf51f59f2a4b0b4fec6f60d29c76ca05 |
python/cpython | python__cpython-99782 | # docs are missing info about module attributes
BPO | [19820](https://bugs.python.org/issue19820)
--- | :---
Nosy | @ericsnowcurrently, @eamanu, @MichaelAnckaert, @anilbey
PRs | <li>python/cpython#15359</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 2013-11-28.06:42:20.974>
labels = ['easy', '3.7', '3.8', '3.9', 'type-feature', 'docs']
title = 'docs are missing info about module attributes'
updated_at = <Date 2019-08-21.12:23:23.366>
user = 'https://github.com/ericsnowcurrently'
```
bugs.python.org fields:
```python
activity = <Date 2019-08-21.12:23:23.366>
actor = 'michaelanckaert'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2013-11-28.06:42:20.974>
creator = 'eric.snow'
dependencies = []
files = []
hgrepos = []
issue_num = 19820
keywords = ['patch', 'easy']
message_count = 6.0
messages = ['204642', '347930', '349712', '349718', '349727', '349735']
nosy_count = 6.0
nosy_names = ['Arfrever', 'docs@python', 'eric.snow', 'eamanu', 'michaelanckaert', 'anilbey']
pr_nums = ['15359']
priority = 'low'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue19820'
versions = ['Python 3.7', 'Python 3.8', 'Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-99782
* gh-99783
* gh-98116
<!-- /gh-linked-prs -->
| 89f507fe8c497b3f70fdcecce8bc240f9af2bbe2 | 16f3e03283cdbea6101d21960743d3901ddf8d57 |
python/cpython | python__cpython-108817 | # request to reopen Issue837046 - pyport.h redeclares gethostname() if SOLARIS is defined
BPO | [19561](https://bugs.python.org/issue19561)
--- | :---
Nosy | @jcea, @bitdancer, @0-wiz-0, @kulikjak
PRs | <li>python/cpython#23208</li>
Files | <li>[Python26-10-gethostname.patch](https://bugs.python.org/file32584/Python26-10-gethostname.patch "Uploaded as text/plain at 2013-11-12.14:39:40 by risto3")</li><li>[tp.cpp](https://bugs.python.org/file32592/tp.cpp "Uploaded as text/plain at 2013-11-13.04:36:21 by risto3"): test program</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 2013-11-12.14:39:41.350>
labels = ['build', '3.8', '3.9', '3.10']
title = 'request to reopen Issue837046 - pyport.h redeclares gethostname() if SOLARIS is defined'
updated_at = <Date 2020-12-22.16:36:14.544>
user = 'https://bugs.python.org/risto3'
```
bugs.python.org fields:
```python
activity = <Date 2020-12-22.16:36:14.544>
actor = 'kulikjak'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Build']
creation = <Date 2013-11-12.14:39:41.350>
creator = 'risto3'
dependencies = []
files = ['32584', '32592']
hgrepos = []
issue_num = 19561
keywords = ['patch']
message_count = 8.0
messages = ['202690', '202715', '202718', '202723', '202730', '240296', '380584', '380585']
nosy_count = 7.0
nosy_names = ['jcea', 'r.david.murray', 'wiz', 'python-dev', 'risto3', 'jbeck', 'kulikjak']
pr_nums = ['23208']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'compile error'
url = 'https://bugs.python.org/issue19561'
versions = ['Python 3.8', 'Python 3.9', 'Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-108817
* gh-108824
* gh-108832
<!-- /gh-linked-prs -->
| 0e6d582b3b73a88e71cae04327b31a1ee203722c | bac1e6d695a11cff270e663197f3cecd001fa556 |
python/cpython | python__cpython-103181 | # No way to use TLS-PSK from python ssl
BPO | [19084](https://bugs.python.org/issue19084)
--- | :---
Nosy | @warsaw, @jcea, @pitrou, @giampaolo, @tiran, @chrysn
Files | <li>[5bcfpEKD.txt](https://bugs.python.org/file31859/5bcfpEKD.txt "Uploaded as text/plain at 2013-09-24.15:32:28 by karlp"): implementation of TLS-PSK from Mosquitto</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 = <Date 2017-09-06.14:53:17.746>
created_at = <Date 2013-09-24.15:32:28.932>
labels = ['3.7', 'expert-SSL', 'type-feature', 'library']
title = 'No way to use TLS-PSK from python ssl'
updated_at = <Date 2017-09-06.14:53:17.746>
user = 'https://bugs.python.org/karlp'
```
bugs.python.org fields:
```python
activity = <Date 2017-09-06.14:53:17.746>
actor = 'christian.heimes'
assignee = 'christian.heimes'
closed = True
closed_date = <Date 2017-09-06.14:53:17.746>
closer = 'christian.heimes'
components = ['Library (Lib)', 'SSL']
creation = <Date 2013-09-24.15:32:28.932>
creator = 'karlp'
dependencies = []
files = ['31859']
hgrepos = []
issue_num = 19084
keywords = []
message_count = 5.0
messages = ['198362', '198364', '198365', '198378', '301475']
nosy_count = 11.0
nosy_names = ['barry', 'jcea', 'janssen', 'pitrou', 'giampaolo.rodola', 'christian.heimes', 'chrysn', 'karlp', 'ralight', 'njouanin', 'luizdepra']
pr_nums = []
priority = 'normal'
resolution = 'out of date'
stage = 'resolved'
status = 'closed'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue19084'
versions = ['Python 3.7']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-103181
<!-- /gh-linked-prs -->
| e954ac7205d7a6e356c1736eb372d2b50dbd9f69 | fb202af4470d6051a69bb9d2f44d7e8a1c99eb4f |
python/cpython | python__cpython-116822 | # precise time.time() under Windows 8: use GetSystemTimePreciseAsFileTime
BPO | [19007](https://bugs.python.org/issue19007)
--- | :---
Nosy | @malemburg, @tim-one, @abalkin, @pitrou, @vstinner, @tjguk, @4kir4, @zware, @eryksun, @zooba
Files | <li>[time_precise.patch](https://bugs.python.org/file40088/time_precise.patch "Uploaded as text/plain at 2015-07-31.22:01:32 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 2013-09-12.19:44:34.318>
labels = ['type-feature', 'library', 'OS-windows', '3.11']
title = 'precise time.time() under Windows 8: use GetSystemTimePreciseAsFileTime'
updated_at = <Date 2021-06-13.22:48:09.141>
user = 'https://github.com/pitrou'
```
bugs.python.org fields:
```python
activity = <Date 2021-06-13.22:48:09.141>
actor = 'eryksun'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)', 'Windows']
creation = <Date 2013-09-12.19:44:34.318>
creator = 'pitrou'
dependencies = []
files = ['40088']
hgrepos = []
issue_num = 19007
keywords = ['patch']
message_count = 9.0
messages = ['197538', '197539', '197541', '224358', '247024', '247778', '247779', '247808', '395767']
nosy_count = 10.0
nosy_names = ['lemburg', 'tim.peters', 'belopolsky', 'pitrou', 'vstinner', 'tim.golden', 'akira', 'zach.ware', 'eryksun', 'steve.dower']
pr_nums = []
priority = 'low'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue19007'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-116822
* gh-136068
* gh-136138
* gh-136139
<!-- /gh-linked-prs -->
| 486587da42dc2beda1e7807c35678f181b57a60f | a87f3e02828cb4404053384dba18924dcace6596 |
python/cpython | python__cpython-124307 | # argparse: default args in mutually exclusive groups
BPO | [18943](https://bugs.python.org/issue18943)
--- | :---
Nosy | @rhettinger, @pitrou, @wm75, @mlouielu
Files | <li>[test_argparse.diff](https://bugs.python.org/file31626/test_argparse.diff "Uploaded as text/plain at 2013-09-06.09:00:01 by @arigo"): Patch for test_argparse.py (for trunk, but also applies on 2.7 head)</li><li>[patch_1.diff](https://bugs.python.org/file31704/patch_1.diff "Uploaded as text/plain at 2013-09-09.22:38:22 by paul.j3")</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 2013-09-06.09:00:02.098>
labels = ['3.7', 'type-bug', 'library']
title = 'argparse: default args in mutually exclusive groups'
updated_at = <Date 2020-12-05.07:19:06.915>
user = 'https://github.com/arigo'
```
bugs.python.org fields:
```python
activity = <Date 2020-12-05.07:19:06.915>
actor = 'rhettinger'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2013-09-06.09:00:02.098>
creator = 'arigo'
dependencies = []
files = ['31626', '31704']
hgrepos = []
issue_num = 18943
keywords = ['patch']
message_count = 24.0
messages = ['197058', '197121', '197128', '197141', '197161', '197225', '197275', '197290', '197295', '197336', '197350', '197414', '197427', '211229', '212693', '292305', '292313', '293931', '299355', '307710', '307758', '307760', '307762', '307852']
nosy_count = 7.0
nosy_names = ['rhettinger', 'pitrou', 'bethard', 'paul.j3', 'wolma', 'louielu', 'talkless']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue18943'
versions = ['Python 2.7', 'Python 3.5', 'Python 3.7']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124307
* gh-124418
* gh-124419
<!-- /gh-linked-prs -->
| 3094cd17b0e5ba69309c54964744c797a70aa11b | faef3fa653f2901cc905f98eae0ddcd8dc334d33 |
python/cpython | python__cpython-105104 | # io.IOBase destructor silence I/O error on close() by default
BPO | [18748](https://bugs.python.org/issue18748)
--- | :---
Nosy | @pitrou, @vstinner, @tirkarthi
PRs | <li>python/cpython#12786</li><li>python/cpython#12805</li><li>python/cpython#13512</li><li>python/cpython#13952</li>
Files | <li>[bug.py](https://bugs.python.org/file31301/bug.py "Uploaded as text/plain at 2013-08-15.13:10:41 by ionelmc")</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 2019-06-12.23:14:43.171>
created_at = <Date 2013-08-15.13:10:42.326>
labels = ['extension-modules', 'build', '3.8', '3.9', 'type-crash']
title = 'io.IOBase destructor silence I/O error on close() by default'
updated_at = <Date 2021-06-28.23:33:12.533>
user = 'https://bugs.python.org/ionelmc'
```
bugs.python.org fields:
```python
activity = <Date 2021-06-28.23:33:12.533>
actor = 'vstinner'
assignee = 'none'
closed = True
closed_date = <Date 2019-06-12.23:14:43.171>
closer = 'vstinner'
components = ['Build', 'Extension Modules']
creation = <Date 2013-08-15.13:10:42.326>
creator = 'ionelmc'
dependencies = []
files = ['31301']
hgrepos = []
issue_num = 18748
keywords = ['patch']
message_count = 39.0
messages = ['195253', '195319', '195321', '195324', '195325', '195342', '195505', '195507', '195523', '195525', '195527', '195528', '195565', '294551', '294873', '294874', '339502', '339979', '340055', '340056', '340058', '340059', '340062', '340104', '341106', '342483', '342484', '342493', '343270', '343699', '345157', '345160', '345422', '345428', '347240', '347268', '347284', '348515', '396673']
nosy_count = 9.0
nosy_names = ['pitrou', 'vstinner', 'ionelmc', 'neologix', 'nikicat', 'zwol', 'Barry Davis', 'xtreak', 'Yhojann Aguilera']
pr_nums = ['12786', '12805', '13512', '13952']
priority = 'normal'
resolution = 'fixed'
stage = 'resolved'
status = 'closed'
superseder = None
type = 'crash'
url = 'https://bugs.python.org/issue18748'
versions = ['Python 3.6', 'Python 3.8', 'Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-105104
<!-- /gh-linked-prs -->
| 58a2e0981642dcddf49daa776ff68a43d3498cee | 85e5d03163cac106ac8ec142ef03f1349a48948b |
python/cpython | python__cpython-134306 | # Add alias for iso-8859-8-i which is the same as iso-8859-8
BPO | [18624](https://bugs.python.org/issue18624)
--- | :---
Nosy | @malemburg, @warsaw, @ezio-melotti, @bitdancer, @ringof
PRs | <li>python/cpython#10237</li><li>python/cpython#32279</li>
Files | <li>[adding_aliases.patch](https://bugs.python.org/file34449/adding_aliases.patch "Uploaded as text/plain at 2014-03-16.22:19:15 by kamie"): adding aliases to the iso-8859-8.</li><li>[8859-8_aliases_and_test.patch](https://bugs.python.org/file35736/8859-8_aliases_and_test.patch "Uploaded as text/plain at 2014-06-23.00:49:16 by bensws"): added two aliases to 8859-8, commented out a missing tactis codec, added a test</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 2013-08-01.23:04:29.016>
labels = ['easy', 'type-feature', 'expert-email', 'expert-unicode']
title = 'Add alias for iso-8859-8-i which is the same as iso-8859-8'
updated_at = <Date 2022-04-03.02:54:46.394>
user = 'https://github.com/bitdancer'
```
bugs.python.org fields:
```python
activity = <Date 2022-04-03.02:54:46.394>
actor = 'dpg'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Unicode', 'email']
creation = <Date 2013-08-01.23:04:29.016>
creator = 'r.david.murray'
dependencies = []
files = ['34449', '35736']
hgrepos = []
issue_num = 18624
keywords = ['patch', 'easy', 'needs review']
message_count = 11.0
messages = ['194134', '194165', '194177', '194267', '194362', '194386', '213509', '213765', '213772', '213773', '221330']
nosy_count = 9.0
nosy_names = ['lemburg', 'barry', 'ezio.melotti', 'r.david.murray', 'das', 'kamie', 'mvolz', 'bensws', 'dpg']
pr_nums = ['10237', '32279']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue18624'
versions = ['Python 3.4']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-134306
* gh-134330
* gh-134777
* gh-134781
<!-- /gh-linked-prs -->
| 5ab66a882d1b5e44ec50b25df116ab209d65863f | 3246ea514d6da6ff09f411e22b3ba61a7de84a74 |
python/cpython | python__cpython-107118 | # gettext() cannot find translations with plural forms
BPO | [18319](https://bugs.python.org/issue18319)
--- | :---
Nosy | @loewis, @warsaw, @Cito, @jwilk, @gbassiere
PRs | <li>python/cpython#19869</li>
Files | <li>[test.mo](https://bugs.python.org/file30717/test.mo "Uploaded as application/octet-stream at 2013-06-27.22:53:23 by @jwilk")</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 2013-06-27.22:53:23.400>
labels = ['type-bug', '3.8', '3.9', '3.10', '3.7', 'library']
title = 'gettext() cannot find translations with plural forms'
updated_at = <Date 2020-09-18.20:39:10.360>
user = 'https://github.com/jwilk'
```
bugs.python.org fields:
```python
activity = <Date 2020-09-18.20:39:10.360>
actor = 'cito'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2013-06-27.22:53:23.400>
creator = 'jwilk'
dependencies = []
files = ['30717']
hgrepos = []
issue_num = 18319
keywords = ['patch']
message_count = 3.0
messages = ['191967', '228601', '368346']
nosy_count = 6.0
nosy_names = ['loewis', 'barry', 'cito', 'jwilk', 'python-dev', 'Gilles Bassi\xc3\xa8re']
pr_nums = ['19869']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue18319'
versions = ['Python 3.7', 'Python 3.8', 'Python 3.9', 'Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-107118
* gh-107133
* gh-107134
<!-- /gh-linked-prs -->
| b3c34e55c053846beb35f5e4253ef237b3494bd0 | b273837fea129df8477da557ad3cb23a0ed12c20 |
python/cpython | python__cpython-102051 | # running a suite with no tests is not an error
BPO | [18232](https://bugs.python.org/issue18232)
--- | :---
Nosy | @terryjreedy, @rbtcollins, @ezio-melotti, @voidspace, @mgorny, @kamilturek
PRs | <li>python/cpython#24893</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 2013-06-16.19:32:39.867>
labels = ['type-feature', 'tests', '3.10']
title = 'running a suite with no tests is not an error'
updated_at = <Date 2021-03-16.12:25:51.548>
user = 'https://github.com/rbtcollins'
```
bugs.python.org fields:
```python
activity = <Date 2021-03-16.12:25:51.548>
actor = 'mgorny'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Tests']
creation = <Date 2013-06-16.19:32:39.867>
creator = 'rbcollins'
dependencies = []
files = []
hgrepos = []
issue_num = 18232
keywords = ['patch']
message_count = 8.0
messages = ['191282', '191611', '192331', '226617', '226620', '226631', '388669', '388682']
nosy_count = 6.0
nosy_names = ['terry.reedy', 'rbcollins', 'ezio.melotti', 'michael.foord', 'mgorny', 'kamilturek']
pr_nums = ['24893']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue18232'
versions = ['Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-102051
<!-- /gh-linked-prs -->
| 76632b836cf81a95301f4eb1fa43682e8d9ffa67 | dc3f97549a8fe4f7fea8d0326e394760b51caa6e |
python/cpython | python__cpython-105039 | # argparse: mutually exclusive groups full of help-suppressed args can cause AssertionErrors
BPO | [17890](https://bugs.python.org/issue17890)
--- | :---
Nosy | @terryjreedy, @bitdancer, @vadmium, @iritkatriel
Files | <li>[argparse-assertfail.py](https://bugs.python.org/file30102/argparse-assertfail.py "Uploaded as text/plain at 2013-05-02.00:43:01 by gholms"): Test case</li><li>[7691d1d4b955.diff](https://bugs.python.org/file30108/7691d1d4b955.diff "Uploaded as text/plain at 2013-05-02.13:53:44 by Yogesh.Chaudhari"): gholms repo</li><li>[Issue17890-27.patch](https://bugs.python.org/file30110/Issue17890-27.patch "Uploaded as text/plain at 2013-05-02.16:22:44 by Yogesh.Chaudhari"): Resolution for Python 2.7 issue17890</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 2013-05-02.00:43:02.387>
labels = ['type-bug', 'library']
title = 'argparse: mutually exclusive groups full of help-suppressed args can cause AssertionErrors'
updated_at = <Date 2021-12-10.16:06:27.619>
user = 'https://bugs.python.org/gholms'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-10.16:06:27.619>
actor = 'iritkatriel'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2013-05-02.00:43:02.387>
creator = 'gholms'
dependencies = []
files = ['30102', '30108', '30110']
hgrepos = ['187']
issue_num = 17890
keywords = ['patch']
message_count = 17.0
messages = ['188250', '188253', '188278', '188291', '188295', '188306', '188337', '188379', '188413', '188984', '189054', '189064', '189065', '189355', '193191', '259189', '408217']
nosy_count = 8.0
nosy_names = ['terry.reedy', 'bethard', 'r.david.murray', 'martin.panter', 'paul.j3', 'Yogesh.Chaudhari', 'gholms', 'iritkatriel']
pr_nums = []
priority = 'normal'
resolution = 'fixed'
stage = 'patch review'
status = 'pending'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue17890'
versions = ['Python 2.7', 'Python 3.3', 'Python 3.4']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-105039
<!-- /gh-linked-prs -->
| de1428f8c234a8731ced99cbfe5cd6c5c719e31d | 49258efada0cb0fc58ccffc018ff310b8f7f4570 |
python/cpython | python__cpython-118390 | # OS X test for Tk availability doesn't work
BPO | [17496](https://bugs.python.org/issue17496)
--- | :---
Nosy | @ronaldoussoren, @ned-deily, @glyph, @alex, @roseman
Files | <li>[tk-cond.diff](https://bugs.python.org/file29510/tk-cond.diff "Uploaded as text/plain at 2013-03-20.19:50:04 by @alex")</li><li>[issue-17496.txt](https://bugs.python.org/file29990/issue-17496.txt "Uploaded as text/plain at 2013-04-23.12:30:21 by @ronaldoussoren")</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/ronaldoussoren'
closed_at = None
created_at = <Date 2013-03-20.19:50:05.038>
labels = ['OS-mac', 'type-bug', 'expert-tkinter', '3.8', '3.7', 'tests']
title = "OS X test for Tk availability in runtktests.py doesn't work"
updated_at = <Date 2018-06-27.07:17:07.088>
user = 'https://github.com/alex'
```
bugs.python.org fields:
```python
activity = <Date 2018-06-27.07:17:07.088>
actor = 'ronaldoussoren'
assignee = 'ronaldoussoren'
closed = False
closed_date = None
closer = None
components = ['macOS', 'Tests', 'Tkinter']
creation = <Date 2013-03-20.19:50:05.038>
creator = 'alex'
dependencies = []
files = ['29510', '29990']
hgrepos = []
issue_num = 17496
keywords = ['patch']
message_count = 14.0
messages = ['184784', '184843', '184844', '184845', '184846', '184850', '184851', '184862', '187632', '193592', '219025', '219028', '320500', '320551']
nosy_count = 6.0
nosy_names = ['ronaldoussoren', 'ned.deily', 'glyph', 'alex', 'markroseman', 'jesstess']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue17496'
versions = ['Python 2.7', 'Python 3.4', 'Python 3.5', 'Python 3.6', 'Python 3.7', 'Python 3.8']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-118390
* gh-125392
* gh-125393
<!-- /gh-linked-prs -->
| ce740d46246b28bb675ba9d62214b59be9b8411e | 4197a796ecf3a751ad7245b8d4f980d6d444b614 |
python/cpython | python__cpython-113161 | # doctest test finder doesnt find line numbers of properties
BPO | [17446](https://bugs.python.org/issue17446)
--- | :---
Nosy | @blueyed, @bitdancer, @RonnyPfannschmidt, @Vgr255, @mscuthbert, @timofurrer
PRs | <li>python/cpython#3419</li>
Files | <li>[fix_issue_17446.patch](https://bugs.python.org/file41769/fix_issue_17446.patch "Uploaded as text/plain at 2016-02-01.01:51:28 by @timofurrer")</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 2013-03-17.16:08:27.046>
labels = ['type-bug', '3.7']
title = 'doctest test finder doesnt find line numbers of properties'
updated_at = <Date 2019-10-28.17:25:43.144>
user = 'https://github.com/RonnyPfannschmidt'
```
bugs.python.org fields:
```python
activity = <Date 2019-10-28.17:25:43.144>
actor = 'blueyed'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2013-03-17.16:08:27.046>
creator = 'Ronny.Pfannschmidt'
dependencies = []
files = ['41769']
hgrepos = []
issue_num = 17446
keywords = ['patch']
message_count = 12.0
messages = ['184384', '228122', '259300', '259306', '259618', '259620', '259621', '261372', '262146', '293747', '303699', '355572']
nosy_count = 6.0
nosy_names = ['blueyed', 'r.david.murray', 'Ronny.Pfannschmidt', 'abarry', 'mscuthbert', 'tuxtimo']
pr_nums = ['3419']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue17446'
versions = ['Python 3.7']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-113161
* gh-113164
* gh-113165
<!-- /gh-linked-prs -->
| 8f8f0f97e126db9ca470fd7e7b2944c150db6305 | 737d23ffcd16909274f21c932215ec104140fb1c |
python/cpython | python__cpython-106366 | # Allow waiting on a mock
BPO | [17013](https://bugs.python.org/issue17013)
--- | :---
Nosy | @jcea, @pitrou, @rbtcollins, @cjw296, @ezio-melotti, @voidspace, @Kentzo, @lisroach, @mariocj89, @pablogsal, @Kentzo, @tirkarthi
PRs | <li>python/cpython#12818</li><li>python/cpython#16094</li><li>python/cpython#17133</li><li>python/cpython#20759</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 2013-01-22.12:15:47.799>
labels = ['type-feature', 'library', '3.9']
title = 'Allow waiting on a mock'
updated_at = <Date 2020-06-10.14:37:15.926>
user = 'https://github.com/pitrou'
```
bugs.python.org fields:
```python
activity = <Date 2020-06-10.14:37:15.926>
actor = 'Kentzo'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2013-01-22.12:15:47.799>
creator = 'pitrou'
dependencies = []
files = []
hgrepos = []
issue_num = 17013
keywords = ['patch']
message_count = 18.0
messages = ['180377', '181398', '247777', '340146', '340153', '340158', '340164', '352211', '356898', '367446', '371133', '371165', '371175', '371193', '371195', '371196', '371202', '371207']
nosy_count = 13.0
nosy_names = ['jcea', 'pitrou', 'rbcollins', 'cjw296', 'ezio.melotti', 'michael.foord', 'Ilya.Kulakov', 'lisroach', 'mariocj89', 'lkollar', 'pablogsal', 'Kentzo', 'xtreak']
pr_nums = ['12818', '16094', '17133', '20759']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue17013'
versions = ['Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-106366
* gh-106414
* gh-106591
* gh-106822
<!-- /gh-linked-prs -->
| 56353b10023ff12c7c8d6288ae4bf7bdcd5d4b6c | e7cd55753b00d6f7e5c8998bae73ebaa9e86398d |
python/cpython | python__cpython-111785 | # Add Base32 support for RFC4648 "Extended Hex" alphabet (patch attached)
BPO | [16995](https://bugs.python.org/issue16995)
--- | :---
Nosy | @pitrou, @ezio-melotti, @vadmium, @serhiy-storchaka, @pganssle, @csabella, @miss-islington, @FFY00
PRs | <li>python/cpython#20441</li>
Files | <li>[base32hex.tar.gz](https://bugs.python.org/file28771/base32hex.tar.gz "Uploaded as application/x-gzip at 2013-01-18.18:21:19 by matthaeus.wander"): Patches for Python 2.7 and 3</li><li>[py3_base32hex.patch](https://bugs.python.org/file28772/py3_base32hex.patch "Uploaded as text/plain at 2013-01-18.18:51:09 by matthaeus.wander"): Patch for Python 3</li><li>[py3_base32hex.patch](https://bugs.python.org/file39981/py3_base32hex.patch "Uploaded as text/plain at 2015-07-22.16:50:51 by matthaeus.wander"): Patch for 3.5 or 3.6</li><li>[py36_base32hex.patch](https://bugs.python.org/file39995/py36_base32hex.patch "Uploaded as text/plain at 2015-07-23.14:15:34 by matthaeus.wander"): *fixed* Patch for 3.6</li><li>[py36_base32hex.patch](https://bugs.python.org/file39996/py36_base32hex.patch "Uploaded as text/plain at 2015-07-23.14:50:03 by @serhiy-storchaka"): Regenerated for review</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 2020-08-10.19:00:47.787>
created_at = <Date 2013-01-18.18:21:19.913>
labels = ['type-feature', 'library', '3.10']
title = 'Add Base32 support for RFC4648 "Extended Hex" alphabet (patch attached)'
updated_at = <Date 2020-08-10.19:00:47.785>
user = 'https://bugs.python.org/matthaeuswander'
```
bugs.python.org fields:
```python
activity = <Date 2020-08-10.19:00:47.785>
actor = 'p-ganssle'
assignee = 'none'
closed = True
closed_date = <Date 2020-08-10.19:00:47.787>
closer = 'p-ganssle'
components = ['Library (Lib)']
creation = <Date 2013-01-18.18:21:19.913>
creator = 'matthaeus.wander'
dependencies = []
files = ['28771', '28772', '39981', '39995', '39996']
hgrepos = []
issue_num = 16995
keywords = ['patch']
message_count = 12.0
messages = ['180206', '180207', '180210', '243591', '247134', '247158', '247205', '247216', '338962', '375123', '375137', '375138']
nosy_count = 9.0
nosy_names = ['pitrou', 'ezio.melotti', 'martin.panter', 'serhiy.storchaka', 'matthaeus.wander', 'p-ganssle', 'cheryl.sabella', 'miss-islington', 'FFY00']
pr_nums = ['20441']
priority = 'normal'
resolution = 'fixed'
stage = 'resolved'
status = 'closed'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue16995'
versions = ['Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-111785
<!-- /gh-linked-prs -->
| ea970fb116a114f2c47cc8f21df00166d43ab78b | f115a55f0e455a4b43a1da9fd838a60a101f182a |
python/cpython | python__cpython-124578 | # argparse: mismatch between choices parsing and usage/error message
BPO | [16977](https://bugs.python.org/issue16977)
--- | :---
Nosy | @ericvsmith, @cjerdonek, @iritkatriel
Files | <li>[argparse.patch](https://bugs.python.org/file28769/argparse.patch "Uploaded as text/plain at 2013-01-18.15:51:21 by jeffknupp")</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 2013-01-16.02:30:07.460>
labels = ['type-bug', 'library', '3.9', '3.10', '3.11']
title = 'argparse: mismatch between choices parsing and usage/error message'
updated_at = <Date 2021-12-10.15:38:13.260>
user = 'https://github.com/cjerdonek'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-10.15:38:13.260>
actor = 'iritkatriel'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2013-01-16.02:30:07.460>
creator = 'chris.jerdonek'
dependencies = []
files = ['28769']
hgrepos = []
issue_num = 16977
keywords = ['patch']
message_count = 13.0
messages = ['180068', '180069', '180136', '180153', '180187', '180197', '180208', '180216', '180218', '192254', '192295', '192715', '408213']
nosy_count = 5.0
nosy_names = ['eric.smith', 'chris.jerdonek', 'paul.j3', 'jeffknupp', 'iritkatriel']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'test needed'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue16977'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124578
* gh-124755
* gh-124756
<!-- /gh-linked-prs -->
| f1a2417b9e2993e584610851ac004c8b0599b323 | dac4ec52866e4068f3ac33b4da1e1a1fe6fc2cba |
python/cpython | python__cpython-120894 | # Add support for C99 complex type (_Complex) as ctypes.c_complex
BPO | [16899](https://bugs.python.org/issue16899)
--- | :---
Nosy | @arigo, @amauryfa, @mdickinson, @meadori
<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 2013-01-08.22:06:03.435>
labels = ['ctypes', 'type-feature', '3.7']
title = 'Add support for C99 complex type (_Complex) as ctypes.c_complex'
updated_at = <Date 2018-07-04.15:01:25.648>
user = 'https://bugs.python.org/rutsky'
```
bugs.python.org fields:
```python
activity = <Date 2018-07-04.15:01:25.648>
actor = 'arigo'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['ctypes']
creation = <Date 2013-01-08.22:06:03.435>
creator = 'rutsky'
dependencies = []
files = []
hgrepos = []
issue_num = 16899
keywords = []
message_count = 10.0
messages = ['179378', '179459', '179609', '179646', '180759', '285961', '285998', '286453', '321046', '321049']
nosy_count = 8.0
nosy_names = ['arigo', 'amaury.forgeotdarc', 'mark.dickinson', 'Arfrever', 'meador.inge', 'rutsky', 'Tom Krauss', 'rkmountainguy']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'test needed'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue16899'
versions = ['Python 3.7']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-120894
* gh-121248
* gh-129129
* gh-133237
* gh-133435
<!-- /gh-linked-prs -->
| 6988ff02a5741bcd04a8f46b7dd845e849557be0 | a0b8b342c5d0b4722ad9cfe82f2630025d445f00 |
python/cpython | python__cpython-125210 | # argparse group nesting lost on inheritance
BPO | [16807](https://bugs.python.org/issue16807)
--- | :---
Nosy | @dougalsutherland, @iritkatriel
Files | <li>[argparse_mutex_parent.patch](https://bugs.python.org/file28473/argparse_mutex_parent.patch "Uploaded as text/plain at 2012-12-29.01:39:23 by @dougalsutherland"): patch fixing the problem and adding a test</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 2012-12-29.01:39:27.035>
labels = ['type-bug', 'library', '3.9', '3.10', '3.11']
title = 'argparse group nesting lost on inheritance'
updated_at = <Date 2021-12-10.16:54:57.102>
user = 'https://github.com/dougalsutherland'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-10.16:54:57.102>
actor = 'iritkatriel'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2012-12-29.01:39:27.035>
creator = 'dougalsutherland'
dependencies = []
files = ['28473']
hgrepos = []
issue_num = 16807
keywords = ['patch']
message_count = 5.0
messages = ['178459', '222934', '223047', '223158', '408222']
nosy_count = 4.0
nosy_names = ['bethard', 'paul.j3', 'dougalsutherland', 'iritkatriel']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue16807'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-125210
* gh-125308
* gh-125309
<!-- /gh-linked-prs -->
| 18c74497681e0107d7cde53e63ea42feb38f2176 | 0135848059162ad81478a7776fec622d68a36524 |
python/cpython | python__cpython-15955 | # imghdr doesn't recognize variant jpeg formats
BPO | [16512](https://bugs.python.org/issue16512)
--- | :---
Nosy | @jcea, @vstinner, @ezio-melotti, @bitdancer, @intgr, @PCManticore
PRs | <li>python/cpython#8322</li><li>python/cpython#14862</li>
Files | <li>[peanuts15.jpg](https://bugs.python.org/file28046/peanuts15.jpg "Uploaded as image/jpeg at 2012-11-20.10:21:19 by joril"): JPEG including an ICC profile</li><li>[imghdr_icc_jpeg.patch](https://bugs.python.org/file28054/imghdr_icc_jpeg.patch "Uploaded as text/plain at 2012-11-20.17:17:38 by joril"): patch against hg head</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 2012-11-20.10:21:20.051>
labels = ['type-feature', 'library']
title = "imghdr doesn't recognize variant jpeg formats"
updated_at = <Date 2019-07-19.14:24:34.361>
user = 'https://bugs.python.org/joril'
```
bugs.python.org fields:
```python
activity = <Date 2019-07-19.14:24:34.361>
actor = 'pchopin'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2012-11-20.10:21:20.051>
creator = 'joril'
dependencies = []
files = ['28046', '28054']
hgrepos = ['210']
issue_num = 16512
keywords = ['patch']
message_count = 13.0
messages = ['175984', '175985', '175986', '176009', '176010', '176045', '184742', '198034', '220345', '220346', '220409', '221185', '221214']
nosy_count = 9.0
nosy_names = ['jcea', 'vstinner', 'ezio.melotti', 'r.david.murray', 'intgr', 'Claudiu.Popa', 'kovid', 'joril', 'mvignali']
pr_nums = ['8322', '14862']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue16512'
versions = ['Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-15955
<!-- /gh-linked-prs -->
| fa1d675309c6a08b0833cf25cffe476c6166aba3 | ccfc042bbf31e53c44b8aae444afd8365b798422 |
python/cpython | python__cpython-103036 | # Include the "object" type in the lists of documented types
BPO | [16508](https://bugs.python.org/issue16508)
--- | :---
Nosy | @birkenfeld, @terryjreedy, @ezio-melotti, @merwok, @bitdancer, @cjerdonek, @vadmium
Files | <li>[object-type.patch](https://bugs.python.org/file40066/object-type.patch "Uploaded as text/plain at 2015-07-30.12:43:03 by @vadmium")</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/cjerdonek'
closed_at = None
created_at = <Date 2012-11-19.00:14:41.072>
labels = ['type-feature', 'docs']
title = 'include the "object" type in the lists of documented types'
updated_at = <Date 2015-07-30.12:43:07.495>
user = 'https://github.com/cjerdonek'
```
bugs.python.org fields:
```python
activity = <Date 2015-07-30.12:43:07.495>
actor = 'martin.panter'
assignee = 'chris.jerdonek'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2012-11-19.00:14:41.072>
creator = 'chris.jerdonek'
dependencies = []
files = ['40066']
hgrepos = []
issue_num = 16508
keywords = ['patch']
message_count = 6.0
messages = ['175938', '176235', '213058', '213267', '213335', '247663']
nosy_count = 9.0
nosy_names = ['georg.brandl', 'terry.reedy', 'ezio.melotti', 'eric.araujo', 'r.david.murray', 'chris.jerdonek', 'docs@python', 'martin.panter', 'mvolz']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue16508'
versions = ['Python 3.4', 'Python 3.5', 'Python 3.6']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-103036
* gh-126197
* gh-126198
<!-- /gh-linked-prs -->
| 4f826214b30ad50365f45bf07e4a02f34f897ab5 | 6f512c603465ff3e51e07cb7e1d36b4e5e88905d |
python/cpython | python__cpython-97579 | # wrong type for wintypes.BYTE
BPO | [16376](https://bugs.python.org/issue16376)
--- | :---
Nosy | @amauryfa, @abalkin, @meadori
Files | <li>[Issue16376.diff](https://bugs.python.org/file35940/Issue16376.diff "Uploaded as text/plain at 2014-07-13.14:48:39 by BreamoreBoy"): Change BYTE definition fron c_byte to c_ubyte</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 2012-10-31.17:02:55.557>
labels = ['ctypes', 'type-bug', '3.9', '3.10', '3.11']
title = 'wrong type for wintypes.BYTE'
updated_at = <Date 2021-06-17.10:29:15.374>
user = 'https://bugs.python.org/techtonik'
```
bugs.python.org fields:
```python
activity = <Date 2021-06-17.10:29:15.374>
actor = 'iritkatriel'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['ctypes']
creation = <Date 2012-10-31.17:02:55.557>
creator = 'techtonik'
dependencies = []
files = ['35940']
hgrepos = []
issue_num = 16376
keywords = ['patch']
message_count = 2.0
messages = ['174331', '222935']
nosy_count = 4.0
nosy_names = ['amaury.forgeotdarc', 'belopolsky', 'techtonik', 'meador.inge']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue16376'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-97579
<!-- /gh-linked-prs -->
| 409f5337a3e466a5ef673797575cbd1745d27ca9 | f2ac9510a5aa4f71d468f486140eae60f46833ad |
python/cpython | python__cpython-103783 | # curses.textpad.Textbox backspace support
BPO | [16232](https://bugs.python.org/issue16232)
--- | :---
Nosy | @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 = None
closed_at = None
created_at = <Date 2012-10-14.14:38:05.797>
labels = ['extension-modules', 'easy', 'type-feature']
title = 'curses.textpad.Textbox backtrace support'
updated_at = <Date 2019-03-15.22:29:17.594>
user = 'https://bugs.python.org/emeaudroidemeaudroid'
```
bugs.python.org fields:
```python
activity = <Date 2019-03-15.22:29:17.594>
actor = 'BreamoreBoy'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Extension Modules']
creation = <Date 2012-10-14.14:38:05.797>
creator = 'emeaudroid.emeaudroid'
dependencies = []
files = []
hgrepos = []
issue_num = 16232
keywords = ['easy']
message_count = 3.0
messages = ['172888', '223108', '237423']
nosy_count = 3.0
nosy_names = ['ned.deily', 'emeaudroid.emeaudroid', 'ragreener']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'test needed'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue16232'
versions = ['Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-103783
<!-- /gh-linked-prs -->
| a3a5b4bb232ba29875147baa3b56a5524eece353 | 44010d0f1203134cd8f885ca574caaef373e80f6 |
python/cpython | python__cpython-109161 | # list duplicate test names with patchcheck
BPO | [16079](https://bugs.python.org/issue16079)
--- | :---
Nosy | @rhettinger, @gpshead, @vstinner, @rbtcollins, @ned-deily, @ezio-melotti, @merwok, @cjerdonek, @xdegaye, @ambv, @miss-islington
PRs | <li>python/cpython#12827</li><li>python/cpython#12828</li><li>python/cpython#12886</li><li>python/cpython#12940</li><li>python/cpython#12950</li>
Files | <li>[duplicate_test_names.patch](https://bugs.python.org/file27326/duplicate_test_names.patch "Uploaded as text/plain at 2012-09-28.10:15:36 by @xdegaye")</li><li>[duplicate_code_names.py](https://bugs.python.org/file27375/duplicate_code_names.py "Uploaded as text/plain at 2012-10-01.16:49:48 by @xdegaye")</li><li>[std_lib_duplicates.txt](https://bugs.python.org/file27376/std_lib_duplicates.txt "Uploaded as text/plain at 2012-10-01.16:50:30 by @xdegaye")</li><li>[duplicate_code_names_2.py](https://bugs.python.org/file31891/duplicate_code_names_2.py "Uploaded as text/plain at 2013-09-28.15:28:24 by @xdegaye")</li><li>[ignored_duplicates](https://bugs.python.org/file31892/ignored_duplicates "Uploaded as text/plain at 2013-09-28.15:28:47 by @xdegaye")</li><li>[duplicate_code_names_3.py](https://bugs.python.org/file48265/duplicate_code_names_3.py "Uploaded as text/plain at 2019-04-13.16:34:39 by @xdegaye")</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 2012-09-28.10:15:37.662>
labels = ['easy', 'tests', 'type-bug', 'library', '3.9']
title = 'list duplicate test names with patchcheck'
updated_at = <Date 2019-11-27.18:45:45.910>
user = 'https://github.com/xdegaye'
```
bugs.python.org fields:
```python
activity = <Date 2019-11-27.18:45:45.910>
actor = 'brett.cannon'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)', 'Tests']
creation = <Date 2012-09-28.10:15:37.662>
creator = 'xdegaye'
dependencies = []
files = ['27326', '27375', '27376', '31891', '31892', '48265']
hgrepos = []
issue_num = 16079
keywords = ['patch', 'easy']
message_count = 31.0
messages = ['171428', '171499', '171505', '171509', '171511', '171512', '171513', '171519', '171536', '171544', '171548', '171558', '171559', '171576', '171734', '198525', '198586', '229625', '340168', '340219', '340221', '340252', '340286', '340295', '340323', '340584', '340585', '340687', '340785', '340786', '351668']
nosy_count = 11.0
nosy_names = ['rhettinger', 'gregory.p.smith', 'vstinner', 'rbcollins', 'ned.deily', 'ezio.melotti', 'eric.araujo', 'chris.jerdonek', 'xdegaye', 'lukasz.langa', 'miss-islington']
pr_nums = ['12827', '12828', '12886', '12940', '12950']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue16079'
versions = ['Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-109161
* gh-109365
* gh-109366
<!-- /gh-linked-prs -->
| 3cb9a8edca6e3fa0f0045b03a9a6444cf8f7affe | 0e76cc359ba5d5e29d7c75355d7c1bc7e817eecf |
python/cpython | python__cpython-99982 | # Using new 'bool' format character
BPO | [15999](https://bugs.python.org/issue15999)
--- | :---
Nosy | @larryhastings, @Rosuav, @serhiy-storchaka
PRs | <li>python/cpython#15609</li><li>python/cpython#15610</li><li>python/cpython#15621</li><li>python/cpython#15622</li>
Files | <li>[use_bool_parsing.diff](https://bugs.python.org/file27244/use_bool_parsing.diff "Uploaded as text/plain at 2012-09-21.15:47:00 by @serhiy-storchaka")</li><li>[bool_cleanup.patch](https://bugs.python.org/file40809/bool_cleanup.patch "Uploaded as text/plain at 2015-10-18.16:22:10 by @serhiy-storchaka")</li><li>[accept_bool.patch](https://bugs.python.org/file40810/accept_bool.patch "Uploaded as text/plain at 2015-10-18.16:22:30 by @serhiy-storchaka")</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 2012-09-21.15:47:09.273>
labels = ['extension-modules', 'interpreter-core', 'type-feature']
title = "Using new 'bool' format character"
updated_at = <Date 2019-09-01.09:16:53.793>
user = 'https://github.com/serhiy-storchaka'
```
bugs.python.org fields:
```python
activity = <Date 2019-09-01.09:16:53.793>
actor = 'serhiy.storchaka'
assignee = 'serhiy.storchaka'
closed = False
closed_date = None
closer = None
components = ['Extension Modules', 'Interpreter Core']
creation = <Date 2012-09-21.15:47:09.273>
creator = 'serhiy.storchaka'
dependencies = []
files = ['27244', '40809', '40810']
hgrepos = []
issue_num = 15999
keywords = ['patch']
message_count = 7.0
messages = ['170897', '170898', '252765', '253154', '350940', '350941', '350942']
nosy_count = 3.0
nosy_names = ['larry', 'Rosuav', 'serhiy.storchaka']
pr_nums = ['15609', '15610', '15621', '15622']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue15999'
versions = ['Python 3.4']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-99982
* gh-99983
* gh-99986
* gh-99989
* gh-100016
* gh-100017
<!-- /gh-linked-prs -->
| 922a6cf6c265e2763a003291885ff74d46203fc3 | 2488c1e1b66366a3a933ff248eff080fabd2351c |
python/cpython | python__cpython-127338 | # Python should support exporting thread names to the OS
BPO | [15500](https://bugs.python.org/issue15500)
--- | :---
Nosy | @jcea, @pitrou, @vstinner, @tiran, @bitdancer, @asvetlov, @florentx, @socketpair, @eryksun, @ZackerySpytz, @arhadthedev
PRs | <li>python/cpython#14578</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 2012-07-30.12:19:30.305>
labels = ['type-feature', 'library', '3.10', '3.11']
title = 'Python should support exporting thread names to the OS'
updated_at = <Date 2022-01-18.21:32:45.293>
user = 'https://bugs.python.org/bra'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-18.21:32:45.293>
actor = 'pitrou'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2012-07-30.12:19:30.305>
creator = 'bra'
dependencies = []
files = []
hgrepos = []
issue_num = 15500
keywords = ['patch']
message_count = 10.0
messages = ['166890', '167166', '167459', '167552', '167560', '230736', '377332', '406336', '410896', '410898']
nosy_count = 14.0
nosy_names = ['jcea', 'pitrou', 'vstinner', 'christian.heimes', 'Arfrever', 'r.david.murray', 'asvetlov', 'flox', 'bra', 'kovid', 'socketpair', 'eryksun', 'ZackerySpytz', 'arhadthedev']
pr_nums = ['14578']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue15500'
versions = ['Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-127338
* gh-127702
* gh-128675
* gh-128800
* gh-128945
* gh-132012
<!-- /gh-linked-prs -->
| 67b18a18b66b89e253f38895057ef9f6bae92e7b | 12680ec5bd45c85b6daebe0739d30ef45f089efa |
python/cpython | python__cpython-111546 | # Eliminate the use of deprecated OS X APIs in getpath.c
BPO | [15498](https://bugs.python.org/issue15498)
--- | :---
Nosy | @ronaldoussoren, @vstinner, @ned-deily
Files | <li>[issue15498-v1.txt](https://bugs.python.org/file26622/issue15498-v1.txt "Uploaded as text/plain at 2012-07-31.12:03:03 by @ronaldoussoren")</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/ronaldoussoren'
closed_at = None
created_at = <Date 2012-07-30.07:34:24.426>
labels = ['OS-mac', '3.11']
title = 'Eliminate the use of deprecated OS X APIs in getpath.c'
updated_at = <Date 2021-11-27.11:57:12.234>
user = 'https://github.com/ned-deily'
```
bugs.python.org fields:
```python
activity = <Date 2021-11-27.11:57:12.234>
actor = 'iritkatriel'
assignee = 'ronaldoussoren'
closed = False
closed_date = None
closer = None
components = ['macOS']
creation = <Date 2012-07-30.07:34:24.426>
creator = 'ned.deily'
dependencies = []
files = ['26622']
hgrepos = []
issue_num = 15498
keywords = ['needs review']
message_count = 4.0
messages = ['166863', '166991', '173828', '354378']
nosy_count = 3.0
nosy_names = ['ronaldoussoren', 'vstinner', 'ned.deily']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue15498'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-111546
* gh-112309
<!-- /gh-linked-prs -->
| de2715f086bc799b20e420a82b76180338352565 | 6a00a58f60a1ce18d32503f11b95d6fcf00c7406 |
python/cpython | python__cpython-113049 | # os.chmod() does not follow symlinks on Windows
BPO | [15411](https://bugs.python.org/issue15411)
--- | :---
Nosy | @atsuoishimoto, @tjguk, @asvetlov, @zware
Files | <li>[chmod_symlink_win32.patch](https://bugs.python.org/file26462/chmod_symlink_win32.patch "Uploaded as text/plain at 2012-07-21.08:31:18 by @atsuoishimoto")</li><li>[chmod_symlink_win32_2.patch](https://bugs.python.org/file26464/chmod_symlink_win32_2.patch "Uploaded as text/plain at 2012-07-21.09:49:52 by @atsuoishimoto")</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 2012-07-21.08:31:23.124>
labels = ['type-feature', 'library', 'OS-windows']
title = 'os.chmod() does not follow symlinks on Windows'
updated_at = <Date 2019-04-26.19:53:54.688>
user = 'https://github.com/atsuoishimoto'
```
bugs.python.org fields:
```python
activity = <Date 2019-04-26.19:53:54.688>
actor = 'BreamoreBoy'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)', 'Windows']
creation = <Date 2012-07-21.08:31:23.124>
creator = 'ishimoto'
dependencies = []
files = ['26462', '26464']
hgrepos = []
issue_num = 15411
keywords = ['patch']
message_count = 3.0
messages = ['165996', '166003', '223300']
nosy_count = 4.0
nosy_names = ['ishimoto', 'tim.golden', 'asvetlov', 'zach.ware']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue15411'
versions = ['Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-113049
<!-- /gh-linked-prs -->
| 29f7eb4859bfc27a4c93f36449ca7d810e13288b | c6e953be125c491226adc1a5bc9c804ce256aa17 |
python/cpython | python__cpython-124303 | # argparse: nargs='*' positional argument doesn't accept any items if preceded by an option and another positional
BPO | [15112](https://bugs.python.org/issue15112)
--- | :---
Nosy | @cjerdonek, @vadmium
Files | <li>[argparse_fix_empty_nargs_star.patch](https://bugs.python.org/file26097/argparse_fix_empty_nargs_star.patch "Uploaded as text/plain at 2012-06-22.21:54:42 by waltermundt"): Proposed fix</li><li>[15112.patch](https://bugs.python.org/file26485/15112.patch "Uploaded as text/plain at 2012-07-22.21:53:46 by bethard")</li><li>[mixed.patch](https://bugs.python.org/file31457/mixed.patch "Uploaded as text/plain at 2013-08-25.02:11:57 by paul.j3")</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 2012-06-20.04:15:47.146>
labels = ['type-bug', 'library']
title = "argparse: nargs='*' positional argument doesn't accept any items if preceded by an option and another positional"
updated_at = <Date 2018-06-30.21:19:15.871>
user = 'https://bugs.python.org/waltermundt'
```
bugs.python.org fields:
```python
activity = <Date 2018-06-30.21:19:15.871>
actor = 'paul.j3'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2012-06-20.04:15:47.146>
creator = 'waltermundt'
dependencies = []
files = ['26097', '26485', '31457']
hgrepos = []
issue_num = 15112
keywords = ['patch']
message_count = 14.0
messages = ['163249', '163497', '166173', '178481', '196066', '196112', '196434', '221999', '226315', '226316', '226320', '243453', '262842', '320808']
nosy_count = 9.0
nosy_names = ['bethard', 'gfxmonk', 'devurandom', 'chris.jerdonek', 'tshepang', 'martin.panter', 'paul.j3', 'waltermundt', 'leonard.gerard']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue15112'
versions = ['Python 2.7', 'Python 3.2', 'Python 3.3', 'Python 3.4']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124303
* gh-124436
* gh-124437
<!-- /gh-linked-prs -->
| 4a5e4aade420c594c5b3fe0589e9e6b444bd6ee5 | e69ff34e81eceb69de6623205c87e0145f1831e4 |
python/cpython | python__cpython-112318 | # [doc] say in open() doc that line buffering only applies to write
BPO | [15049](https://bugs.python.org/issue15049)
--- | :---
Nosy | @loewis, @pitrou, @bitdancer
<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/bitdancer'
closed_at = None
created_at = <Date 2012-06-12.01:15:24.022>
labels = ['type-bug', '3.8', '3.9', '3.10', 'docs']
title = '[doc] say in open() doc that line buffering only applies to write'
updated_at = <Date 2020-11-06.17:20:11.298>
user = 'https://github.com/bitdancer'
```
bugs.python.org fields:
```python
activity = <Date 2020-11-06.17:20:11.298>
actor = 'iritkatriel'
assignee = 'r.david.murray'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2012-06-12.01:15:24.022>
creator = 'r.david.murray'
dependencies = []
files = []
hgrepos = []
issue_num = 15049
keywords = []
message_count = 4.0
messages = ['162656', '162678', '162682', '162706']
nosy_count = 3.0
nosy_names = ['loewis', 'pitrou', 'r.david.murray']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue15049'
versions = ['Python 3.8', 'Python 3.9', 'Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-112318
* gh-112378
* gh-112379
<!-- /gh-linked-prs -->
| fafae08cc7caa25f2bd6b29106b50ef76c3e296f | 4ec849bba8286b2ca979f557f633582174a8c4d8 |
python/cpython | python__cpython-121233 | # zipimport needs to support namespace packages when no 'directory' entry exists
BPO | [14905](https://bugs.python.org/issue14905)
--- | :---
Nosy | @warsaw, @gpshead, @pjeby, @ronaldoussoren, @ncoghlan, @ericvsmith, @ericsnowcurrently, @serhiy-storchaka, @phmc
Files | <li>[zipimport-issue14905.patch](https://bugs.python.org/file26302/zipimport-issue14905.patch "Uploaded as text/plain at 2012-07-07.14:47:49 by jerub")</li><li>[zipimport-issue14905-2.patch](https://bugs.python.org/file26894/zipimport-issue14905-2.patch "Uploaded as text/plain at 2012-08-19.12:59:23 by jerub")</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 2012-05-25.00:27:06.530>
labels = ['3.8', 'type-feature', 'library']
title = "zipimport needs to support namespace packages when no 'directory' entry exists"
updated_at = <Date 2020-08-13.13:47:03.805>
user = 'https://github.com/ericvsmith'
```
bugs.python.org fields:
```python
activity = <Date 2020-08-13.13:47:03.805>
actor = 'pconnell'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2012-05-25.00:27:06.530>
creator = 'eric.smith'
dependencies = []
files = ['26302', '26894']
hgrepos = []
issue_num = 14905
keywords = ['patch']
message_count = 16.0
messages = ['161543', '161544', '161584', '164861', '168568', '182245', '182254', '182255', '182279', '182326', '185799', '185936', '186026', '325724', '325764', '375307']
nosy_count = 14.0
nosy_names = ['barry', 'gregory.p.smith', 'pje', 'ronaldoussoren', 'ncoghlan', 'jerub', 'eric.smith', 'Arfrever', 'eric.snow', 'serhiy.storchaka', 'jpaugh', 'pconnell', 'isoschiz', 'superluser']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue14905'
versions = ['Python 3.8']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-121233
* gh-121375
* gh-121378
<!-- /gh-linked-prs -->
| 17d5b9df10f53ae3c09c8b22f27d25d9e83b4b7e | db1729143de0775c99e0453cb0fc01a799f289a0 |
python/cpython | python__cpython-121673 | # pkgutil.extend_path has no tests
BPO | [14817](https://bugs.python.org/issue14817)
--- | :---
Nosy | @pitrou, @ericvsmith, @Windsooon
PRs | <li>python/cpython#12871</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 2012-05-15.19:19:00.156>
labels = ['easy', 'type-feature', '3.8', '3.9', '3.7', 'tests']
title = 'pkgutil.extend_path has no tests'
updated_at = <Date 2019-07-29.18:36:31.538>
user = 'https://github.com/ericvsmith'
```
bugs.python.org fields:
```python
activity = <Date 2019-07-29.18:36:31.538>
actor = 'nanjekyejoannah'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Tests']
creation = <Date 2012-05-15.19:19:00.156>
creator = 'eric.smith'
dependencies = []
files = []
hgrepos = []
issue_num = 14817
keywords = ['patch', 'easy']
message_count = 10.0
messages = ['160751', '160784', '160785', '160792', '160809', '221843', '338577', '338934', '339764', '340465']
nosy_count = 4.0
nosy_names = ['pitrou', 'eric.smith', 'Arfrever', 'Windson Yang']
pr_nums = ['12871']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue14817'
versions = ['Python 3.7', 'Python 3.8', 'Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-121673
* gh-121950
* gh-121951
<!-- /gh-linked-prs -->
| 8f2532168b4630e413a42ccb5e458708808702ea | 263c7e611bb24715e513d457a3477a61fff15162 |
python/cpython | python__cpython-110582 | # Pdb does not stop at a breakpoint set on the line of a function definition
BPO | [14808](https://bugs.python.org/issue14808)
--- | :---
Nosy | @birkenfeld, @xdegaye
Files | <li>[pdb_default.patch](https://bugs.python.org/file25578/pdb_default.patch "Uploaded as text/plain at 2012-05-14.15:36:58 by @xdegaye")</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 2012-05-14.15:36:58.639>
labels = ['type-bug', 'library']
title = 'Pdb does not stop at a breakpoint set on the line of a function definition'
updated_at = <Date 2012-05-25.11:56:43.789>
user = 'https://github.com/xdegaye'
```
bugs.python.org fields:
```python
activity = <Date 2012-05-25.11:56:43.789>
actor = 'xdegaye'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2012-05-14.15:36:58.639>
creator = 'xdegaye'
dependencies = []
files = ['25578']
hgrepos = []
issue_num = 14808
keywords = ['patch']
message_count = 2.0
messages = ['160629', '161574']
nosy_count = 2.0
nosy_names = ['georg.brandl', 'xdegaye']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue14808'
versions = ['Python 2.7', 'Python 3.2', 'Python 3.3']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-110582
* gh-112470
<!-- /gh-linked-prs -->
| 1c9a0c40794f0cb3234533d5e83234e7dce4ccd4 | 77bb0d5f5047223e5d8f855ee21442ea9505834e |
python/cpython | python__cpython-124454 | # Pdb does not stop at a breakpoint
BPO | [14751](https://bugs.python.org/issue14751)
--- | :---
Nosy | @xdegaye
Files | <li>[pdb_default.patch](https://bugs.python.org/file25494/pdb_default.patch "Uploaded as text/plain at 2012-05-08.13:00:17 by @xdegaye")</li><li>[pdb_default_2.patch](https://bugs.python.org/file25561/pdb_default_2.patch "Uploaded as text/plain at 2012-05-13.15:48:49 by @xdegaye")</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 2012-05-08.13:00:17.907>
labels = ['type-bug', 'library']
title = 'Pdb does not stop at a breakpoint'
updated_at = <Date 2012-05-13.15:48:49.831>
user = 'https://github.com/xdegaye'
```
bugs.python.org fields:
```python
activity = <Date 2012-05-13.15:48:49.831>
actor = 'xdegaye'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2012-05-08.13:00:17.907>
creator = 'xdegaye'
dependencies = []
files = ['25494', '25561']
hgrepos = []
issue_num = 14751
keywords = ['patch']
message_count = 2.0
messages = ['160202', '160518']
nosy_count = 1.0
nosy_names = ['xdegaye']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue14751'
versions = ['Python 2.7', 'Python 3.2', 'Python 3.3']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124454
* gh-125548
* gh-125549
* gh-128190
* gh-128947
* gh-128953
<!-- /gh-linked-prs -->
| 12eaadc0ad33411bb02945d700b6ed7e758bb188 | 9c2bb7d551a695f35db953a671a2ddca89426bef |
python/cpython | python__cpython-118979 | # trace function not set, causing some Pdb commands to fail
BPO | [14728](https://bugs.python.org/issue14728)
--- | :---
Nosy | @loewis, @birkenfeld, @terryjreedy, @orsenthil, @asvetlov, @xdegaye
Files | <li>[pdb.patch](https://bugs.python.org/file25459/pdb.patch "Uploaded as text/plain at 2012-05-05.10:43:43 by @xdegaye")</li><li>[pdb_default.patch](https://bugs.python.org/file25463/pdb_default.patch "Uploaded as text/plain at 2012-05-05.16:00:24 by @xdegaye")</li><li>[pdb_2.7.patch](https://bugs.python.org/file25464/pdb_2.7.patch "Uploaded as text/plain at 2012-05-05.16:01:12 by @xdegaye")</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 2012-05-05.10:43:44.908>
labels = ['type-bug', 'library']
title = 'trace function not set, causing some Pdb commands to fail'
updated_at = <Date 2012-12-05.11:07:49.874>
user = 'https://github.com/xdegaye'
```
bugs.python.org fields:
```python
activity = <Date 2012-12-05.11:07:49.874>
actor = 'asvetlov'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2012-05-05.10:43:44.908>
creator = 'xdegaye'
dependencies = []
files = ['25459', '25463', '25464']
hgrepos = []
issue_num = 14728
keywords = ['patch']
message_count = 5.0
messages = ['159985', '159997', '159998', '160417', '176277']
nosy_count = 7.0
nosy_names = ['loewis', 'georg.brandl', 'terry.reedy', 'orsenthil', 'asvetlov', 'neologix', 'xdegaye']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue14728'
versions = ['Python 2.7', 'Python 3.2', 'Python 3.3']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-118979
* gh-119007
* gh-119008
<!-- /gh-linked-prs -->
| f526314194f7fd15931025f8a4439c1765666e42 | d8a82cca12e12a6b22bfe6691e9b222f6d276f0a |
python/cpython | python__cpython-128932 | # missing return in win32_kill?
BPO | [14484](https://bugs.python.org/issue14484)
--- | :---
Nosy | @pitrou, @vstinner, @tjguk, @bitdancer, @asvetlov, @zware, @eryksun, @zooba, @iritkatriel
<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 2012-04-03.14:10:25.629>
labels = ['3.10', 'type-bug', '3.9', 'OS-windows', '3.11']
title = 'missing return in win32_kill?'
updated_at = <Date 2021-12-13.22:46:11.595>
user = 'https://github.com/pitrou'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-13.22:46:11.595>
actor = 'iritkatriel'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Windows']
creation = <Date 2012-04-03.14:10:25.629>
creator = 'pitrou'
dependencies = []
files = []
hgrepos = []
issue_num = 14484
keywords = []
message_count = 20.0
messages = ['157419', '157421', '157422', '157424', '157426', '157428', '157429', '222918', '223684', '223739', '236320', '240809', '240815', '240819', '240824', '240912', '408328', '408337', '408454', '408487']
nosy_count = 10.0
nosy_names = ['jpe', 'pitrou', 'vstinner', 'tim.golden', 'r.david.murray', 'asvetlov', 'zach.ware', 'eryksun', 'steve.dower', 'iritkatriel']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue14484'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-128932
* gh-128937
* gh-128938
<!-- /gh-linked-prs -->
| 939df0f9f6a76e0916b3ba53841e1413ab90952e | 7807b407306d3c311bcc601cc279623180f8da05 |
python/cpython | python__cpython-124631 | # argparse: subparsers, argument abbreviations and ambiguous option
BPO | [14365](https://bugs.python.org/issue14365)
--- | :---
Nosy | @merwok
Files | <li>[argparse_subparsers_ambiguous_bug.py](https://bugs.python.org/file24928/argparse_subparsers_ambiguous_bug.py "Uploaded as text/plain at 2012-03-18.20:27:59 by jakub"): Bug reproduction</li><li>[argparse_dirty_hack.py](https://bugs.python.org/file24945/argparse_dirty_hack.py "Uploaded as text/plain at 2012-03-19.18:10:15 by jakub")</li><li>[subparser_optionals.diff](https://bugs.python.org/file26466/subparser_optionals.diff "Uploaded as text/plain at 2012-07-21.20:02:48 by bethard")</li><li>[subparser_patch.diff](https://bugs.python.org/file31901/subparser_patch.diff "Uploaded as text/plain at 2013-09-29.04:30:27 by paul.j3")</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 2012-03-18.20:27:59.700>
labels = ['type-bug', 'library']
title = 'argparse: subparsers, argument abbreviations and ambiguous option'
updated_at = <Date 2014-08-07.22:47:31.748>
user = 'https://bugs.python.org/jakub'
```
bugs.python.org fields:
```python
activity = <Date 2014-08-07.22:47:31.748>
actor = 'paul.j3'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2012-03-18.20:27:59.700>
creator = 'jakub'
dependencies = []
files = ['24928', '24945', '26466', '31901']
hgrepos = []
issue_num = 14365
keywords = ['patch']
message_count = 14.0
messages = ['156272', '156279', '156280', '156290', '156302', '156304', '156306', '156352', '166059', '198456', '198507', '198508', '198563', '225044']
nosy_count = 5.0
nosy_names = ['bethard', 'eric.araujo', 'tshepang', 'paul.j3', 'jakub']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'test needed'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue14365'
versions = ['Python 2.7', 'Python 3.2', 'Python 3.3']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124631
* gh-124759
* gh-124760
<!-- /gh-linked-prs -->
| 3f27153e077d7e9448e2f081275931968b40cc74 | 95e92ef6c74e973ea13d15180190d0fa2af82fbf |
python/cpython | python__cpython-124782 | # argparse allows nargs>1 for positional arguments but doesn't allow metavar to be a tuple
BPO | [14074](https://bugs.python.org/issue14074)
--- | :---
Nosy | @rhettinger, @cykerway, @shihai1991, @iritkatriel
PRs | <li>python/cpython#10847</li>
Files | <li>[issue14074.patch](https://bugs.python.org/file31042/issue14074.patch "Uploaded as text/plain at 2013-07-26.20:20:49 by paul.j3")</li><li>[issue14074_1.patch](https://bugs.python.org/file35049/issue14074_1.patch "Uploaded as text/plain at 2014-04-27.06:24:18 by paul.j3")</li><li>[14074.patch](https://bugs.python.org/file47965/14074.patch "Uploaded as text/plain at 2018-12-01.13:50:49 by @cykerway"): lightweight patch</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 2012-02-21.17:38:38.183>
labels = ['type-bug', 'library', '3.9', '3.10', '3.11']
title = "argparse allows nargs>1 for positional arguments but doesn't allow metavar to be a tuple"
updated_at = <Date 2021-11-26.23:42:00.635>
user = 'https://bugs.python.org/tshepang'
```
bugs.python.org fields:
```python
activity = <Date 2021-11-26.23:42:00.635>
actor = 'iritkatriel'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2012-02-21.17:38:38.183>
creator = 'tshepang'
dependencies = []
files = ['31042', '35049', '47965']
hgrepos = []
issue_num = 14074
keywords = ['patch']
message_count = 13.0
messages = ['153884', '154236', '193737', '217184', '217240', '286227', '330854', '360841', '361154', '361184', '361215', '361336', '407109']
nosy_count = 8.0
nosy_names = ['rhettinger', 'bethard', 'tshepang', 'paul.j3', 'vvas', 'cykerway', 'shihai1991', 'iritkatriel']
pr_nums = ['10847']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue14074'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124782
* gh-124881
* gh-124882
<!-- /gh-linked-prs -->
| 9b31a2d83fa7cb0fe4d75ce7cf6a2c9ea2ce0728 | 9ce90206b7a4649600218cf0bd4826db79c9a312 |
python/cpython | python__cpython-137415 | # disallow the "surrogatepass" handler for non utf-* encodings
BPO | [13916](https://bugs.python.org/issue13916)
--- | :---
Nosy | @loewis, @vstinner, @ezio-melotti, @serhiy-storchaka
Files | <li>[surrogatepass_non_utf.patch](https://bugs.python.org/file35257/surrogatepass_non_utf.patch "Uploaded as text/plain at 2014-05-15.10:40:08 by @serhiy-storchaka")</li><li>[surrogatepass_cp_utf8.patch](https://bugs.python.org/file35259/surrogatepass_cp_utf8.patch "Uploaded as text/plain at 2014-05-15.15:11:49 by @serhiy-storchaka")</li><li>[surrogatepass_cp65001.patch](https://bugs.python.org/file35262/surrogatepass_cp65001.patch "Uploaded as text/plain at 2014-05-16.12:01:45 by @serhiy-storchaka")</li><li>[cp_encoding_name.patch](https://bugs.python.org/file35264/cp_encoding_name.patch "Uploaded as text/plain at 2014-05-16.12:54:45 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 = 'https://github.com/vstinner'
closed_at = None
created_at = <Date 2012-01-31.23:51:10.468>
labels = ['type-feature', 'expert-unicode']
title = 'disallow the "surrogatepass" handler for non utf-* encodings'
updated_at = <Date 2014-08-17.15:19:53.801>
user = 'https://bugs.python.org/kennyluck'
```
bugs.python.org fields:
```python
activity = <Date 2014-08-17.15:19:53.801>
actor = 'serhiy.storchaka'
assignee = 'vstinner'
closed = False
closed_date = None
closer = None
components = ['Unicode']
creation = <Date 2012-01-31.23:51:10.468>
creator = 'kennyluck'
dependencies = []
files = ['35257', '35259', '35262', '35264']
hgrepos = []
issue_num = 13916
keywords = ['patch']
message_count = 20.0
messages = ['152416', '159520', '159525', '159528', '218597', '218600', '218601', '218602', '218603', '218605', '218611', '218612', '218613', '218615', '218617', '218655', '218658', '218659', '218740', '225448']
nosy_count = 6.0
nosy_names = ['loewis', 'vstinner', 'ezio.melotti', 'python-dev', 'kennyluck', 'serhiy.storchaka']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue13916'
versions = ['Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-137415
* gh-137460
* gh-137461
<!-- /gh-linked-prs -->
| ce1b747ff68754635b7b12870dfc527184ee3b39 | c17f378c0efb67afb245fe2ef9e7dd2272541ff9 |
python/cpython | python__cpython-124227 | # Summary tables for argparse add_argument options
BPO | [13850](https://bugs.python.org/issue13850)
--- | :---
Nosy | @rhettinger, @ncoghlan, @ezio-melotti, @merwok, @bitdancer, @masklinn, @berkerpeksag, @matrixise
PRs | <li>python/cpython#12070</li>
Files | <li>[argparse-actions-matrix](https://bugs.python.org/file25018/argparse-actions-matrix "Uploaded as text/plain at 2012-03-25.17:21:50 by @masklinn"): matrix of actions for add_argument parameters</li><li>[argparse-actions-matrix-v2](https://bugs.python.org/file38917/argparse-actions-matrix-v2 "Uploaded as text/plain at 2015-04-13.14:56:13 by @matrixise")</li><li>[patch13850v0.patch](https://bugs.python.org/file38966/patch13850v0.patch "Uploaded as text/plain at 2015-04-13.21:07:23 by ttz"): first version of patch</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 2012-01-24.05:54:57.629>
labels = ['3.8', 'type-feature', '3.7', 'docs']
title = 'Summary tables for argparse add_argument options'
updated_at = <Date 2019-03-24.06:00:34.485>
user = 'https://github.com/ncoghlan'
```
bugs.python.org fields:
```python
activity = <Date 2019-03-24.06:00:34.485>
actor = 'matrixise'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2012-01-24.05:54:57.629>
creator = 'ncoghlan'
dependencies = []
files = ['25018', '38917', '38966']
hgrepos = []
issue_num = 13850
keywords = ['patch']
message_count = 22.0
messages = ['151880', '151881', '151889', '151891', '151895', '151918', '151926', '151928', '151930', '156760', '156762', '159565', '223250', '240616', '240617', '240752', '240816', '240817', '336768', '336805', '336814', '338719']
nosy_count = 12.0
nosy_names = ['rhettinger', 'ncoghlan', 'bethard', 'ezio.melotti', 'eric.araujo', 'r.david.murray', 'xmorel', 'docs@python', 'tshepang', 'berker.peksag', 'matrixise', 'ttz']
pr_nums = ['12070']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue13850'
versions = ['Python 2.7', 'Python 3.7', 'Python 3.8']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124227
<!-- /gh-linked-prs -->
| 4e2fb7bdf5e1b2eddeb29b776820cfa2017a673f | 9968caa0cc8a4d07595f0e0abe5f28ba9b6f7a96 |
python/cpython | python__cpython-113649 | # argparse.FileType opens a file and never closes it
BPO | [13824](https://bugs.python.org/issue13824)
--- | :---
Nosy | @merwok, @mitar, @matrixise, @MojoVampire, @remilapeyre, @Septatrix
Files | <li>[patch_3.diff](https://bugs.python.org/file31852/patch_3.diff "Uploaded as text/plain at 2013-09-23.20:26:03 by paul.j3")</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 2012-01-19.12:25:39.321>
labels = ['type-bug', 'library']
title = 'argparse.FileType opens a file and never closes it'
updated_at = <Date 2021-07-25.09:27:11.812>
user = 'https://bugs.python.org/DavidLayton'
```
bugs.python.org fields:
```python
activity = <Date 2021-07-25.09:27:11.812>
actor = 'Nils Kattenbeck'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2012-01-19.12:25:39.321>
creator = 'David.Layton'
dependencies = []
files = ['31852']
hgrepos = []
issue_num = 13824
keywords = ['patch']
message_count = 15.0
messages = ['151615', '152518', '152519', '152530', '166068', '198336', '198376', '215298', '341670', '341761', '341764', '341852', '342153', '342503', '398184']
nosy_count = 13.0
nosy_names = ['bethard', 'eric.araujo', 'mitar', 'Paolo.Elvati', 'manveru', 'Stefan.Pfeiffer', 'paul.j3', 'David.Layton', 'matrixise', 'josh.r', 'remi.lapeyre', 'sebix', 'Nils Kattenbeck']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue13824'
versions = ['Python 2.7']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-113649
* gh-124664
* gh-125871
<!-- /gh-linked-prs -->
| b3d2427f2280fa8dae3515036c518d74ba43ebd1 | a8629816c6c0e6770248a60529fd7c9ba08aad55 |
python/cpython | python__cpython-103928 | # Increase test coverage for pstats.py
BPO | [13670](https://bugs.python.org/issue13670)
--- | :---
Nosy | @birkenfeld, @briancurtin, @iritkatriel
Files | <li>[test_pstats.diff](https://bugs.python.org/file24098/test_pstats.diff "Uploaded as text/plain at 2011-12-28.14:13:27 by andrea.crotti")</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 2011-12-28.14:13:28.618>
labels = ['easy', 'type-feature', 'tests']
title = 'Increase test coverage for pstats.py'
updated_at = <Date 2022-03-22.21:55:07.934>
user = 'https://bugs.python.org/andreacrotti'
```
bugs.python.org fields:
```python
activity = <Date 2022-03-22.21:55:07.934>
actor = 'iritkatriel'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Tests']
creation = <Date 2011-12-28.14:13:28.618>
creator = 'andrea.crotti'
dependencies = []
files = ['24098']
hgrepos = []
issue_num = 13670
keywords = ['easy', 'newcomer friendly']
message_count = 6.0
messages = ['150290', '150291', '150292', '221790', '338076', '415821']
nosy_count = 4.0
nosy_names = ['georg.brandl', 'brian.curtin', 'andrea.crotti', 'iritkatriel']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue13670'
versions = ['Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-103928
* gh-111447
<!-- /gh-linked-prs -->
| af449638b61438121c26f911295eec559cf68406 | 19f3c52347bf76f55995ec7272de0bb68c68f00a |
python/cpython | python__cpython-130290 | # pdb shows code from wrong module
BPO | [13328](https://bugs.python.org/issue13328)
--- | :---
Nosy | @birkenfeld, @ncoghlan, @meadori, @xdegaye, @akheron
Files | <li>[pdb.diff](https://bugs.python.org/file23601/pdb.diff "Uploaded as text/plain at 2011-11-03.00:03:16 by yak")</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 2011-11-03.00:03:17.072>
labels = ['type-bug']
title = 'pdb shows code from wrong module'
updated_at = <Date 2020-01-24.23:30:40.025>
user = 'https://bugs.python.org/yak'
```
bugs.python.org fields:
```python
activity = <Date 2020-01-24.23:30:40.025>
actor = 'brett.cannon'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2011-11-03.00:03:17.072>
creator = 'yak'
dependencies = []
files = ['23601']
hgrepos = []
issue_num = 13328
keywords = ['patch']
message_count = 2.0
messages = ['146885', '146886']
nosy_count = 6.0
nosy_names = ['georg.brandl', 'ncoghlan', 'meador.inge', 'yak', 'xdegaye', 'petri.lehtinen']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue13328'
versions = ['Python 2.7']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-130290
<!-- /gh-linked-prs -->
| ee337bea01beb3da6dccfe1b48db9a4c891b05a1 | c718c6be0f82af5eb0e57615ce323242155ff014 |
python/cpython | python__cpython-133113 | # Getting a buffer from a Unicode array uses invalid format
BPO | [13072](https://bugs.python.org/issue13072)
--- | :---
Nosy | @loewis, @birkenfeld, @mdickinson, @ncoghlan, @pitrou, @vstinner, @skrah, @meadori
Files | <li>[array_revert_pep393.patch](https://bugs.python.org/file26646/array_revert_pep393.patch "Uploaded as text/plain at 2012-08-01.10:19:43 by @vstinner")</li><li>[array_revert_pep393-2.patch](https://bugs.python.org/file26647/array_revert_pep393-2.patch "Uploaded as text/plain at 2012-08-01.12:45:07 by @vstinner")</li><li>[array_unicode_format.patch](https://bugs.python.org/file26704/array_unicode_format.patch "Uploaded as text/plain at 2012-08-05.23:05:25 by @vstinner")</li><li>[array_deprecate_u.diff](https://bugs.python.org/file26892/array_deprecate_u.diff "Uploaded as text/plain at 2012-08-19.11:26:32 by @skrah")</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/vstinner'
closed_at = <Date 2012-08-24.18:22:37.401>
created_at = <Date 2011-09-30.00:09:50.065>
labels = ['type-bug', 'library', 'release-blocker']
title = 'Getting a buffer from a Unicode array uses invalid format'
updated_at = <Date 2012-08-24.18:22:37.400>
user = 'https://github.com/vstinner'
```
bugs.python.org fields:
```python
activity = <Date 2012-08-24.18:22:37.400>
actor = 'skrah'
assignee = 'vstinner'
closed = True
closed_date = <Date 2012-08-24.18:22:37.401>
closer = 'skrah'
components = ['Library (Lib)']
creation = <Date 2011-09-30.00:09:50.065>
creator = 'vstinner'
dependencies = []
files = ['26646', '26647', '26704', '26892']
hgrepos = []
issue_num = 13072
keywords = ['patch']
message_count = 45.0
messages = ['144658', '144812', '144814', '144817', '144818', '158381', '158892', '167091', '167109', '167112', '167119', '167122', '167165', '167173', '167520', '167521', '167522', '167540', '167545', '167546', '167547', '167549', '167551', '167561', '167566', '167571', '167673', '167702', '167703', '167708', '167732', '167936', '167947', '167997', '168005', '168369', '168373', '168558', '168561', '168567', '168571', '168575', '169026', '169063', '169065']
nosy_count = 10.0
nosy_names = ['loewis', 'georg.brandl', 'mark.dickinson', 'ncoghlan', 'pitrou', 'vstinner', 'Arfrever', 'skrah', 'meador.inge', 'python-dev']
pr_nums = []
priority = 'release blocker'
resolution = 'fixed'
stage = 'resolved'
status = 'closed'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue13072'
versions = ['Python 3.3']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-133113
* gh-133147
<!-- /gh-linked-prs -->
| 59ff42155aa976c0b7db6fdb3dff9c68e833bbaa | 0c26dbd16e9dd71a52d3ebd43d692f0cd88a3a37 |
python/cpython | python__cpython-109499 | # filecmp.dircmp does not allow non-shallow comparisons
BPO | [12932](https://bugs.python.org/issue12932)
--- | :---
Nosy | @terryjreedy, @rbtcollins, @merwok, @regebro, @mitar, @cjerdonek
Files | <li>[issue12932.diff](https://bugs.python.org/file30589/issue12932.diff "Uploaded as text/plain at 2013-06-14.21:24:16 by planet36"): Add input parameter 'shallow' to dircmp.</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 2011-09-07.16:01:35.750>
labels = ['type-feature', 'library']
title = 'filecmp.dircmp does not allow non-shallow comparisons'
updated_at = <Date 2018-01-03.09:42:28.161>
user = 'https://bugs.python.org/kesmit'
```
bugs.python.org fields:
```python
activity = <Date 2018-01-03.09:42:28.161>
actor = 'mitar'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2011-09-07.16:01:35.750>
creator = 'kesmit'
dependencies = []
files = ['30589']
hgrepos = []
issue_num = 12932
keywords = ['patch']
message_count = 9.0
messages = ['143692', '156736', '160966', '161823', '164648', '166246', '191154', '247695', '247696']
nosy_count = 8.0
nosy_names = ['terry.reedy', 'rbcollins', 'eric.araujo', 'lregebro', 'mitar', 'chris.jerdonek', 'planet36', 'kesmit']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue12932'
versions = ['Python 3.6']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-109499
* gh-121767
* gh-121777
<!-- /gh-linked-prs -->
| 60743a9a7ee3c3c16a61ff6715e8d170237b5458 | ea1b1c579f600cc85d145c60862b2e6b98701b24 |
python/cpython | python__cpython-111197 | # inspect.getsource only works for objects loaded from files, not interactive session
BPO | [12920](https://bugs.python.org/issue12920)
--- | :---
Nosy | @terryjreedy, @ned-deily, @merwok, @bitdancer, @PCManticore, @Naddiseo, @BlckKnght, @native-api, @vmsp, @Ark-kun
<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 2011-09-06.18:37:57.848>
labels = ['interpreter-core', '3.8', 'expert-IDLE', 'type-bug', '3.7']
title = 'inspect.getsource only works for objects loaded from files, not interactive session'
updated_at = <Date 2020-11-30.02:13:01.074>
user = 'https://github.com/PCManticore'
```
bugs.python.org fields:
```python
activity = <Date 2020-11-30.02:13:01.074>
actor = 'Ark-kun'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['IDLE', 'Interpreter Core']
creation = <Date 2011-09-06.18:37:57.848>
creator = 'Claudiu.Popa'
dependencies = []
files = []
hgrepos = []
issue_num = 12920
keywords = []
message_count = 15.0
messages = ['143645', '143773', '143790', '143831', '185179', '245714', '245721', '245723', '252846', '265815', '297768', '297797', '328836', '331659', '382107']
nosy_count = 12.0
nosy_names = ['terry.reedy', 'ned.deily', 'eric.araujo', 'r.david.murray', 'Claudiu.Popa', 'Naddiseo', 'Steven.Barker', 'Ivan.Pozdeev', 'zorceta', 'nikitakit', 'vmsp', 'Ark-kun']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue12920'
versions = ['Python 3.7', 'Python 3.8']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-111197
<!-- /gh-linked-prs -->
| 3211d5793f4437f86cd2fa11e86b4fd958932881 | 8b44f3c54bb4f99445c108bc0240c458adae9c6f |
python/cpython | python__cpython-134148 | # ctypes: clearly document how structure bit fields are allocated
BPO | [12880](https://bugs.python.org/issue12880)
--- | :---
Nosy | @terryjreedy, @meadori
Files | <li>[bitfield_doc.diff](https://bugs.python.org/file23275/bitfield_doc.diff "Uploaded as text/plain at 2011-09-30.17:19:10 by vladris")</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 2011-09-02.02:34:11.223>
labels = ['ctypes', 'type-feature', 'docs']
title = 'ctypes: clearly document how structure bit fields are allocated'
updated_at = <Date 2011-10-04.23:51:15.205>
user = 'https://github.com/meadori'
```
bugs.python.org fields:
```python
activity = <Date 2011-10-04.23:51:15.205>
actor = 'terry.reedy'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation', 'ctypes']
creation = <Date 2011-09-02.02:34:11.223>
creator = 'meador.inge'
dependencies = []
files = ['23275']
hgrepos = []
issue_num = 12880
keywords = ['patch']
message_count = 10.0
messages = ['143369', '143846', '144696', '144854', '144855', '144894', '144911', '144913', '144919', '144932']
nosy_count = 4.0
nosy_names = ['terry.reedy', 'meador.inge', 'docs@python', 'vladris']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue12880'
versions = ['Python 3.3']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-134148
* gh-135216
<!-- /gh-linked-prs -->
| b22b964a5c245e13ae0439c5efbb8984acf607ab | 1adca08d658ee2d520f3193960eaf3ae2ead1cef |
python/cpython | python__cpython-101062 | # __setstate__ is called for false values
BPO | [12290](https://bugs.python.org/issue12290)
--- | :---
Nosy | @birkenfeld, @abalkin, @pitrou, @avassalotti, @bitdancer, @eltoder, @serhiy-storchaka, @iritkatriel
Files | <li>[setstate.diff](https://bugs.python.org/file22375/setstate.diff "Uploaded as text/plain at 2011-06-16.02:57:47 by @eltoder")</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 2011-06-09.02:20:57.341>
labels = ['3.11', 'type-bug', '3.9', '3.10', 'docs']
title = '__setstate__ is called for false values'
updated_at = <Date 2021-12-05.23:10:56.438>
user = 'https://github.com/eltoder'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-05.23:10:56.438>
actor = 'iritkatriel'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2011-06-09.02:20:57.341>
creator = 'eltoder'
dependencies = []
files = ['22375']
hgrepos = []
issue_num = 12290
keywords = ['patch']
message_count = 6.0
messages = ['137935', '137936', '138410', '138573', '265087', '407755']
nosy_count = 9.0
nosy_names = ['georg.brandl', 'belopolsky', 'pitrou', 'alexandre.vassalotti', 'r.david.murray', 'docs@python', 'eltoder', 'serhiy.storchaka', 'iritkatriel']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue12290'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-101062
* gh-115597
* gh-115598
<!-- /gh-linked-prs -->
| d5a30a1777f04523c7b151b894e999f5714d8e96 | debb1386be024181c8c003c5cbf61608024aee09 |
python/cpython | python__cpython-116942 | # [doc] clarify documentation of nonlocal
BPO | [12165](https://bugs.python.org/issue12165)
--- | :---
Nosy | @rhettinger, @terryjreedy, @merwok, @eryksun, @nanjekyejoannah, @iritkatriel, @slateny
PRs | <li>python/cpython#31551</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 2011-05-24.05:57:36.664>
labels = ['easy', 'type-bug', '3.9', '3.10', '3.11', 'docs']
title = '[doc] clarify documentation of nonlocal'
updated_at = <Date 2022-02-25.06:22:06.473>
user = 'https://bugs.python.org/LukasPetru'
```
bugs.python.org fields:
```python
activity = <Date 2022-02-25.06:22:06.473>
actor = 'eryksun'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2011-05-24.05:57:36.664>
creator = 'Lukas.Petru'
dependencies = []
files = []
hgrepos = []
issue_num = 12165
keywords = ['patch', 'easy']
message_count = 8.0
messages = ['136722', '136766', '136834', '136877', '136882', '408404', '413956', '413966']
nosy_count = 8.0
nosy_names = ['rhettinger', 'terry.reedy', 'eric.araujo', 'Lukas.Petru', 'eryksun', 'nanjekyejoannah', 'iritkatriel', 'slateny']
pr_nums = ['31551']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue12165'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-116942
* gh-117023
<!-- /gh-linked-prs -->
| 025ef7a5f7b424fba8713e448244b952bf897df3 | b85572c47dc7a8c65fc366a87a3660fc7a3ed244 |
python/cpython | python__cpython-104694 | # Doc: remove errors about mixed-type comparisons.
BPO | [12067](https://bugs.python.org/issue12067)
--- | :---
Nosy | @rhettinger, @terryjreedy, @mdickinson, @benjaminp, @ezio-melotti, @stevendaprano, @bitdancer, @cjerdonek, @berkerpeksag, @vadmium, @andy-maier, @csabella, @humbdrag
PRs | <li>python/cpython#3199</li><li>python/cpython#30624</li><li>python/cpython#30625</li><li>python/cpython#30651</li><li>python/cpython#30667</li>
Dependencies | <li>bpo-29321: Wrong documentation (Language Ref) for unicode and str comparison</li>
Files | <li>[issue12067-expressions.diff](https://bugs.python.org/file27256/issue12067-expressions.diff "Uploaded as text/plain at 2012-09-22.05:41:58 by mikehoy")</li><li>[issue12067-expressions_v2.diff](https://bugs.python.org/file27442/issue12067-expressions_v2.diff "Uploaded as text/plain at 2012-10-05.21:20:51 by mikehoy"): Minor wording changes.</li><li>[issue12067-expressions_v3.diff](https://bugs.python.org/file35843/issue12067-expressions_v3.diff "Uploaded as text/plain at 2014-07-03.19:34:31 by @andy-maier"): Andy's version of the patch for the 3.5 tip</li><li>[issue12067-expressions_v4.diff](https://bugs.python.org/file35845/issue12067-expressions_v4.diff "Uploaded as text/plain at 2014-07-04.01:15:09 by @andy-maier"): Updates (see message), for v3.5 tip</li><li>[issue12067-expressions-py34_v5.diff](https://bugs.python.org/file35850/issue12067-expressions-py34_v5.diff "Uploaded as text/plain at 2014-07-04.10:47:58 by @andy-maier"): v5 of the patch, targeting 3.4.</li><li>[issue12067-expressions-py34_v6.diff](https://bugs.python.org/file35851/issue12067-expressions-py34_v6.diff "Uploaded as text/plain at 2014-07-04.10:57:28 by @andy-maier"): v6 (same as v5, just now created properly), targeting 3.4.</li><li>[issue12067-expressions-py34_v7.diff](https://bugs.python.org/file35853/issue12067-expressions-py34_v7.diff "Uploaded as text/plain at 2014-07-04.11:27:29 by @andy-maier"): v7 (same as v5, just now created properly), targeting 3.4.</li><li>[issue12067-expressions-py34_v8.diff](https://bugs.python.org/file35924/issue12067-expressions-py34_v8.diff "Uploaded as text/plain at 2014-07-11.14:23:01 by @andy-maier"): v8 (improved doc and added tests), targeting 3.4.</li><li>[try_eq.py](https://bugs.python.org/file35938/try_eq.py "Uploaded as text/plain at 2014-07-13.14:00:07 by @andy-maier"): Test program for py34 for equality of collections</li><li>[try_eq.out](https://bugs.python.org/file35939/try_eq.out "Uploaded as text/plain at 2014-07-13.14:00:53 by @andy-maier"): Output of try_eq.py with cpython 3.4.1</li><li>[issue12067-expressions-py34_v9.diff](https://bugs.python.org/file35971/issue12067-expressions-py34_v9.diff "Uploaded as text/plain at 2014-07-16.14:56:11 by @andy-maier"): v9 of the patch, targeting 3.4.</li><li>[issue12067-expressions-py34_v10.diff](https://bugs.python.org/file36896/issue12067-expressions-py34_v10.diff "Uploaded as text/plain at 2014-10-13.09:07:24 by @andy-maier"): v10 of the patch, targeting 3.4</li><li>[issue12067-expressions-py34_delta-v9-v10.diff](https://bugs.python.org/file36897/issue12067-expressions-py34_delta-v9-v10.diff "Uploaded as text/plain at 2014-10-13.11:46:17 by @andy-maier"): delta between v9 and v10 of the patch</li><li>[issue12067-expressions-py34_v11.diff](https://bugs.python.org/file36920/issue12067-expressions-py34_v11.diff "Uploaded as text/plain at 2014-10-14.18:17:11 by @andy-maier"): v11 of the patch, targeting 3.4</li><li>[issue12067-expressions-py34_v12.diff](https://bugs.python.org/file36978/issue12067-expressions-py34_v12.diff "Uploaded as text/plain at 2014-10-20.09:26:26 by @andy-maier"): v12 of the patch, targeting 3.4</li><li>[issue12067-expressions-py3.5_v13.diff](https://bugs.python.org/file38183/issue12067-expressions-py3.5_v13.diff "Uploaded as text/plain at 2015-02-20.11:00:06 by @vadmium")</li><li>[issue12067-expressions-py3.5_v14.diff](https://bugs.python.org/file38303/issue12067-expressions-py3.5_v14.diff "Uploaded as text/plain at 2015-03-02.18:05:07 by @andy-maier"): v14 of the patch, targeting 3.5 (default)</li><li>[issue12067-expressions-py3.6_v15.diff](https://bugs.python.org/file39970/issue12067-expressions-py3.6_v15.diff "Uploaded as text/plain at 2015-07-22.02:37:03 by @vadmium")</li><li>[issue12067-expressions-py3.6_v16.diff](https://bugs.python.org/file40052/issue12067-expressions-py3.6_v16.diff "Uploaded as text/plain at 2015-07-29.04:44:27 by @vadmium")</li><li>[expressions-py2.7.diff](https://bugs.python.org/file46372/expressions-py2.7.diff "Uploaded as text/plain at 2017-01-21.11:19:52 by @vadmium")</li><li>[expressions-py2.7_v17.diff](https://bugs.python.org/file46398/expressions-py2.7_v17.diff "Uploaded as text/plain at 2017-01-24.03:26:11 by @vadmium")</li><li>[expressions-py3.7_v17.diff](https://bugs.python.org/file46399/expressions-py3.7_v17.diff "Uploaded as text/plain at 2017-01-24.04:06:28 by @vadmium")</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 2011-05-12.21:59:33.279>
labels = ['easy', 'type-feature', 'tests', 'docs']
title = 'Doc: remove errors about mixed-type comparisons.'
updated_at = <Date 2022-01-26.02:09:04.532>
user = 'https://github.com/terryjreedy'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-26.02:09:04.532>
actor = 'terry.reedy'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation', 'Tests']
creation = <Date 2011-05-12.21:59:33.279>
creator = 'terry.reedy'
dependencies = ['29321']
files = ['27256', '27442', '35843', '35845', '35850', '35851', '35853', '35924', '35938', '35939', '35971', '36896', '36897', '36920', '36978', '38183', '38303', '39970', '40052', '46372', '46398', '46399']
hgrepos = []
issue_num = 12067
keywords = ['patch', 'easy']
message_count = 53.0
messages = ['135873', '135875', '135890', '148760', '148774', '170887', '170936', '170952', '170953', '170966', '171012', '172148', '183786', '222204', '222209', '222254', '222257', '222270', '222275', '222276', '222278', '222310', '222442', '222747', '222772', '222938', '223217', '226496', '226522', '226529', '228769', '229217', '229229', '229236', '229240', '229245', '229327', '229328', '229721', '236269', '237069', '247079', '247088', '247559', '251405', '251406', '285948', '286128', '286439', '295145', '295222', '300787', '411699']
nosy_count = 17.0
nosy_names = ['rhettinger', 'terry.reedy', 'mark.dickinson', 'benjamin.peterson', 'ezio.melotti', 'steven.daprano', 'r.david.murray', 'cvrebert', 'chris.jerdonek', 'docs@python', 'python-dev', 'berker.peksag', 'martin.panter', 'mikehoy', 'andymaier', 'cheryl.sabella', 'humbdrag']
pr_nums = ['3199', '30624', '30625', '30651', '30667']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue12067'
versions = ['Python 2.7', 'Python 3.4', 'Python 3.5', 'Python 3.6']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-104694
<!-- /gh-linked-prs -->
| 360e4b8fb19f34360093bc15ef9aad13115a6069 | a8add0ec5ef05c26e1641b8310b65ddd75c0fec3 |
python/cpython | python__cpython-94768 | # Add discussion of trailing backslash in raw string to tutorial
BPO | [11479](https://bugs.python.org/issue11479)
--- | :---
Nosy | @birkenfeld, @facundobatista, @ezio-melotti, @bitdancer, @iritkatriel, @dancinglightning
PRs | <li>python/cpython#27949</li>
Files | <li>[tutorial-raw-string.patch](https://bugs.python.org/file21097/tutorial-raw-string.patch "Uploaded as text/plain at 2011-03-13.03:10:02 by @bitdancer")</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 2011-03-13.03:10:02.668>
labels = ['easy', '3.9', '3.10', '3.11', 'type-feature', 'docs']
title = 'Add discussion of trailing backslash in raw string to tutorial'
updated_at = <Date 2021-08-25.15:52:29.825>
user = 'https://github.com/bitdancer'
```
bugs.python.org fields:
```python
activity = <Date 2021-08-25.15:52:29.825>
actor = 'dancinglightning'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2011-03-13.03:10:02.668>
creator = 'r.david.murray'
dependencies = []
files = ['21097']
hgrepos = []
issue_num = 11479
keywords = ['patch', 'easy']
message_count = 9.0
messages = ['130720', '130727', '130739', '130742', '130743', '130744', '130748', '227698', '399988']
nosy_count = 11.0
nosy_names = ['georg.brandl', 'facundobatista', 'QuantumTim', 'ezio.melotti', 'v+python', 'r.david.murray', 'eli.bendersky', 'docs@python', 'gwideman', 'iritkatriel', 'dancinglightning']
pr_nums = ['27949']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue11479'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-94768
* gh-100570
* gh-100571
<!-- /gh-linked-prs -->
| b95b1b3b25b0a93a22c7d58ac5bd5870e62070a8 | 5369bba8c594de7a643408550e19e1ff6df5178a |
python/cpython | python__cpython-105338 | # issue a warning when populating a CPython type dict with non-string keys
BPO | [11455](https://bugs.python.org/issue11455)
--- | :---
Nosy | @loewis, @Yhg1s, @ncoghlan, @pitrou, @vstinner, @alex, @voidspace, @briancurtin, @durban, @serhiy-storchaka, @iritkatriel
Files | <li>[issue11455.patch](https://bugs.python.org/file21072/issue11455.patch "Uploaded as text/plain at 2011-03-10.18:50:16 by @durban")</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/Yhg1s'
closed_at = None
created_at = <Date 2011-03-09.20:53:47.152>
labels = ['interpreter-core', 'type-feature', '3.11']
title = 'issue a warning when populating a CPython type dict with non-string keys'
updated_at = <Date 2021-12-02.09:24:17.831>
user = 'https://github.com/voidspace'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-02.09:24:17.831>
actor = 'serhiy.storchaka'
assignee = 'twouters'
closed = False
closed_date = None
closer = None
components = ['Interpreter Core']
creation = <Date 2011-03-09.20:53:47.152>
creator = 'michael.foord'
dependencies = []
files = ['21072']
hgrepos = []
issue_num = 11455
keywords = ['patch']
message_count = 16.0
messages = ['130462', '130464', '130465', '130484', '130510', '130512', '130520', '130521', '130522', '130523', '131974', '131975', '132032', '222753', '407472', '407520']
nosy_count = 12.0
nosy_names = ['loewis', 'twouters', 'ncoghlan', 'pitrou', 'vstinner', 'stutzbach', 'alex', 'michael.foord', 'brian.curtin', 'daniel.urban', 'serhiy.storchaka', 'iritkatriel']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue11455'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-105338
<!-- /gh-linked-prs -->
| f7c05d7ad3075a1dbeed86b6b12903032e4afba6 | 3bb6912d8832e6e0a98c74de360dc1b23906c4b3 |
python/cpython | python__cpython-122542 | # Add support for IMAP IDLE in `imaplib`
BPO | [11245](https://bugs.python.org/issue11245)
--- | :---
Nosy | @warsaw, @ericvsmith, @bitdancer, @vadmium, @mitya57, @soltysh, @ankostis, @jdek
Dependencies | <li>bpo-18921: In imaplib, cached capabilities may be out of date after login</li>
Files | <li>[imapidle.patch](https://bugs.python.org/file27400/imapidle.patch "Uploaded as text/plain at 2012-10-03.13:59:31 by nafur")</li><li>[imapidle.patch](https://bugs.python.org/file37555/imapidle.patch "Uploaded as text/plain at 2014-12-29.15:26:16 by nafur"): New patch</li><li>[0001-Add-IDLE-support-to-imaplib.patch](https://bugs.python.org/file48790/0001-Add-IDLE-support-to-imaplib.patch "Uploaded as text/plain at 2019-12-19.12:58:09 by @jdek"): IMAP IDLE patch for imaplib</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 2011-02-18.20:36:10.487>
labels = ['type-feature', 'library', 'expert-email', '3.9']
title = 'Implementation of IMAP IDLE in imaplib?'
updated_at = <Date 2019-12-19.12:58:09.754>
user = 'https://bugs.python.org/ShayRojansky'
```
bugs.python.org fields:
```python
activity = <Date 2019-12-19.12:58:09.754>
actor = 'jdek'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)', 'email']
creation = <Date 2011-02-18.20:36:10.487>
creator = 'Shay.Rojansky'
dependencies = ['18921']
files = ['27400', '37555', '48790']
hgrepos = []
issue_num = 11245
keywords = ['patch']
message_count = 24.0
messages = ['128814', '129405', '129407', '171885', '171889', '172365', '172383', '202149', '202342', '202345', '233176', '235972', '236167', '245204', '245246', '245249', '245252', '245253', '245255', '245284', '246235', '246236', '293222', '358678']
nosy_count = 17.0
nosy_names = ['barry', 'pierslauder', 'eric.smith', 'piers', 'r.david.murray', 'Shay.Rojansky', 'martin.panter', 'mitya57', 'maciej.szulik', 'nafur', 'dveeden', 'Malina', 'F.Malina', 'ankostis', 'equaeghe', 'ohreally', 'jdek']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'test needed'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue11245'
versions = ['Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-122542
<!-- /gh-linked-prs -->
| 0fef47e5bbd167c21eb4f3cbd885cf61270014e7 | 43e024021392c8c70e5a56cdf7428ced45d73688 |
python/cpython | python__cpython-104562 | # [doc] Write argparse i18n howto
BPO | [10529](https://bugs.python.org/issue10529)
--- | :---
Nosy | @rhettinger, @jwilk, @merwok
<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 2010-11-25.12:28:07.697>
labels = ['type-feature', '3.8', '3.9', '3.10', 'docs']
title = '[doc] Write argparse i18n howto'
updated_at = <Date 2020-11-07.20:23:43.051>
user = 'https://github.com/merwok'
```
bugs.python.org fields:
```python
activity = <Date 2020-11-07.20:23:43.051>
actor = 'rhettinger'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2010-11-25.12:28:07.697>
creator = 'eric.araujo'
dependencies = []
files = []
hgrepos = []
issue_num = 10529
keywords = []
message_count = 3.0
messages = ['122358', '122359', '380524']
nosy_count = 6.0
nosy_names = ['rhettinger', 'bethard', 'jwilk', 'eric.araujo', 'docs@python', 'tshepang']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue10529'
versions = ['Python 3.8', 'Python 3.9', 'Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-104562
* gh-107101
* gh-107102
<!-- /gh-linked-prs -->
| dcd7acb04a719d8d30c8d03b80d3d48b6c035e14 | 680f3e1591e406deb04ba44adbef9a5a02395f80 |
python/cpython | python__cpython-124495 | # argparse: Problem with defaults for variable nargs when using choices
BPO | [9625](https://bugs.python.org/issue9625)
--- | :---
Nosy | @rhettinger, @macfreek, @ericvsmith, @merwok, @cedk, @berkerpeksag, @lanzz, @jameshcorbett, @zumoshi
Files | <li>[issue9625.diff](https://bugs.python.org/file26471/issue9625.diff "Uploaded as text/plain at 2012-07-21.22:19:22 by bethard")</li><li>[issue9625.patch](https://bugs.python.org/file27858/issue9625.patch "Uploaded as text/plain at 2012-11-03.16:00:08 by @cedk")</li><li>[issue9625_1.patch](https://bugs.python.org/file30709/issue9625_1.patch "Uploaded as text/plain at 2013-06-27.06:33:20 by paul.j3")</li><li>[issue9625_2.patch](https://bugs.python.org/file30762/issue9625_2.patch "Uploaded as text/plain at 2013-07-03.21:36:34 by paul.j3")</li><li>[notes.txt](https://bugs.python.org/file35128/notes.txt "Uploaded as text/plain at 2014-05-02.02:04:05 by paul.j3")</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 2010-08-17.09:19:03.116>
labels = ['type-bug', 'library', '3.9']
title = 'argparse: Problem with defaults for variable nargs when using choices'
updated_at = <Date 2020-12-21.23:36:46.142>
user = 'https://bugs.python.org/thesociable'
```
bugs.python.org fields:
```python
activity = <Date 2020-12-21.23:36:46.142>
actor = 'rhettinger'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2010-08-17.09:19:03.116>
creator = 'thesociable'
dependencies = []
files = ['26471', '27858', '30709', '30762', '35128']
hgrepos = []
issue_num = 9625
keywords = ['patch']
message_count = 17.0
messages = ['114108', '151780', '151807', '151857', '166086', '174642', '191224', '191932', '192258', '192716', '217677', '285865', '347742', '356859', '357064', '374581', '374592']
nosy_count = 16.0
nosy_names = ['rhettinger', 'bethard', 'macfreek', 'eric.smith', 'eric.araujo', 'ced', 'Sworddragon', 'thesociable', 'regis', 'berker.peksag', 'paul.j3', 'sebix', 'lanzz', 'Jan Huta\xc5\x99', 'jameshcorbett', 'zumoshi']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue9625'
versions = ['Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124495
<!-- /gh-linked-prs -->
| dac4ec52866e4068f3ac33b4da1e1a1fe6fc2cba | 61180446eee2aef07b042c7e8892c45afabd1499 |
python/cpython | python__cpython-124275 | # argparse: Allow the use of -- to break out of nargs and into subparser
BPO | [9571](https://bugs.python.org/issue9571)
--- | :---
Nosy | @merwok, @bitdancer
Files | <li>[issue9571_1.patch](https://bugs.python.org/file35886/issue9571_1.patch "Uploaded as text/plain at 2014-07-07.17:12:55 by paul.j3")</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 2010-08-11.19:21:25.755>
labels = ['type-feature', 'library']
title = 'argparse: Allow the use of -- to break out of nargs and into subparser'
updated_at = <Date 2014-07-07.17:12:55.826>
user = 'https://bugs.python.org/elsdoerfer'
```
bugs.python.org fields:
```python
activity = <Date 2014-07-07.17:12:55.826>
actor = 'paul.j3'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2010-08-11.19:21:25.755>
creator = 'elsdoerfer'
dependencies = []
files = ['35886']
hgrepos = []
issue_num = 9571
keywords = ['patch']
message_count = 5.0
messages = ['113616', '113647', '113668', '222427', '222478']
nosy_count = 5.0
nosy_names = ['bethard', 'eric.araujo', 'r.david.murray', 'elsdoerfer', 'paul.j3']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue9571'
versions = ['Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124275
* gh-124420
* gh-125073
<!-- /gh-linked-prs -->
| c578271366176a1d1b0941897efefb6e4d6508b4 | 3094cd17b0e5ba69309c54964744c797a70aa11b |
python/cpython | python__cpython-113363 | # plistlib should create non-naïve datetime objects
BPO | [9256](https://bugs.python.org/issue9256)
--- | :---
Nosy | @ronaldoussoren, @abalkin, @ned-deily, @bitdancer, @hynek
Files | <li>[plistdt.py](https://bugs.python.org/file17993/plistdt.py "Uploaded as text/plain at 2010-07-14.01:34:01 by wiml"): a simple test case</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/ronaldoussoren'
closed_at = None
created_at = <Date 2010-07-14.01:34:02.327>
labels = ['OS-mac', 'type-bug', 'library']
title = 'plistlib should create non-na\xc3\xafve datetime objects'
updated_at = <Date 2014-06-30.00:02:22.179>
user = 'https://bugs.python.org/wiml'
```
bugs.python.org fields:
```python
activity = <Date 2014-06-30.00:02:22.179>
actor = 'belopolsky'
assignee = 'ronaldoussoren'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)', 'macOS']
creation = <Date 2010-07-14.01:34:02.327>
creator = 'wiml'
dependencies = []
files = ['17993']
hgrepos = []
issue_num = 9256
keywords = []
message_count = 3.0
messages = ['110249', '110250', '162471']
nosy_count = 6.0
nosy_names = ['ronaldoussoren', 'belopolsky', 'ned.deily', 'r.david.murray', 'wiml', 'hynek']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue9256'
versions = ['Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-113363
* gh-113627
* gh-113645
<!-- /gh-linked-prs -->
| 8e4ff5c7885abb04a66d079499335c4d46106aff | b4b2cc101216ae1017898dfbe43c90da2fd0a308 |
python/cpython | python__cpython-136284 | # Write documentation for codecs.readbuffer_encode()
BPO | [8997](https://bugs.python.org/issue8997)
--- | :---
Nosy | @malemburg, @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 = 'https://github.com/malemburg'
closed_at = None
created_at = <Date 2010-06-14.19:18:38.899>
labels = ['expert-unicode', 'docs']
title = 'Write documentation for codecs.readbuffer_encode()'
updated_at = <Date 2019-03-15.23:23:07.650>
user = 'https://github.com/malemburg'
```
bugs.python.org fields:
```python
activity = <Date 2019-03-15.23:23:07.650>
actor = 'BreamoreBoy'
assignee = 'lemburg'
closed = False
closed_date = None
closer = None
components = ['Documentation', 'Unicode']
creation = <Date 2010-06-14.19:18:38.899>
creator = 'lemburg'
dependencies = []
files = []
hgrepos = []
issue_num = 8997
keywords = []
message_count = 2.0
messages = ['107809', '220847']
nosy_count = 3.0
nosy_names = ['lemburg', 'vstinner', 'docs@python']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue8997'
versions = ['Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-136284
* gh-136451
* gh-136452
<!-- /gh-linked-prs -->
| f1dcf3c7bf90961b8d5475154d3f28cfef0a054f | 301b29dd306030ad4b02909d822c49cc8e05ca7d |
python/cpython | python__cpython-124946 | # strptime(.., '%c') fails to parse output of strftime('%c', ..) in some locales
BPO | [8957](https://bugs.python.org/issue8957)
--- | :---
Nosy | @abalkin, @vstinner, @ezio-melotti
Dependencies | <li>bpo-8915: Use locale.nl_langinfo in _strptime</li>
Files | <li>[strptime-locale-bug.c](https://bugs.python.org/file17601/strptime-locale-bug.c "Uploaded as application/octet-stream at 2010-06-09.20:24:38 by @abalkin"): Working C code</li><li>[strptime-locale-bug.py](https://bugs.python.org/file17602/strptime-locale-bug.py "Uploaded as text/plain at 2010-06-09.20:25:05 by @abalkin"): Failing python code</li><li>[cfmt.py](https://bugs.python.org/file20358/cfmt.py "Uploaded as text/plain at 2011-01-12.00:08:40 by @abalkin")</li><li>[issue8957.py3k.1.patch](https://bugs.python.org/file20412/issue8957.py3k.1.patch "Uploaded as text/plain at 2011-01-15.07:20:49 by eli.bendersky")</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 2010-06-09.20:24:38.889>
labels = ['extension-modules', 'type-bug', '3.7']
title = "strptime(.., '%c') fails to parse output of strftime('%c', ..) in some locales"
updated_at = <Date 2016-09-26.21:29:29.654>
user = 'https://github.com/abalkin'
```
bugs.python.org fields:
```python
activity = <Date 2016-09-26.21:29:29.654>
actor = 'belopolsky'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Extension Modules']
creation = <Date 2010-06-09.20:24:38.889>
creator = 'belopolsky'
dependencies = ['8915']
files = ['17601', '17602', '20358', '20412']
hgrepos = []
issue_num = 8957
keywords = ['patch']
message_count = 18.0
messages = ['107413', '125966', '125968', '126043', '126045', '126055', '126057', '126059', '126084', '126235', '126313', '126316', '126339', '126340', '126345', '126347', '126358', '221924']
nosy_count = 4.0
nosy_names = ['belopolsky', 'vstinner', 'ezio.melotti', 'rpetrov']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue8957'
versions = ['Python 3.7']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-124946
* gh-125090
* gh-125091
* gh-125093
* gh-125369
* gh-125370
* gh-125406
* gh-125454
* gh-125469
* gh-125483
* gh-125785
* gh-125806
* gh-125807
* gh-135971
* gh-136019
* gh-136020
<!-- /gh-linked-prs -->
| c05f9dde8a12dfd63d3ade93da616042df2dc925 | dcd58c50844dae0d83517e88518a677914ea594b |
python/cpython | python__cpython-123069 | # Bug in InteractiveConsole /pickle
BPO | [8943](https://bugs.python.org/issue8943)
--- | :---
Nosy | @ncoghlan, @orsenthil, @fabioz, @avassalotti
Files | <li>[fast_test.py](https://bugs.python.org/file17589/fast_test.py "Uploaded as text/plain at 2010-06-08.16:24:20 by @fabioz"): Code showing the error.</li><li>[interative.py](https://bugs.python.org/file19734/interative.py "Uploaded as text/plain at 2010-11-21.10:47:09 by iuridiniz"): Another code showing the error</li><li>[backtrace-py3k-8943.txt](https://bugs.python.org/file19735/backtrace-py3k-8943.txt "Uploaded as text/plain at 2010-11-21.10:48:42 by iuridiniz"): preliminary gdb backtrace py3k pickle:save_global</li><li>[issue8943.diff](https://bugs.python.org/file26917/issue8943.diff "Uploaded as text/plain at 2012-08-20.07:18:32 by mjdorma"): hg diff Doc/library/code.rst > issue8943.diff</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 2010-06-08.16:24:21.604>
labels = ['3.8', 'type-bug', 'library', '3.9', '3.10']
title = 'Bug in InteractiveConsole /pickle'
updated_at = <Date 2020-10-28.14:13:37.445>
user = 'https://github.com/fabioz'
```
bugs.python.org fields:
```python
activity = <Date 2020-10-28.14:13:37.445>
actor = 'holdenweb'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2010-06-08.16:24:21.604>
creator = 'fabioz'
dependencies = []
files = ['17589', '19734', '19735', '26917']
hgrepos = []
issue_num = 8943
keywords = ['patch']
message_count = 7.0
messages = ['107328', '107905', '108871', '121898', '121899', '121905', '168631']
nosy_count = 6.0
nosy_names = ['ncoghlan', 'orsenthil', 'fabioz', 'alexandre.vassalotti', 'iuridiniz', 'mjdorma']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue8943'
versions = ['Python 3.8', 'Python 3.9', 'Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-123069
* gh-134328
* gh-134329
<!-- /gh-linked-prs -->
| a31bbc951a9d74cd7b9092555c101e51a2b9482b | 175ba3639fbc336912f429cf4de43b22e05fd6dc |
python/cpython | python__cpython-122003 | # Add support for IEEE 754 contexts to decimal module.
BPO | [8786](https://bugs.python.org/issue8786)
--- | :---
Nosy | @rhettinger, @terryjreedy, @facundobatista, @mdickinson, @tiran, @ezio-melotti, @skrah, @mmaker
Files | <li>[issue8786.patch](https://bugs.python.org/file27214/issue8786.patch "Uploaded as text/plain at 2012-09-18.07:53:42 by @mmaker")</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 2010-05-22.10:28:31.524>
labels = ['type-feature', 'library']
title = 'Add support for IEEE 754 contexts to decimal module.'
updated_at = <Date 2013-08-30.16:08:54.755>
user = 'https://github.com/mdickinson'
```
bugs.python.org fields:
```python
activity = <Date 2013-08-30.16:08:54.755>
actor = 'skrah'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2010-05-22.10:28:31.524>
creator = 'mark.dickinson'
dependencies = []
files = ['27214']
hgrepos = []
issue_num = 8786
keywords = ['patch']
message_count = 8.0
messages = ['106294', '106296', '106297', '106303', '106325', '170637', '172903', '196559']
nosy_count = 8.0
nosy_names = ['rhettinger', 'terry.reedy', 'facundobatista', 'mark.dickinson', 'christian.heimes', 'ezio.melotti', 'skrah', 'maker']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue8786'
versions = ['Python 3.4']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-122003
<!-- /gh-linked-prs -->
| 5bf0f3666e272798789ff900b1071760c73b46fd | e20ca6d1b006674be23d16083f273e8a7b8f77b6 |
python/cpython | python__cpython-136498 | # Keepends param in codec readline(s)
BPO | [8630](https://bugs.python.org/issue8630)
--- | :---
Nosy | @malemburg, @benjaminp
Files | <li>[codecs.py](https://bugs.python.org/file17235/codecs.py "Uploaded as text/plain at 2010-05-06.12:07:48 by amccampos"): new codecs.py fixing the issue</li><li>[Issue8630.patch](https://bugs.python.org/file35649/Issue8630.patch "Uploaded as text/plain at 2014-06-15.20:09:09 by BreamoreBoy"): Patch to add missing keepends parameters</li><li>[45139b30afef.diff](https://bugs.python.org/file35729/45139b30afef.diff "Uploaded as text/plain at 2014-06-22.18:17:03 by jeffrey.falgout"): Adds missing parameters to readline and readlines. Adds tests to test_codecs.py</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 2010-05-05.16:38:14.552>
labels = ['type-bug', 'library']
title = 'Keepends param in codec readline(s)'
updated_at = <Date 2019-03-15.23:41:27.662>
user = 'https://bugs.python.org/amccampos'
```
bugs.python.org fields:
```python
activity = <Date 2019-03-15.23:41:27.662>
actor = 'BreamoreBoy'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2010-05-05.16:38:14.552>
creator = 'amccampos'
dependencies = []
files = ['17235', '35649', '35729']
hgrepos = ['259']
issue_num = 8630
keywords = ['patch']
message_count = 8.0
messages = ['105056', '105128', '105132', '105133', '105140', '105324', '220668', '221291']
nosy_count = 4.0
nosy_names = ['lemburg', 'benjamin.peterson', 'amccampos', 'jeffrey.falgout']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue8630'
versions = ['Python 2.7', 'Python 3.4', 'Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-136498
* gh-136514
* gh-136515
<!-- /gh-linked-prs -->
| 35e2c359703e076256c1249b74b87043972e04d6 | 4b41b2043b110a38616ff86ddb3f065ae7f15c3e |
python/cpython | python__cpython-125193 | # time.strftime() and Unicode characters on Windows
BPO | [8304](https://bugs.python.org/issue8304)
--- | :---
Nosy | @terryjreedy, @pfmoore, @abalkin, @vstinner, @ericvsmith, @tjguk, @ezio-melotti, @shimizukawa, @zware, @eryksun, @zooba
<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 2010-04-03.15:08:42.673>
labels = ['3.8', '3.9', 'extension-modules', 'expert-unicode', 'type-bug', '3.10', 'library', 'OS-windows']
title = 'time.strftime() and Unicode characters on Windows'
updated_at = <Date 2021-03-08.19:17:29.084>
user = 'https://bugs.python.org/AndiDogold'
```
bugs.python.org fields:
```python
activity = <Date 2021-03-08.19:17:29.084>
actor = 'eryksun'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Extension Modules', 'Library (Lib)', 'Unicode', 'Windows']
creation = <Date 2010-04-03.15:08:42.673>
creator = 'AndiDog_old'
dependencies = []
files = []
hgrepos = []
issue_num = 8304
keywords = []
message_count = 16.0
messages = ['102269', '102298', '102310', '102332', '102335', '159341', '222667', '226114', '251554', '251558', '251560', '255043', '255133', '388241', '388277', '388286']
nosy_count = 12.0
nosy_names = ['terry.reedy', 'paul.moore', 'belopolsky', 'vstinner', 'eric.smith', 'tim.golden', 'ezio.melotti', 'AndiDog_old', 'shimizukawa', 'zach.ware', 'eryksun', 'steve.dower']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue8304'
versions = ['Python 3.8', 'Python 3.9', 'Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-125193
* gh-125657
* gh-125658
* gh-125661
<!-- /gh-linked-prs -->
| ad3eac1963a5f195ef9b2c1dbb5e44fa3cce4c72 | 0cb20f2e7e867d5c34fc17dd5b8e51e8b0020bb3 |
python/cpython | python__cpython-110987 | # Enhance Cmd support for docstrings and document it.
BPO | [7913](https://bugs.python.org/issue7913)
--- | :---
Nosy | @merwok, @bitdancer, @durban, @serhiy-storchaka
Files | <li>[cmd_doctest_enhancement.patch](https://bugs.python.org/file16213/cmd_doctest_enhancement.patch "Uploaded as text/plain at 2010-02-11.18:57:19 by @bitdancer")</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 2010-02-11.18:57:20.772>
labels = ['3.7', 'type-feature', 'library']
title = 'Enhance Cmd support for docstrings and document it.'
updated_at = <Date 2017-03-26.10:12:56.047>
user = 'https://github.com/bitdancer'
```
bugs.python.org fields:
```python
activity = <Date 2017-03-26.10:12:56.047>
actor = 'serhiy.storchaka'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2010-02-11.18:57:20.772>
creator = 'r.david.murray'
dependencies = []
files = ['16213']
hgrepos = []
issue_num = 7913
keywords = ['patch']
message_count = 7.0
messages = ['99233', '101837', '101843', '101844', '131485', '131502', '290520']
nosy_count = 4.0
nosy_names = ['eric.araujo', 'r.david.murray', 'daniel.urban', 'serhiy.storchaka']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue7913'
versions = ['Python 3.7']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-110987
<!-- /gh-linked-prs -->
| 4c4b08dd2bd5f2cad4e41bf29119a3daa2956f6e | f1f839243251fef7422c31d6a7c3c747e0b5e27c |
python/cpython | python__cpython-112823 | # missing termios constants
BPO | [7695](https://bugs.python.org/issue7695)
--- | :---
Nosy | @vstinner, @tiran
Files | <li>[patch_termios_consts_issue7695.diff](https://bugs.python.org/file20015/patch_termios_consts_issue7695.diff "Uploaded as text/plain at 2010-12-11.17:02:35 by Rodolpho.Eckhardt")</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 2010-01-13.20:02:29.631>
labels = ['type-feature', 'library']
title = 'missing termios constants'
updated_at = <Date 2014-12-31.16:20:36.861>
user = 'https://bugs.python.org/conorh'
```
bugs.python.org fields:
```python
activity = <Date 2014-12-31.16:20:36.861>
actor = 'akuchling'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2010-01-13.20:02:29.631>
creator = 'conorh'
dependencies = []
files = ['20015']
hgrepos = []
issue_num = 7695
keywords = ['patch']
message_count = 5.0
messages = ['97736', '97749', '123803', '174714', '174727']
nosy_count = 4.0
nosy_names = ['vstinner', 'christian.heimes', 'conorh', 'Rodolpho.Eckhardt']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue7695'
versions = ['Python 3.4']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-112823
* gh-112996
<!-- /gh-linked-prs -->
| f26bfe4b25f7e5a4f68fcac26207b7175abad208 | 0c55f270604f8541bcf43526e5cf6c6eddfff451 |
python/cpython | python__cpython-94612 | # tempfile.mkdtemp() does not return absolute pathname when relative dir is specified
BPO | [7325](https://bugs.python.org/issue7325)
--- | :---
Nosy | @pitrou, @merwok, @bitdancer, @hynek, @1st1, @iritkatriel
Files | <li>[Py7325.diff](https://bugs.python.org/file16005/Py7325.diff "Uploaded as text/plain at 2010-01-26.06:57:54 by thomas.holmes")</li><li>[Py(27)7325.diff](https://bugs.python.org/file16028/Py%2827%297325.diff "Uploaded as text/plain at 2010-01-28.04:58:14 by thomas.holmes")</li><li>[issue7325.patch](https://bugs.python.org/file19610/issue7325.patch "Uploaded as text/plain at 2010-11-15.04:04:32 by jesstess"): updated patch based on Py(27)7325.diff</li><li>[issue7325.patch](https://bugs.python.org/file19737/issue7325.patch "Uploaded as text/plain at 2010-11-21.12:00:29 by elesbom")</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 2009-11-14.19:27:34.856>
labels = ['easy', 'type-bug', '3.9', '3.10', '3.11', 'library']
title = 'tempfile.mkdtemp() does not return absolute pathname when relative dir is specified'
updated_at = <Date 2021-12-06.14:33:45.013>
user = 'https://bugs.python.org/roysmith'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-06.14:33:45.013>
actor = 'iritkatriel'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2009-11-14.19:27:34.856>
creator = 'roysmith'
dependencies = []
files = ['16005', '16028', '19610', '19737']
hgrepos = []
issue_num = 7325
keywords = ['patch', 'easy']
message_count = 19.0
messages = ['95256', '95257', '95307', '95308', '98316', '98317', '98342', '98405', '98406', '98457', '111828', '121214', '121734', '121764', '121906', '122038', '178291', '209838', '407816']
nosy_count = 11.0
nosy_names = ['roysmith', 'pitrou', 'dstanek', 'eric.araujo', 'r.david.murray', 'jesstess', 'thomas.holmes', 'elesbom', 'hynek', 'yselivanov', 'iritkatriel']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue7325'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-94612
* gh-103844
<!-- /gh-linked-prs -->
| 32bea69b89e32a8c673db3315e1ea3de48ea7702 | c8c3956d905e019101038b018129a4c90c9c9b8f |
python/cpython | python__cpython-99629 | # trace.CoverageResult fails merging input file with non-empty callers
BPO | [7275](https://bugs.python.org/issue7275)
--- | :---
Nosy | @berkerpeksag, @iritkatriel
Files | <li>[trace.diff](https://bugs.python.org/file15279/trace.diff "Uploaded as text/plain at 2009-11-06.18:11:59 by glinsvad"): Proposed patch for out of place 'callers' argument</li><li>[issue7275.diff](https://bugs.python.org/file42558/issue7275.diff "Uploaded as text/plain at 2016-04-21.15:56:09 by @berkerpeksag")</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 2009-11-06.18:12:00.434>
labels = ['easy', 'type-bug', '3.9', '3.10', '3.11', 'library']
title = 'CoverageResult fails to merge input file with non-empty callers in trace.py'
updated_at = <Date 2022-01-20.23:10:32.121>
user = 'https://bugs.python.org/glinsvad'
```
bugs.python.org fields:
```python
activity = <Date 2022-01-20.23:10:32.121>
actor = 'iritkatriel'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2009-11-06.18:12:00.434>
creator = 'glinsvad'
dependencies = []
files = ['15279', '42558']
hgrepos = []
issue_num = 7275
keywords = ['easy']
message_count = 4.0
messages = ['94991', '109980', '263925', '411054']
nosy_count = 4.0
nosy_names = ['dstanek', 'glinsvad', 'berker.peksag', 'iritkatriel']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue7275'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-99629
* gh-99832
* gh-99833
<!-- /gh-linked-prs -->
| 594de165bf2f21d6b28eb17003ea78fc20c0ffed | 276643e207d44c53b87a8108d5b00982defcce1e |
python/cpython | python__cpython-109180 | # Infinite Recursion during Unpickling a codecs Object
BPO | [6395](https://bugs.python.org/issue6395)
--- | :---
Nosy | @malemburg, @avassalotti, @serhiy-storchaka
Files | <li>[codecs_stream_delegating.patch](https://bugs.python.org/file41184/codecs_stream_delegating.patch "Uploaded as text/plain at 2015-11-28.13:48:25 by @serhiy-storchaka")</li><li>[codecs_stream_delegating_2.patch](https://bugs.python.org/file41215/codecs_stream_delegating_2.patch "Uploaded as text/plain at 2015-12-02.19:59:49 by @serhiy-storchaka")</li><li>[codecs_stream_forbid_pickling.patch](https://bugs.python.org/file41217/codecs_stream_forbid_pickling.patch "Uploaded as text/plain at 2015-12-02.20:29:08 by @serhiy-storchaka"): Forbid pickling and copying</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 2009-07-01.15:46:26.758>
labels = ['type-bug', 'library']
title = 'Infinite Recursion during Unpickling a codecs Object'
updated_at = <Date 2015-12-06.12:10:19.822>
user = 'https://bugs.python.org/ThomasH'
```
bugs.python.org fields:
```python
activity = <Date 2015-12-06.12:10:19.822>
actor = 'serhiy.storchaka'
assignee = 'serhiy.storchaka'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2009-07-01.15:46:26.758>
creator = 'ThomasH'
dependencies = []
files = ['41184', '41215', '41217']
hgrepos = []
issue_num = 6395
keywords = ['patch']
message_count = 10.0
messages = ['89985', '90180', '90258', '255540', '255756', '255761', '255763', '255774', '255785', '256011']
nosy_count = 4.0
nosy_names = ['lemburg', 'alexandre.vassalotti', 'ThomasH', 'serhiy.storchaka']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue6395'
versions = ['Python 2.7', 'Python 3.4', 'Python 3.5', 'Python 3.6']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-109180
* gh-109231
* gh-109232
<!-- /gh-linked-prs -->
| d6892c2b9263b39ea1c7905667942914b6a24b2c | 71b6e2602c0b5b06d51855f179cdb30094a67968 |
python/cpython | python__cpython-128374 | # Reference counting bug in PyArg_ParseTuple and PyArg_ParseTupleAndKeywords
BPO | [6083](https://bugs.python.org/issue6083)
--- | :---
Nosy | @loewis, @birkenfeld, @gpshead, @abalkin, @taleinat, @serhiy-storchaka, @imz, @ananthan-123
Dependencies | <li>bpo-20191: resource.prlimit(int, int, str) crashs</li>
Files | <li>[python-bug-01.patch](https://bugs.python.org/file14040/python-bug-01.patch "Uploaded as text/plain at 2009-05-22.08:18:50 by billm"): Patch to fix the problem</li><li>[test-resource.py](https://bugs.python.org/file19616/test-resource.py "Uploaded as text/plain at 2010-11-16.12:33:45 by abacabadabacaba"): Test for Modules/resource.c</li><li>[test-ctypes.py](https://bugs.python.org/file19617/test-ctypes.py "Uploaded as text/plain at 2010-11-16.12:34:29 by abacabadabacaba"): Test for Modules/_ctypes/_ctypes.c</li><li>[test-functools.py](https://bugs.python.org/file19618/test-functools.py "Uploaded as text/plain at 2010-11-16.12:35:15 by abacabadabacaba"): Test for Modules/_functoolsmodule.c (py3k only)</li><li>[issue6083.diff](https://bugs.python.org/file20400/issue6083.diff "Uploaded as text/plain at 2011-01-14.06:42:06 by @abalkin")</li><li>[PyArg_ParseTuple_refcount.patch](https://bugs.python.org/file27567/PyArg_ParseTuple_refcount.patch "Uploaded as text/plain at 2012-10-14.20:18:26 by @serhiy-storchaka")</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 2009-05-22.08:18:54.577>
labels = ['interpreter-core', 'type-crash']
title = 'Reference counting bug in PyArg_ParseTuple and PyArg_ParseTupleAndKeywords'
updated_at = <Date 2020-02-20.07:51:55.428>
user = 'https://bugs.python.org/billm'
```
bugs.python.org fields:
```python
activity = <Date 2020-02-20.07:51:55.428>
actor = 'taleinat'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Interpreter Core']
creation = <Date 2009-05-22.08:18:54.577>
creator = 'billm'
dependencies = ['20191']
files = ['14040', '19616', '19617', '19618', '20400', '27567']
hgrepos = []
issue_num = 6083
keywords = ['patch']
message_count = 25.0
messages = ['88181', '88204', '88215', '121285', '126226', '126234', '172912', '181297', '181316', '181327', '181592', '181600', '182108', '182110', '201454', '314264', '314268', '314273', '314285', '314286', '314287', '314289', '322381', '362299', '362302']
nosy_count = 11.0
nosy_names = ['loewis', 'georg.brandl', 'gregory.p.smith', 'belopolsky', 'taleinat', 'billm', 'abacabadabacaba', 'python-dev', 'serhiy.storchaka', 'imz', 'Ananthakrishnan']
pr_nums = []
priority = 'high'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'crash'
url = 'https://bugs.python.org/issue6083'
versions = ['Python 2.7', 'Python 3.3', 'Python 3.4']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-128374
<!-- /gh-linked-prs -->
| 0e4cf9ce7c7b0ae6e78ded27db828eac0f8c7724 | 0f04f2456a2ff996cc670342a287928ab5f9b706 |
python/cpython | python__cpython-107947 | # xml.dom.minidom does not escape CR, LF and TAB characters within attribute values
BPO | [5752](https://bugs.python.org/issue5752)
--- | :---
Nosy | @amauryfa, @devdanzin, @dvarrazzo, @ezio-melotti, @wking, @mitar, @moriyoshi
Files | <li>[minidom_test.py](https://bugs.python.org/file13921/minidom_test.py "Uploaded as text/plain at 2009-05-08.09:53:34 by Tomalak"): A small test script that outlines the problem</li><li>[test_toxml.py](https://bugs.python.org/file13960/test_toxml.py "Uploaded as text/plain at 2009-05-11.21:27:13 by sechi_francesco"): New test script to demonstrate that the patch proposed works</li><li>[test_multiline_roundtrip.diff](https://bugs.python.org/file13966/test_multiline_roundtrip.diff "Uploaded as text/plain at 2009-05-12.03:29:28 by @devdanzin"): Tomalak's minidom_test.py as unittest, patch for test_minidom</li><li>[minidom.patch](https://bugs.python.org/file13977/minidom.patch "Uploaded as text/plain at 2009-05-13.12:11:57 by Tomalak"): Proposed patch to minidom.py</li><li>[minidom.diff](https://bugs.python.org/file18184/minidom.diff "Uploaded as text/plain at 2010-07-24.17:21:21 by BreamoreBoy"): Old file before new file in patch.</li><li>[minidom.py](https://bugs.python.org/file18325/minidom.py "Uploaded as text/plain at 2010-08-02.16:47:21 by @wking"): monkey patch module applying minidom.diff</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 2009-04-14.11:13:06.464>
labels = ['expert-XML', 'easy', 'type-bug']
title = 'xml.dom.minidom does not escape CR, LF and TAB characters within attribute values'
updated_at = <Date 2019-06-22.20:28:40.662>
user = 'https://bugs.python.org/Tomalak'
```
bugs.python.org fields:
```python
activity = <Date 2019-06-22.20:28:40.662>
actor = 'mitar'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['XML']
creation = <Date 2009-04-14.11:13:06.464>
creator = 'Tomalak'
dependencies = []
files = ['13921', '13960', '13966', '13977', '18184', '18325']
hgrepos = []
issue_num = 5752
keywords = ['patch', 'easy']
message_count = 33.0
messages = ['85964', '87178', '87332', '87333', '87351', '87429', '87431', '87432', '87526', '87527', '87528', '87564', '87586', '87590', '87604', '87609', '87676', '87679', '87681', '90548', '90676', '110999', '111493', '111642', '112497', '112570', '119728', '142964', '185398', '185408', '185419', '185423', '185576']
nosy_count = 13.0
nosy_names = ['effbot', 'amaury.forgeotdarc', 'ajaksu2', 'piro', 'ezio.melotti', 'sayap', 'Tomalak', 'devon', 'labrat', 'mitar', 'moriyoshi', 'gauges', 'Jens.Grivolla']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue5752'
versions = ['Python 2.6', 'Python 3.1', 'Python 2.7', 'Python 3.2']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-107947
<!-- /gh-linked-prs -->
| 154477be722ae5c4e18d22d0860e284006b09c4f | 29bc6165ab8aa434145a34676b8b7e48e7c6e308 |
python/cpython | python__cpython-114760 | # equality not symmetric for subclasses of datetime.date and datetime.datetime
BPO | [5516](https://bugs.python.org/issue5516)
--- | :---
Nosy | @ncoghlan, @abalkin, @jackdied, @ericsnowcurrently, @pganssle
Files | <li>[issue5516.diff](https://bugs.python.org/file13403/issue5516.diff "Uploaded as text/plain at 2009-03-23.20:20:49 by jess.austin"): patch against trunk for datetimemodule.c and test_datetime.py</li><li>[issue5516_trunk.diff](https://bugs.python.org/file13419/issue5516_trunk.diff "Uploaded as text/plain at 2009-03-26.16:51:09 by @jackdied"): udiff against 2.7 trunk</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/abalkin'
closed_at = None
created_at = <Date 2009-03-19.00:51:23.421>
labels = ['3.7', 'type-bug', 'library']
title = 'equality not symmetric for subclasses of datetime.date and datetime.datetime'
updated_at = <Date 2018-07-05.15:58:15.282>
user = 'https://bugs.python.org/jessaustin'
```
bugs.python.org fields:
```python
activity = <Date 2018-07-05.15:58:15.282>
actor = 'p-ganssle'
assignee = 'belopolsky'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2009-03-19.00:51:23.421>
creator = 'jess.austin'
dependencies = []
files = ['13403', '13419']
hgrepos = []
issue_num = 5516
keywords = []
message_count = 19.0
messages = ['83798', '84028', '84184', '103854', '103864', '103881', '103886', '104433', '106497', '106501', '106503', '106505', '106507', '106508', '108603', '108684', '195030', '195034', '195035']
nosy_count = 7.0
nosy_names = ['ncoghlan', 'belopolsky', 'jackdied', 'jess.austin', 'ysj.ray', 'eric.snow', 'p-ganssle']
pr_nums = []
priority = 'low'
resolution = 'postponed'
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue5516'
versions = ['Python 3.7']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-114760
<!-- /gh-linked-prs -->
| b1043607884d774acabd255ecdcebb159f76a2fb | d9d6909697501a2604d5895f9f88aeec61274ab0 |
python/cpython | python__cpython-104699 | # gc.collect() won't always collect as expected
BPO | [4924](https://bugs.python.org/issue4924)
--- | :---
Nosy | @loewis, @pitrou
<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 2009-01-12.13:03:33.379>
labels = ['type-bug']
title = "gc.collect() won't always collect as expected"
updated_at = <Date 2011-06-26.19:01:19.047>
user = 'https://github.com/pitrou'
```
bugs.python.org fields:
```python
activity = <Date 2011-06-26.19:01:19.047>
actor = 'terry.reedy'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2009-01-12.13:03:33.379>
creator = 'pitrou'
dependencies = []
files = []
hgrepos = []
issue_num = 4924
keywords = []
message_count = 2.0
messages = ['79673', '79674']
nosy_count = 2.0
nosy_names = ['loewis', 'pitrou']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'test needed'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue4924'
versions = ['Python 2.7', 'Python 3.2', 'Python 3.3']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-104699
* gh-104703
<!-- /gh-linked-prs -->
| 30488fa22a8f63753192ae7f1d01665857764e45 | d1732feea0eadd4ccc3516440d0c071be0093dec |
python/cpython | python__cpython-93068 | # doc: execution model - clear and complete example in documentation
BPO | [4246](https://bugs.python.org/issue4246)
--- | :---
Nosy | @terryjreedy, @cben, @ezio-melotti
Files | <li>[scopes.py](https://bugs.python.org/file11924/scopes.py "Uploaded as text/plain at 2008-11-01.14:59:28 by robwolfe"): Execution model example</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 2008-11-01.14:59:30.657>
labels = ['type-feature', '3.9', '3.10', 'docs']
title = 'doc: execution model - clear and complete example in documentation'
updated_at = <Date 2020-10-25.22:53:29.725>
user = 'https://bugs.python.org/robwolfe'
```
bugs.python.org fields:
```python
activity = <Date 2020-10-25.22:53:29.725>
actor = 'iritkatriel'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2008-11-01.14:59:30.657>
creator = 'robwolfe'
dependencies = []
files = ['11924']
hgrepos = []
issue_num = 4246
keywords = []
message_count = 4.0
messages = ['75441', '75614', '75635', '121783']
nosy_count = 5.0
nosy_names = ['terry.reedy', 'cben', 'ezio.melotti', 'robwolfe', 'docs@python']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue4246'
versions = ['Python 3.9', 'Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-93068
* gh-100442
* gh-100443
<!-- /gh-linked-prs -->
| f3db68e6e66ebb36e1b9cb30daba913ecc736169 | ad23da0e77c4c4a3185df64d1c199b8c17e08188 |
python/cpython | python__cpython-103309 | # unittest: display time used by each test case
BPO | [4080](https://bugs.python.org/issue4080)
--- | :---
Nosy | @rhettinger, @giampaolo, @ezio-melotti, @merwok, @voidspace
PRs | <li>python/cpython#12271</li>
Files | <li>[pyunit_time.patch](https://bugs.python.org/file11751/pyunit_time.patch "Uploaded as text/plain at 2008-10-08.20:28:14 by pprokop"): display time of each unit test - patch</li><li>[unittest_runTime.patch](https://bugs.python.org/file15332/unittest_runTime.patch "Uploaded as text/plain at 2009-11-14.19:00:28 by pprokop"): test case run time measure patch</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 2008-10-08.20:28:15.274>
labels = ['tests', 'type-feature', 'library', '3.9']
title = 'unittest: display time used by each test case'
updated_at = <Date 2020-02-16.12:49:33.700>
user = 'https://bugs.python.org/pprokop'
```
bugs.python.org fields:
```python
activity = <Date 2020-02-16.12:49:33.700>
actor = 'giampaolo.rodola'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Library (Lib)', 'Tests']
creation = <Date 2008-10-08.20:28:15.274>
creator = 'pprokop'
dependencies = []
files = ['11751', '15332']
hgrepos = []
issue_num = 4080
keywords = ['patch']
message_count = 17.0
messages = ['74545', '87989', '95253', '109448', '110692', '110800', '110883', '154650', '154678', '154687', '154769', '154771', '154776', '155721', '176157', '337648', '362067']
nosy_count = 8.0
nosy_names = ['rhettinger', 'techtonik', 'giampaolo.rodola', 'ezio.melotti', 'eric.araujo', 'pprokop', 'michael.foord', 'piotr.dobrogost']
pr_nums = ['12271']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue4080'
versions = ['Python 3.9']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-103309
* gh-103209
<!-- /gh-linked-prs -->
| 52bc2e7b9d451821513a580a9b73c20cfdcf2b21 | 482b6eeadcde3e6573f0d243e687de7be7680379 |
python/cpython | python__cpython-103855 | # urllib.request.urlopen does not handle non-ASCII characters
BPO | [3991](https://bugs.python.org/issue3991)
--- | :---
Nosy | @orsenthil, @vstinner, @devdanzin, @ezio-melotti, @abadger, @bitdancer, @vadmium, @remilapeyre
Dependencies | <li>bpo-9679: unicode DNS names in urllib, urlopen</li>
Files | <li>[non_ascii_path.diff](https://bugs.python.org/file12986/non_ascii_path.diff "Uploaded as text/plain at 2009-02-08.21:50:18 by @devdanzin"): Calls quote() on the request path if path.encode('ascii') fails</li><li>[issue3991.diff](https://bugs.python.org/file29194/issue3991.diff "Uploaded as text/plain at 2013-02-23.17:58:19 by thezulk")</li><li>[issue3991_2017-01-27.diff](https://bugs.python.org/file46440/issue3991_2017-01-27.diff "Uploaded as text/plain at 2017-01-27.21:58:29 by thezulk"): Diff against 3.7.0a0</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 2008-09-28.18:47:16.056>
labels = ['extension-modules', '3.8', 'type-bug', '3.7', 'easy']
title = 'urllib.request.urlopen does not handle non-ASCII characters'
updated_at = <Date 2019-02-20.20:02:12.619>
user = 'https://github.com/abadger'
```
bugs.python.org fields:
```python
activity = <Date 2019-02-20.20:02:12.619>
actor = 'remi.lapeyre'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['Extension Modules']
creation = <Date 2008-09-28.18:47:16.056>
creator = 'a.badger'
dependencies = ['9679']
files = ['12986', '29194', '46440']
hgrepos = []
issue_num = 3991
keywords = ['patch', 'easy']
message_count = 14.0
messages = ['73982', '74046', '74053', '74085', '74088', '74110', '74117', '81423', '182785', '219325', '285721', '286386', '286423', '286444']
nosy_count = 11.0
nosy_names = ['janssen', 'orsenthil', 'vstinner', 'ajaksu2', 'ezio.melotti', 'a.badger', 'r.david.murray', 'martin.panter', 'thezulk', 'Graham.Oliver', 'remi.lapeyre']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue3991'
versions = ['Python 3.4', 'Python 3.5', 'Python 3.6', 'Python 3.7', 'Python 3.8']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-103855
* gh-103891
<!-- /gh-linked-prs -->
| 44010d0f1203134cd8f885ca574caaef373e80f6 | e901588002f3ac5bf4d3c61cda5ad7bf50bacadd |
python/cpython | python__cpython-135997 | # codecs.charmap_build is untested and undocumented
BPO | [3931](https://bugs.python.org/issue3931)
--- | :---
Nosy | @malemburg, @loewis, @birkenfeld, @terryjreedy, @merwok, @MojoVampire
<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 2008-09-22.12:06:14.954>
labels = ['type-bug', 'library', 'docs']
title = 'codecs.charmap_build is untested and undocumented'
updated_at = <Date 2019-03-15.22:35:04.722>
user = 'https://bugs.python.org/fijal'
```
bugs.python.org fields:
```python
activity = <Date 2019-03-15.22:35:04.722>
actor = 'BreamoreBoy'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation', 'Library (Lib)']
creation = <Date 2008-09-22.12:06:14.954>
creator = 'fijal'
dependencies = []
files = []
hgrepos = []
issue_num = 3931
keywords = []
message_count = 7.0
messages = ['73569', '75012', '112747', '120987', '220400', '220407', '237006']
nosy_count = 7.0
nosy_names = ['lemburg', 'loewis', 'georg.brandl', 'terry.reedy', 'fijal', 'eric.araujo', 'josh.r']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue3931'
versions = ['Python 2.7', 'Python 3.4', 'Python 3.5']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-135997
* gh-136123
* gh-136124
<!-- /gh-linked-prs -->
| 2bdd50309f543f449d7d82b64ed6f60ae0aa80b9 | 75f40595e555e7d016cf9d2da8aaddb78bb20b2f |
python/cpython | python__cpython-126531 | # test_multiprocessing fails on systems with HAVE_SEM_OPEN=0
BPO | [3770](https://bugs.python.org/issue3770)
--- | :---
Nosy | @ncoghlan, @ned-deily, @pmp-p, @smattr
Files | <li>[issue3770.diff](https://bugs.python.org/file11656/issue3770.diff "Uploaded as text/plain at 2008-09-29.20:07:31 by jnoller"): Disable synchronize module on sem_open lacking systems</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 2009-04-02.03:57:50.525>
created_at = <Date 2008-09-04.00:23:58.140>
labels = ['extension-modules']
title = 'test_multiprocessing fails on systems with HAVE_SEM_OPEN=0'
updated_at = <Date 2020-12-07.23:09:56.647>
user = 'https://bugs.python.org/djmdjm'
```
bugs.python.org fields:
```python
activity = <Date 2020-12-07.23:09:56.647>
actor = 'pmpp'
assignee = 'jnoller'
closed = True
closed_date = <Date 2009-04-02.03:57:50.525>
closer = 'jnoller'
components = ['Extension Modules']
creation = <Date 2008-09-04.00:23:58.140>
creator = 'djmdjm'
dependencies = []
files = ['11656']
hgrepos = []
issue_num = 3770
keywords = ['patch', 'needs review']
message_count = 29.0
messages = ['72442', '72450', '72455', '73221', '73440', '73442', '73918', '73948', '73957', '73958', '73959', '73993', '74005', '74015', '74036', '74037', '74040', '74041', '74043', '74045', '74054', '74055', '74057', '74077', '83495', '84610', '85155', '360288', '360339']
nosy_count = 8.0
nosy_names = ['aimacintyre', 'ncoghlan', 'djmdjm', 'ned.deily', 'jnoller', 'bms', 'pmpp', 'smattr']
pr_nums = []
priority = 'critical'
resolution = 'fixed'
stage = None
status = 'closed'
superseder = None
type = None
url = 'https://bugs.python.org/issue3770'
versions = ['Python 2.6', 'Python 3.0']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-126531
* gh-126540
<!-- /gh-linked-prs -->
| 1fe67df8e373a5177143e4a310c83438e79f9b77 | a5b94d066016be63d632cccee0ec2a2eb24536dc |
python/cpython | python__cpython-93070 | # Popen() object stdout attribute reassignment behaviour
BPO | [3687](https://bugs.python.org/issue3687)
--- | :---
Nosy | @birkenfeld, @terryjreedy, @giampaolo, @maaz92, @iritkatriel
<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 2008-08-26.15:57:45.065>
labels = ['3.11', 'type-bug', '3.9', '3.10', 'docs']
title = 'Popen() object stdout attribute reassignment behaviour'
updated_at = <Date 2021-12-05.15:57:52.556>
user = 'https://bugs.python.org/vincentlegoll'
```
bugs.python.org fields:
```python
activity = <Date 2021-12-05.15:57:52.556>
actor = 'iritkatriel'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2008-08-26.15:57:45.065>
creator = 'vincent.legoll'
dependencies = []
files = []
hgrepos = []
issue_num = 3687
keywords = []
message_count = 5.0
messages = ['71983', '107970', '107976', '281545', '407713']
nosy_count = 7.0
nosy_names = ['georg.brandl', 'terry.reedy', 'giampaolo.rodola', 'vlegoll', 'vincent.legoll', 'maaz92', 'iritkatriel']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue3687'
versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-93070
* gh-101683
* gh-101684
<!-- /gh-linked-prs -->
| 027adf42cd85db41fee05b0a40d89ef822876c97 | a9f01448a99c6a2ae34d448806176f2df3a5b323 |
python/cpython | python__cpython-127934 | # Document PyUnicode_* API
BPO | [1944](https://bugs.python.org/issue1944)
--- | :---
Nosy | @malemburg, @birkenfeld, @vstinner, @avassalotti, @berkerpeksag, @vadmium, @serhiy-storchaka, @shihai1991, @furkanonder
PRs | <li>python/cpython#20011</li>
Files | <li>[unicode.patch](https://bugs.python.org/file13717/unicode.patch "Uploaded as text/plain at 2009-04-18.15:18:44 by donlorenzo"): docs for PyUnicodes C-API functions: FromFormat, FromFormatV, FromString, FromStringAndSize, Partition, RPartition and RSplit</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 2008-01-27.06:26:42.019>
labels = ['type-feature', 'docs']
title = 'Document PyUnicode_* API'
updated_at = <Date 2020-06-21.12:39:22.129>
user = 'https://github.com/avassalotti'
```
bugs.python.org fields:
```python
activity = <Date 2020-06-21.12:39:22.129>
actor = 'shihai1991'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2008-01-27.06:26:42.019>
creator = 'alexandre.vassalotti'
dependencies = []
files = ['13717']
hgrepos = []
issue_num = 1944
keywords = ['patch']
message_count = 9.0
messages = ['61734', '86116', '86121', '89100', '185552', '185725', '264571', '264575', '368582']
nosy_count = 11.0
nosy_names = ['lemburg', 'georg.brandl', 'vstinner', 'alexandre.vassalotti', 'donlorenzo', 'docs@python', 'berker.peksag', 'martin.panter', 'serhiy.storchaka', 'shihai1991', 'furkanonder']
pr_nums = ['20011']
priority = 'normal'
resolution = None
stage = 'patch review'
status = 'open'
superseder = None
type = 'enhancement'
url = 'https://bugs.python.org/issue1944'
versions = ['Python 3.5', 'Python 3.6']
```
</p></details>
[edit @encukou]: Converting the lists below to checkboxes:
- [x] PyUnicode_Resize
- [x] ~~PyUnicode_InternImmortal~~ (removed in 3.12)
- [x] PyUnicode_GetDefaultEncoding
- [x] ~~PyUnicode_SetDefaultEncoding~~ (removed in 3.2)
- [x] PyUnicode_BuildEncodingMap
- [x] PyUnicode_FromFormatV
- [x] PyUnicode_*UTF7*
- [x] PyUnicode_AsEncodedObject
- [x] PyUnicode_FromOrdinal
- [x] PyUnicode_DecodeFSDefault
- [x] PyUnicode_DecodeFSDefaultAndSize
- [x] PyUnicode_DecodeUTF7
- [x] PyUnicode_DecodeUTF7Stateful
- [x] PyUnicode_EncodeDecimal
- [x] PyUnicode_EncodeUTF7
- [x] PyUnicode_FromFormat
- [x] PyUnicode_FromString
- [x] PyUnicode_FromStringAndSize
- [x] PyUnicode_GetMax
- [x] PyUnicode_Partition
- [x] PyUnicode_RPartition
- [x] PyUnicode_RSplit
- [x] PyUnicode_IsIdentifier
- [x] PyUnicode_Append
- [x] PyUnicode_AppendAndDel
- [x] Py_UNICODE_REPLACEMENT_CHARACTER
- [x] PyUnicodeIter_Type
- [x] PyUnicode_AsDecodedObject
- [x] PyUnicode_AsDecodedUnicode
- [x] PyUnicode_AsEncodedUnicode
- [x] ~~_PyUnicode_ClearStaticStrings~~ (removed in 3.9)
- [x] ~~_PyUnicode_EQ~~ (removed in 3.14)
- [x] ~~_PyUnicode_FromId~~ (private)
<!-- gh-linked-prs -->
### Linked PRs
* gh-127934
* gh-129961
* gh-129962
* gh-129966
* gh-130191
* gh-130335
* gh-130360
* gh-130361
* gh-130511
* gh-130512
* gh-130531
* gh-132040
* gh-132521
* gh-132628
* gh-132703
* gh-132706
* gh-132925
* gh-133149
* gh-133270
* gh-133769
* gh-133770
<!-- /gh-linked-prs -->
| 8d9d3e4ecb4c908df6560b54138dd5af73b3ed47 | d7672e5d5a7b9580a72dbe75d3a9e8840bcc604c |
python/cpython | python__cpython-126924 | # os.chmod failure
BPO | [1767242](https://bugs.python.org/issue1767242)
--- | :---
Nosy | @birkenfeld
<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 2007-09-07.07:40:37.277>
created_at = <Date 2007-08-03.18:02:26.000>
labels = []
title = 'os.chmod failure'
updated_at = <Date 2007-09-07.07:40:37.276>
user = 'https://bugs.python.org/rgheck'
```
bugs.python.org fields:
```python
activity = <Date 2007-09-07.07:40:37.276>
actor = 'georg.brandl'
assignee = 'none'
closed = True
closed_date = <Date 2007-09-07.07:40:37.277>
closer = 'georg.brandl'
components = ['None']
creation = <Date 2007-08-03.18:02:26.000>
creator = 'rgheck'
dependencies = []
files = []
hgrepos = []
issue_num = 1767242
keywords = []
message_count = 4.0
messages = ['32580', '32581', '32582', '32583']
nosy_count = 3.0
nosy_names = ['nnorwitz', 'georg.brandl', 'rgheck']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'closed'
superseder = None
type = None
url = 'https://bugs.python.org/issue1767242'
versions = []
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-126924
<!-- /gh-linked-prs -->
| a264637654f9d3ac3c140e66fd56ee32faf22431 | 4759ba6eec9f0b36b24b8eb7e7b120d471c67e82 |
python/cpython | python__cpython-130187 | # msgfmt cannot cope with BOM - improve error message
BPO | [1697943](https://bugs.python.org/issue1697943)
--- | :---
Nosy | @loewis, @rhettinger, @Cito, @vstinner, @merwok, @serhiy-storchaka
Files | <li>[msgfmt.diff](https://bugs.python.org/file2348/msgfmt.diff "Uploaded as text/plain at 2007-04-10.20:58:04 by @Cito")</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/loewis'
closed_at = None
created_at = <Date 2007-04-10.20:58:04.000>
labels = ['type-bug', 'expert-unicode', '3.11']
title = 'msgfmt cannot cope with BOM - improve error message'
updated_at = <Date 2021-04-22.15:26:29.553>
user = 'https://github.com/Cito'
```
bugs.python.org fields:
```python
activity = <Date 2021-04-22.15:26:29.553>
actor = 'iritkatriel'
assignee = 'loewis'
closed = False
closed_date = None
closer = None
components = ['Demos and Tools', 'Unicode']
creation = <Date 2007-04-10.20:58:04.000>
creator = 'cito'
dependencies = []
files = ['2348']
hgrepos = []
issue_num = 1697943
keywords = ['patch']
message_count = 9.0
messages = ['31755', '31756', '31757', '31758', '70042', '125940', '125941', '290519', '290524']
nosy_count = 6.0
nosy_names = ['loewis', 'rhettinger', 'cito', 'vstinner', 'eric.araujo', 'serhiy.storchaka']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue1697943'
versions = ['Python 3.11']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-130187
<!-- /gh-linked-prs -->
| 01ba7df49966eaf14f44962a77898840c70dda96 | 185ac5adafb70a207b9d9ac7cb7808942813b832 |
python/cpython | python__cpython-93826 | # [doc] os.execvp[e] on win32 fails for current directory
BPO | [1576313](https://bugs.python.org/issue1576313)
--- | :---
Nosy | @loewis, @bitdancer
Files | <li>[python-win32-execvp.patch](https://bugs.python.org/file7576/python-win32-execvp.patch "Uploaded as text/plain at 2006-10-13.00:57:39 by snaury")</li><li>[Issue1576313.diff](https://bugs.python.org/file35690/Issue1576313.diff "Uploaded as text/plain at 2014-06-19.14:09:58 by BreamoreBoy"): Add one sentence to os.rst</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 2006-10-13.00:57:39.000>
labels = ['type-bug', '3.8', '3.9', '3.10', 'docs']
title = '[doc] os.execvp[e] on win32 fails for current directory'
updated_at = <Date 2020-11-06.19:58:06.206>
user = 'https://bugs.python.org/snaury'
```
bugs.python.org fields:
```python
activity = <Date 2020-11-06.19:58:06.206>
actor = 'iritkatriel'
assignee = 'docs@python'
closed = False
closed_date = None
closer = None
components = ['Documentation']
creation = <Date 2006-10-13.00:57:39.000>
creator = 'snaury'
dependencies = []
files = ['7576', '35690']
hgrepos = []
issue_num = 1576313
keywords = ['patch']
message_count = 11.0
messages = ['51239', '51240', '51241', '51242', '51243', '51244', '109177', '109184', '220948', '220952', '220980']
nosy_count = 6.0
nosy_names = ['loewis', 'snaury', 'techtonik', 'mcmahon_m', 'r.david.murray', 'docs@python']
pr_nums = []
priority = 'normal'
resolution = None
stage = 'needs patch'
status = 'open'
superseder = None
type = 'behavior'
url = 'https://bugs.python.org/issue1576313'
versions = ['Python 3.8', 'Python 3.9', 'Python 3.10']
```
</p></details>
<!-- gh-linked-prs -->
### Linked PRs
* gh-93826
<!-- /gh-linked-prs -->
| 59c522f9650c22dc986debce483b83a4ffc6dc0d | 014f1319347d7cee3c8aa6c21a1cdf2e4998ef78 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.