[issue32397] textwrap output may change if you wrap a paragraph twice

2019-05-18 Thread Cheryl Sabella
Cheryl Sabella added the comment: @larry, it looks like this was close to being merged pending some review comments by Serhiy. Although this is considered a bug and not a new feature, it might be nice to try to get this in for 3.8. Thanks! -- nosy: +cheryl.sabella

[issue19376] document that strptime() does not support the Feb 29 if the format does not contain the year

2019-05-18 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue19376] document that strptime() does not support the Feb 29 if the format does not contain the year

2019-05-18 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 56027ccd6b9dab4a090e4fef8574933fb9a36ff2 by Cheryl Sabella (Abhishek Kumar Singh) in branch 'master': bpo-19376: Added doc mentioning `datetime.strptime()` without a year fails for Feb 29. (GH-10243) https://github.com/python/cpython/commit

[issue36960] Make datetime docs more user-friendly

2019-05-18 Thread Cheryl Sabella
Cheryl Sabella added the comment: See also issue8822. -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue36960> ___ ___ Python-bugs-list m

[issue36960] Make datetime docs more user-friendly

2019-05-18 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +belopolsky, p-ganssle ___ Python tracker <https://bugs.python.org/issue36960> ___ ___ Python-bugs-list mailing list Unsub

[issue24564] shutil.copytree fails when copying NFS to NFS

2019-05-18 Thread Cheryl Sabella
Cheryl Sabella added the comment: Nosying Hynek and Larry, as they had done the original code. -- nosy: +cheryl.sabella, hynek, larry versions: -Python 3.4, Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue24

[issue17774] unable to disable -r in run_tests.py

2019-05-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: Since -r doesn't usually take a value, what would be the best way to implement this? The current implementation always adds -r, so not including '-r' would need to retain the current behavior of randomization. Would something like '--no-random' be a good

[issue31961] subprocess._execute_child doesn't accept a single PathLike argument for args

2019-05-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: gregory.p.smith, I believe Serhiy was looking for a review on PR5914. Maybe it's not too late for this to get into 3.8? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue31

[issue33829] C API: provide new object protocol helper

2019-05-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: It seems that this issue is languishing without any additional comments from the OP. Should it be closed as rejected? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue33

[issue22490] Using realpath for __PYVENV_LAUNCHER__ makes Homebrew installs fragile

2019-05-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: It looks like @ronaldoussoren's pull request was ready to go pending a test with Brew. The PR itself needs a rebase, but is anyone able to finish the testing on this for it to be merged? Thanks! -- nosy: +cheryl.sabella versions: +Python 3.7

[issue27268] Incorrect error message on float('')

2019-05-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: @Drekin, thank you for the report, @Pedro Lacerda, thank you for the pull request, and @Nofar Schnider, thank you for the review. -- resolution: works for me -> fixed stage: patch review -> resolved status: open -&g

[issue27268] Incorrect error message on float('')

2019-05-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 4fa7504ee3184cff064e23fe6799e717ed0f9357 by Cheryl Sabella (Pedro Lacerda) in branch 'master': bpo-27268: Fix incorrect error message on float('') (GH-2745) https://github.com/python/cpython/commit/4fa7504ee3184cff064e23fe6799e717ed0f9357

[issue30509] Optimize calling type slots

2019-05-17 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue30509> ___ ___ Python-bugs-list mailin

[issue33524] non-ascii characters in headers causes TypeError on email.policy.Policy.fold

2019-05-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thank you, @licht-t for the original patch and @maxking for the rebase. Also, thank you, @r.david.murray for the review and merge. -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue33

[issue33524] non-ascii characters in headers causes TypeError on email.policy.Policy.fold

2019-05-17 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue29696] Use namedtuple in string.Formatter.parse iterator response

2019-05-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: It looks like Pablo's patch for this was good, but then closed because the idea was rejected. Should this ticket also be closed as rejected? -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.

[issue19175] Erroneous reference to "integer" in format string grammar

2019-05-17 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Format mini-language integer definition is incorrect ___ Python tracker <https://bugs.python

[issue8425] a -= b should be fast if a is a small set and b is a large set

2019-05-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: @maker, would you be interested in converting your patch to a Github pull request? Thanks! -- nosy: +cheryl.sabella versions: +Python 3.8 -Python 3.4 ___ Python tracker <https://bugs.python.org/issue8

[issue10669] Document Deprecation Warnings and how to fix

2019-05-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: If this is change is still desirable, I think it might be a good issue for someone who had contributed a few patches and is looking for something a little more challenging to work on. -- nosy: +cheryl.sabella, mdk, willingc stage: -> needs pa

[issue36789] Unicode HOWTO incorrectly states that UTF-8 contains no zero bytes

2019-05-17 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35252] test_functools dead code after FIXME

2019-05-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: @lukasz.langa added this FIXME comment originally, so nosying him for a review. -- nosy: +cheryl.sabella, lukasz.langa ___ Python tracker <https://bugs.python.org/issue35

[issue2818] pulldom cannot handle xml file with large external entity properly

2019-05-15 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +scoder versions: +Python 3.8 -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <https://bugs.python.org/issue2

[issue34682] Typo reports on docs@

2019-05-15 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thank you @divyag for the patch and thank you @matrixise for the backport! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue9584] fnmatch, glob: Allow curly brace expansion

2019-05-14 Thread Cheryl Sabella
Cheryl Sabella added the comment: @Matúš Valo, thank you for the pull request and for your interest in contributing to CPython. It seems that consensus hadn't been reached during the previous discussion on this issue, which is why msg175217 suggested creating a discussion on python-dev

[issue32995] Add a glossary entry for context variables

2019-05-14 Thread Cheryl Sabella
Cheryl Sabella added the comment: @vinu2003, thank you for the pull request! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue32995] Add a glossary entry for context variables

2019-05-14 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset c0a1a07c7e9814cad79cce3580c16284b2df7f52 by Cheryl Sabella (Vinodhini Balusamy) in branch 'master': bpo-32995 - Added context variable in glossary (GH-9741) https://github.com/python/cpython/commit/c0a1a07c7e9814cad79cce3580c16284b2df7f52

[issue30491] Add a lightweight mechanism for detecting un-awaited coroutine objects

2019-05-14 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi Nathaniel, Was this something you were still targeting for 3.8? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue30

[issue34424] Unicode names break email header

2019-05-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7 ___ Python tracker <https://bugs.python.or

[issue34424] Unicode names break email header

2019-05-13 Thread Cheryl Sabella
Cheryl Sabella added the comment: David, Thank you for the review and merging into master! I'd be glad to backport this. I believe the only backport would be to 3.7 (master is currently 3.8), but please let me know if it would need to go into a security branch

[issue22021] shutil.make_archive() root_dir do not work

2019-05-13 Thread Cheryl Sabella
Cheryl Sabella added the comment: @giampaolo.rodola, no problem. I intended this more as a general request rather than something for right now. If you do have any availability at some point, please keep this one in mind. Thanks! -- ___ Python

[issue35727] sys.exit() in a multiprocessing.Process does not align with Python behavior

2019-05-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +davin versions: -Python 3.5 ___ Python tracker <https://bugs.python.org/issue35727> ___ ___ Python-bugs-list mailin

[issue34424] Unicode names break email header

2019-05-13 Thread Cheryl Sabella
Cheryl Sabella added the comment: This looks like it was just pending final approval after changes. Please let me know if I can help move it along. Thanks! -- nosy: +cheryl.sabella versions: +Python 3.8 -Python 3.7 ___ Python tracker <ht

[issue22021] shutil.make_archive() root_dir do not work

2019-05-13 Thread Cheryl Sabella
Cheryl Sabella added the comment: @giampaolo.rodola, would you be able to provide a review of this doc change? Thanks! -- nosy: +cheryl.sabella, giampaolo.rodola versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue22

[issue36008] [good first issue] Update documentation for 3.8

2019-05-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue36008] [good first issue] Update documentation for 3.8

2019-05-13 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 3e2afd78babe5bd270e7f3b9df8796eeabc79865 by Cheryl Sabella (Utkarsh Gupta) in branch 'master': bpo-36008: Doc update for 3.8 migration (GH-12887) https://github.com/python/cpython/commit/3e2afd78babe5bd270e7f3b9df8796eeabc79865

[issue36901] Fix leaks in /PC/bdist_wininst/install.c

2019-05-13 Thread Cheryl Sabella
New submission from Cheryl Sabella : /PC/bdist_wininst/install.c contains some memory leaks. PR2142 appears to be abandoned, so a new PR needs to be opened with the changes and also with the additional changes requested by Serhiy. -- components: Installation messages: 342311 nosy

[issue13474] Mention of "-m" Flag Missing From Doc on Execution Model

2019-05-12 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue13474> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35232] Add `module`/`qualname` arguments to make_dataclass for picklability

2019-05-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: @eric.smith Can you take a look at this when you get a chance? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue35

[issue32832] doctest should support custom ps1/ps2 prompts

2019-05-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thank you for the suggestion, but per the discussion with Tim, I am closing as rejected. -- nosy: +cheryl.sabella resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Pytho

[issue22273] abort when passing certain structs by value using ctypes

2019-05-12 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: +Python 3.8 -Python 2.7, Python 3.4, Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue22

[issue36871] Misleading error from unittest.mock's assert_has_calls

2019-05-12 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +lisroach ___ Python tracker <https://bugs.python.org/issue36871> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36888] Create a way to check that the parent process is alive for deamonized processes

2019-05-11 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +davin, pitrou ___ Python tracker <https://bugs.python.org/issue36888> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36783] No documentation for _FromXandFold C API functions

2019-05-07 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker <https://bugs.python

[issue36783] No documentation for _FromXandFold C API functions

2019-05-07 Thread Cheryl Sabella
Cheryl Sabella added the comment: @edison.abahurire, thanks for the PR! -- ___ Python tracker <https://bugs.python.org/issue36783> ___ ___ Python-bugs-list m

[issue36783] No documentation for _FromXandFold C API functions

2019-05-07 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 5765ecf79fcee987f2f97c246c64b494324dfd33 by Cheryl Sabella (Edison A) in branch 'master': bpo-36783: Added C API Documentation for Time_FromTimeAndFold and PyDateTime_FromDateAndTimeAndFold (GH-13147) https://github.com/python/cpython/commit

[issue36275] DOC: venv.create doesn't include prompt parameter

2019-05-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: @skoslowski Thank you for the PR! -- ___ Python tracker <https://bugs.python.org/issue36275> ___ ___ Python-bugs-list mailin

[issue36275] DOC: venv.create doesn't include prompt parameter

2019-05-06 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue36275] DOC: venv.create doesn't include prompt parameter

2019-05-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 3921b1cc34c2fc8b8b480c19a95ec306de710fdd by Cheryl Sabella (Sebastian Koslowski) in branch 'master': bpo-36275: enhance documentation for venv.create() (GH-13114) https://github.com/python/cpython/commit/3921b1cc34c2fc8b8b480c19a95ec306de710fdd

[issue34214] Pylint recusion stack overflow abort

2019-05-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thank you for the research. I'm closing this as third party. -- nosy: +cheryl.sabella resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue29164] make test always fail at 218/405 ( AssertionError: ', ' not found in '1234.5' )

2019-05-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: I'm going to close this as out of date since the OP didn't provide the requested additional information. Please re-open if it can still be recreated. -- nosy: +cheryl.sabella resolution: -> works for me stage: -> resolved status: open -&g

[issue33340] Inaccurate docs on `import` behaviour

2019-05-06 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +brett.cannon type: behavior -> enhancement versions: +Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.org/issu

[issue34682] Typo reports on docs@

2019-05-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: This is a good first issue even though there are multiple changes. Some of the changes are no longer needed since the docs have changed, so please check the current comments and the current docs to see what still needs to be applied. -- keywords

[issue35393] Typo in documentation

2019-05-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: This doc page was re-written as part of bpo-20906, so I am closing this as out of date. -- nosy: +cheryl.sabella resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Issues in U

[issue28002] Some f-strings do not round trip through Tools/parser/test_unparse.py

2019-05-06 Thread Cheryl Sabella
Change by Cheryl Sabella : -- assignee: -> eric.smith versions: +Python 3.7, Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.org/issu

[issue36189] DOC: Correct word in tutorial introduction

2019-05-04 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 2b5ffc02c00b16ede6555391c6965746c8fe554b by Cheryl Sabella (Miss Islington (bot)) in branch '3.7': bpo-36189: Fixing typo in tutorial introduction (GH-13093) https://github.com/python/cpython/commit/2b5ffc02c00b16ede6555391c6965746c8fe554b

[issue36166] DOC: Fix markup on function parameter on datamodel.rst

2019-05-04 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 37125ff6e2f988a14b46525b7df24d2997bee836 by Cheryl Sabella (Miss Islington (bot)) in branch '3.7': bpo-36166: Change to rst datamodel file. (GH-13089) (#13094) https://github.com/python/cpython/commit/37125ff6e2f988a14b46525b7df24d2997bee836

[issue36189] DOC: Correct word in tutorial introduction

2019-05-04 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue36166] DOC: Fix markup on function parameter on datamodel.rst

2019-05-04 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue36189] DOC: Correct word in tutorial introduction

2019-05-04 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 98a1e06c47f655c7601b130cf8d549de9f08369e by Cheryl Sabella (Jonatan) in branch 'master': bpo-36189: Fixing typo in tutorial introduction (GH-13090) https://github.com/python/cpython/commit/98a1e06c47f655c7601b130cf8d549de9f08369e

[issue36166] DOC: Fix markup on function parameter on datamodel.rst

2019-05-04 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 5e98f05e55d13981c7c92fb14b9c013e4227c3c1 by Cheryl Sabella (Catherine Alvarado) in branch 'master': bpo-36166: Change to rst datamodel file. (GH-13089) https://github.com/python/cpython/commit/5e98f05e55d13981c7c92fb14b9c013e4227c3c1

[issue27978] [threading] Executor#shutdown with timeout

2019-04-28 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +pitrou title: Executor#shutdown with timeout -> [threading] Executor#shutdown with timeout versions: +Python 3.8 -Python 3.5 ___ Python tracker <https://bugs.python.org/issu

[issue25810] Python 3 documentation for eval is incorrect

2019-04-26 Thread Cheryl Sabella
Cheryl Sabella added the comment: See also PEP570 and issue 36540. -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue25810> ___ ___ Pytho

[issue35959] math.prod(range(10)) caues segfault

2019-04-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi Pablo, Was this something you still wanted to clean up or can this be closed? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue35

[issue33039] int() and math.trunc don't accept objects that only define __index__

2019-04-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: Rémi, Are you still working on the patch for this? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue33

[issue36277] pdb's recursive debug command is not listed in the docs

2019-04-17 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +easy stage: -> needs patch type: -> enhancement ___ Python tracker <https://bugs.python.org/issue36277> ___ ___

[issue35329] Documentation - capitalization issue

2019-04-15 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi Hans, Would you be interested in making a pull request with this change? Thanks! -- nosy: +cheryl.sabella stage: -> needs patch type: -> enhancement versions: +Python 3.8 ___ Python tracker

[issue26270] Support for read()/write()/select() on asyncio

2019-04-15 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +asvetlov versions: +Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.org/issue26270> ___ ___ Python-bugs-list m

[issue13127] xml.dom.Attr.name is not labeled as read-only

2019-04-14 Thread Cheryl Sabella
Cheryl Sabella added the comment: Stefan, Do you think this should be documented? -- nosy: +cheryl.sabella, scoder ___ Python tracker <https://bugs.python.org/issue13

[issue24417] Type-specific documentation for __format__ methods

2019-04-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue24417> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1402289] Allow mappings as globals (was: Fix dictionary subclass ...)

2019-04-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: -after moratorium nosy: +inada.naoki versions: +Python 3.8 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue1402

[issue36625] Obsolete comments in docstrings in fractions module

2019-04-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +mark.dickinson, rhettinger ___ Python tracker <https://bugs.python.org/issue36625> ___ ___ Python-bugs-list mailin

[issue30519] [threading] Add daemon argument to Timer

2019-04-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- title: Add daemon argument to Timer -> [threading] Add daemon argument to Timer ___ Python tracker <https://bugs.python.org/issu

[issue30519] Add daemon argument to Timer

2019-04-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +pitrou versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue30519> ___ ___ Python-bugs-list m

[issue17259] Document round half to even rule for floats

2019-04-13 Thread Cheryl Sabella
Cheryl Sabella added the comment: It doesn't seem there have been other bugs reported related to this. However, if it's still agreed that the documentation should be clarified, I think a link from `locale.format_string()` (note, format() has been deprecated, hence the change in the name

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2019-04-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 -Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.or

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2019-04-13 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset f8716c88f13f035c126fc1db499ae0ea309c7ece by Cheryl Sabella in branch 'master': bpo-18610: Update wsgiref.validate docstring for wsgi.input read() (GH-11663) https://github.com/python/cpython/commit/f8716c88f13f035c126fc1db499ae0ea309c7ece

[issue31743] Proportional Width Font on Generated Python Docs PDFs

2019-04-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +eric.araujo, ezio.melotti, mdk, willingc ___ Python tracker <https://bugs.python.org/issue31743> ___ ___ Python-bugs-list m

[issue33922] [Windows] Document the launcher's -64 suffix

2019-04-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue36620] Documentation missing parameter for Itertools.zip_longest

2019-04-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks, Charles. I'm going to assign this to @Mariatta for the sprints. -- assignee: docs@python -> Mariatta nosy: +Mariatta ___ Python tracker <https://bugs.python.org/issu

[issue32299] unittest.mock.patch.dict.__enter__ should return the dict

2019-04-12 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +xtreak versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue32299> ___ ___ Python-bugs-list m

[issue31954] Don't prevent dict optimization by coupling with OrderedDict

2019-04-12 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue31954> ___ ___ Python-bugs-list mailin

[issue36620] Documentation missing parameter for Itertools.zip_longest

2019-04-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: Good catch! In the same section, accumulate() is missing the `initial` argument. Would you be interested in submitting a pull request for this? -- nosy: +cheryl.sabella ___ Python tracker <ht

[issue36106] resolve sinpi() name clash with libm

2019-04-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: I'll nosy Ned as the release manager about the request to 3.6. -- nosy: +cheryl.sabella, ned.deily ___ Python tracker <https://bugs.python.org/issue36

[issue28809] mention asyncio.gather non-deterministic task starting order

2019-04-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: I believe the issue mentioned here was addressed by the doc rewrite in issue 33649. I'm going to mark this as a duplicate of that issue, but if the concern here still exists, then please re-open this issue. -- nosy: +cheryl.sabella resolution

[issue34144] venv activate.bat reset codepage fails on windows 10

2019-04-12 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue34805] Explicitly specify `MyClass.__subclasses__()` returns classes in definition order

2019-04-11 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue34805> ___ ___

[issue26205] Inconsistency concerning nested scopes

2019-04-11 Thread Cheryl Sabella
Cheryl Sabella added the comment: Assigning to @Mariatta for the sprints. -- assignee: docs@python -> Mariatta nosy: +Mariatta, cheryl.sabella versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.5, Python 3.6 ___ Python tracker <

[issue17267] datetime.time support for '+' and '-'

2019-04-11 Thread Cheryl Sabella
Cheryl Sabella added the comment: It seems that there was interest in this enhancement a few years ago. @joar, would you be able to convert your patch to a GitHub pull request on the master branch? Thanks! -- nosy: +cheryl.sabella versions: +Python 3.8 -Python 3.4

[issue19770] NNTP: add post_message wrapper to post Email Message objects

2019-04-11 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks David! If someone is looking for an issue to work on, I'll keep this one in mind with the caveat that it won't be reviewed during the sprints. And if no one works on it at that time, then it might be a good first issue afterwards. I'm updating

[issue13927] Document time.ctime format

2019-04-11 Thread Cheryl Sabella
Cheryl Sabella added the comment: I guess what I'm thinking of `Www Mmm dd hh:mm:ss ` as representing isn't so much a format, but rather a literal replacement of where each value has a placeholder in the string (that is, a pattern). So, even if `Www` doesn't mean anything, to me

[issue13927] Document time.ctime format

2019-04-11 Thread Cheryl Sabella
Cheryl Sabella added the comment: I would like to help get this issue merged as it's already been approved by a core developer. Does anyone object to the change? Victor made a suggestion on the PR for alternative wording and I wanted to give others a chance to comment on that. Also

[issue35232] Add `module`/`qualname` arguments to make_dataclass for picklability

2019-04-11 Thread Cheryl Sabella
Change by Cheryl Sabella : -- type: -> enhancement versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue35232> ___ ___ Python-

[issue18564] Integer overflow in socketmodule

2019-04-10 Thread Cheryl Sabella
Cheryl Sabella added the comment: Michele Orrù, Would you be interested in making a GitHub pull request for your patch? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue18

[issue24116] --with-pydebug has no effect when the final python binary is compiled

2019-04-10 Thread Cheryl Sabella
Cheryl Sabella added the comment: If this is a documentation issue on the build, then I think this issue should be moved to the devguide repo on GitHub. I'm not sure if it's still unclear though, so maybe this could just be closed? -- nosy: +cheryl.sabella

[issue19770] NNTP.post broken

2019-04-10 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi David, You wrote: > It might be worth adding a post_message method, analogous to the send_message > method I added to smtplib. Do you still think this would be worthwhile to add? If so, do you think this would be a good task for someone t

[issue19476] Add a dedicated specification for module "reloading" to the language reference

2019-04-10 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi Eric, Is this still a concern since PEP 451 has been implemented for over 5 years now? Thanks! -- nosy: +cheryl.sabella -BreamoreBoy ___ Python tracker <https://bugs.python.org/issue19

[issue30612] Unusual Windows registry path syntax

2019-04-10 Thread Cheryl Sabella
Cheryl Sabella added the comment: @chrullrich, were you still interested in creating a PR for this? Thanks! -- nosy: +cheryl.sabella versions: +Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.org/issue30

[issue24011] Add error checks to PyInit_signal()

2019-04-10 Thread Cheryl Sabella
Change by Cheryl Sabella : -- stage: patch review -> needs patch versions: +Python 3.7, Python 3.8 -Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/issu

[issue21318] sdist fails with symbolic links do non-existing files

2019-04-10 Thread Cheryl Sabella
Cheryl Sabella added the comment: This was fixed under issue 12885. -- nosy: +cheryl.sabella resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> distutils.filelist.findall() fails on broken syml

[issue34698] urllib.request.Request.set_proxy doesn't (necessarily) replace type

2019-04-10 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +orsenthil versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue34698> ___ ___ Python-bugs-list mailin

<    1   2   3   4   5   6   7   8   9   10   >