[issue36207] robotsparser deny all with some rules

2019-03-18 Thread Cheryl Sabella
Cheryl Sabella added the comment: Can you provide a link to documentation showing that "Disallow: ?" shouldn't be the same as deny all? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.pyt

[issue29717] `loop.add_reader` and `<

2019-03-19 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +asvetlov -gvanrossum versions: +Python 3.8 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue29717> ___ ___ Pytho

[issue28937] str.split(): remove empty strings when sep is not None

2019-03-19 Thread Cheryl Sabella
Cheryl Sabella added the comment: @ebarry, any interest in converting your patch to a GitHub pull request? Thanks! -- nosy: +cheryl.sabella versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue28

[issue32147] improve performance of binascii.unhexlify() by using conversion table

2019-03-19 Thread Cheryl Sabella
Cheryl Sabella added the comment: Since this PR was merged, can the issue be closed? -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue32

[issue18016] subprocess should open stdin in mode w+b on windows

2019-03-19 Thread Cheryl Sabella
Cheryl Sabella added the comment: Since Steve was inclined to close this in 2014 and there haven't been any additional comments since then, I am going to close this now. -- nosy: +cheryl.sabella resolution: -> works for me stage: -> resolved status: ope

[issue26103] Contradiction in definition of "data descriptor" between (dotted lookup behavior/datamodel documentation) and (inspect lib/descriptor how-to)

2019-03-19 Thread Cheryl Sabella
Cheryl Sabella added the comment: It looks like this issue can be closed now that it's merged? -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/is

[issue26517] Crash in installer

2019-03-19 Thread Cheryl Sabella
Cheryl Sabella added the comment: Closing this as 'works for me' as no additional information had been provided by the OP to help reproduce the issue. -- nosy: +cheryl.sabella resolution: -> works for me stage: -> resolved status

[issue33635] OSError when using pathlib.Path.rglob() to list device files

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

[issue30668] DOC: missing word in license.rst

2019-03-20 Thread Cheryl Sabella
Cheryl Sabella added the comment: The first note was fixed, but the second still remains. Assigning to @Mariatta for the sprints. -- assignee: docs@python -> Mariatta nosy: +Mariatta -christian.heimes, docs@python stage: -> needs patch versions: +Python 3.8 -Pyth

[issue33406] [ctypes] increase the refcount of a callback function

2019-03-20 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue33406> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21960] Better path handling in Idle find in files

2019-03-20 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> duplicate stage: test needed -> resolved status: open -> closed superseder: -> IDLE: always display full grep path ___ Python tracker <https://bugs.python

[issue36323] IDLE: always display full grep path

2019-03-20 Thread Cheryl Sabella
Cheryl Sabella added the comment: See also #21960. I'm going to close that one in favor of this issue. -- ___ Python tracker <https://bugs.python.org/is

[issue33964] IDLE maxosc.overrideRootMenu: remove unused menudict

2019-03-20 Thread Cheryl Sabella
Cheryl Sabella added the comment: Since there's a `self.menudict` in the editor, I wonder if this was intended for that. The `self.menudict` is used in `ApplyKeyBindings`, which is called when the key bindings change in configdialog. So, if the mac OS menu isn't added to `sel

[issue36390] IDLE: Refactor formatting methods from editor

2019-03-21 Thread Cheryl Sabella
New submission from Cheryl Sabella : In editor.py, there are several methods (indent, dedent, comment, uncomment, tabify, untabify) that are event handlers for formatting text. To simplify testing and to simplify the EditorWindow class, refactor these methods into their own method. This

[issue36390] IDLE: Refactor formatting methods from editor

2019-03-21 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +12433 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36390> ___ ___ Py

[issue36390] IDLE: Refactor formatting methods from editor

2019-03-21 Thread Cheryl Sabella
Cheryl Sabella added the comment: Refactoring the methods was relatively straight forward, but I did have some questions: 1. The name `formatregion` could probably be improved. 2. The `classifyws` method is a module level method in editor. It's needed in `formatregion` also, so I m

[issue30903] IPv4Network's hostmask attribute doesn't returns string value as mentioned in Documentation.

2019-03-21 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thank you for the report. This was fixed as part of PR6021. There was no bpo ticket for that pull request. -- nosy: +cheryl.sabella resolution: -> fixed stage: -> resolved status: open -> closed _

[issue35528] [DOC] [LaTeX] Sphinx 2.0 uses GNU FreeFont as default for xelatex

2019-03-21 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +mdk ___ Python tracker <https://bugs.python.org/issue35528> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32142] heapq.heappop - documentation misleading or doesn't work

2019-03-21 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue32142> ___ ___

[issue31369] re.RegexFlag is not included in __all__

2019-03-21 Thread Cheryl Sabella
Cheryl Sabella added the comment: @ethan.furman, since you had originally added RegexFlag in #28082, do have an opinion on this? Thanks. -- nosy: +cheryl.sabella, ethan.furman versions: +Python 3.8 -Python 3.6 ___ Python tracker <ht

[issue31470] Py_Initialize documentation wrong

2019-03-21 Thread Cheryl Sabella
Cheryl Sabella added the comment: Issue 32124 changed the documentation to define the C functions that are safe to call before Py_Initialize. I am going to close this with that as a superseder. Please reopen this if that issue didn't address all the concerns. Thanks! --

[issue32679] concurrent.futures should store full sys.exc_info()

2019-03-21 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +bquinlan, pitrou versions: -Python 3.4, Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue32

[issue31495] Wrong offset with IndentationError ("expected an indented block")

2019-03-21 Thread Cheryl Sabella
Cheryl Sabella added the comment: I've retested this under 3.8 and the caret is now positioned at the first character in the line, therefore I'm closing this issue as resolved. -- nosy: +cheryl.sabella resolution: -> works for me stage: -> resolved status: open -&

[issue23205] Unit test needed for IDLE's GrepDialog.py's findfiles()

2019-03-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset d60f658fc0278f3fcdadec8ddcab35b8ae03e1d1 by Cheryl Sabella in branch 'master': bpo-23205: IDLE: Add tests and refactor grep's findfiles (GH-12203) https://github.com/python/cpython/commit/d60f658fc0278f3fcdadec8dd

[issue23205] Unit test needed for IDLE's GrepDialog.py's findfiles()

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

[issue32217] freeze.py fails to work.

2019-03-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset a7987e71939fa631296f83861fb376361ddd59ee by Cheryl Sabella (AraHaan) in branch 'master': bpo-32217: Correct usage of ABI tags in freeze. (GH-4719) https://github.com/python/cpython/commit/a7987e71939fa631296f83861fb376

[issue32217] freeze.py fails to work.

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

[issue32217] freeze.py fails to work.

2019-03-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thank you @Decorater for the report and PR. -- ___ Python tracker <https://bugs.python.org/issue32217> ___ ___ Python-bug

[issue13828] Further improve casefold documentation

2019-03-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: Assigning to @Mariatta for the sprints. -- assignee: docs@python -> Mariatta nosy: +Mariatta, cheryl.sabella stage: -> needs patch versions: +Python 3.7, Python 3.8 -Python 3.3 ___ Python tracker

[issue23205] Unit test needed for IDLE's GrepDialog.py's findfiles()

2019-03-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: On linux, grep does depth first, so searching for 'idle' from Lib.idlelib returns: --- cut --- help.py history.py idle.py all of idle_test/ __init__.py iomenu.py --- cut --- Although, within idle_test, the files aren't in alphabetical order.

[issue11644] Cross-link 2to3 documentation, what’s new and pyporting howto

2019-03-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: Since the HOWTO for Porting from 2 to 3 was created in February 2011, there have been many updates over time to improve that document. It seems to me that it is thorough in its explanation, including the suggestion of upgrading to 2.7 before converting to

[issue11644] Cross-link 2to3 documentation, what’s new and pyporting howto

2019-03-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks, Eric! -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue32823] Regression in test -j behavior and time in 3.7.0b1

2019-03-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: Terry, Do you still see this happening? When I run the tests on Windows 10 with 12 CPUs (using -j0), the tests run quickly with just the last one taking more time. 0:01:42 [418/420] test_socket passed (40 sec 239 ms) -- running: test_multiprocessing_spawn

[issue25614] Lib/code.py: InteractiveConsole.raw_input writes prompt to stdout

2019-03-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: Since there was no additional information provided by the original poster, I'm going to close this. Feel free to reopen if there is a use case. -- nosy: +cheryl.sabella resolution: -> not a bug stage: -> resolved status: ope

[issue22503] Signal stack overflow in faulthandler_user

2019-03-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: The bug ticket link provided by @schwab was resolved as closed in 2015. Is this ticket still an issue on aarch64? Other tickets with same error on other platforms: Issue35484, Issue21131 -- nosy: +cheryl.sabella

[issue31822] Document that urllib.parse.{Defrag, Split, Parse}Result are namedtuples

2019-03-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 13c1f72cd1d91fdc2654f2f57356b2eacb75f164 by Cheryl Sabella (Lisa Roach) in branch 'master': bpo-31822: Document that urllib.parse.{Defrag,Split,Parse}Result are namedtuples (GH-4434) https://github.com/python/cpyt

[issue36418] urllib.parse.*Result: support _replace for additional computed addresses

2019-03-24 Thread Cheryl Sabella
New submission from Cheryl Sabella : In msg338645 on issue31822, Fred Drake wrote: > Unfortunately, when the implementation [of urllib.parse.*Result] was migrated > to use collections.namedtuple (a benefit), the _replace method wasn't > extended to support the additional comp

[issue31822] Document that urllib.parse.{Defrag, Split, Parse}Result are namedtuples

2019-03-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks @Allen Li for the initial report, @lisroach for the PR, and @eric.araujo for the review. Issue 36418 has been opened to track @fdrake's request in msg338645. -- nosy: -miss-islington resolution: -> fixed stage: patch review -&g

[issue22327] test_gdb failures on Ubuntu 14.10

2019-03-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: I'm going to close this issue as out of date since Ubuntu 14.10 is an older release and this doesn't seem to happen on later releases. Please reopen if it's still an issue. -- nosy: +cheryl.sabella resolution: -> out of date s

[issue34098] multiprocessing.Server swallows original exception traceback

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

[issue34085] doc Improve wording on classmethod/staticmethod

2019-03-25 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 548cb6060ab9d5a66931ea2be4da08c2c72c9176 by Cheryl Sabella (Andre Delfino) in branch 'master': bpo-34085: Improve wording on classmethod/staticmethod (#8228) https://github.com/python/cpython/commit/548cb6060ab9d5a66931ea2be4da08

[issue34085] doc Improve wording on classmethod/staticmethod

2019-03-25 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks for the report and the PR, Andrés! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue34085] doc Improve wording on classmethod/staticmethod

2019-03-25 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue34085> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13282] the table of contents in epub file is too long

2019-03-26 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +ezio.melotti, mdk, willingc type: -> enhancement versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.2 ___ Python tracker <https://bugs.python.org/issu

[issue35165] Possible wrong method name in attribute references doc

2019-03-26 Thread Cheryl Sabella
Cheryl Sabella added the comment: > Or maybe just link to > https://docs.python.org/3/reference/datamodel.html#object.__getattr__ (which > mention about it) will be enough. In section 6.3.1, __getattr__() is already linked to the datamodel page referenced. As your suggested

[issue31466] No easy way to change float formatting when subclassing encoder.JSONEncoder

2019-03-26 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: +Python 3.7, Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.org/issue31466> ___ ___ Python-bugs-list m

[issue30337] Vague wording of pkgutil.walk_packages parameter 'prefix'

2019-03-26 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue30337> ___ ___ Python-bugs-list mailin

[issue32312] Create Py_AtExitRegister C API

2019-03-27 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue32312> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6422] timeit called from within Python should allow autoranging

2019-03-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hello Steven, Were you working on the additional functionality that you mentioned in msg272704 or would that be open for someone else to do? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <ht

[issue25251] Unknown MS Compiler version 1900

2019-03-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: Should this issue be closed as third-party or do we want to leave it open as reference? -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue25

[issue16995] Add Base32 support for RFC4648 "Extended Hex" alphabet (patch attached)

2019-03-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: Is there interest in having this patch converted to a pull request? -- nosy: +cheryl.sabella versions: +Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.org/issue16

[issue31292] `python setup.py check --restructuredtext` fails when a include directive is present.

2019-03-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset d5a5a33f12b60129d57f9b423b77d2fcba506834 by Cheryl Sabella (Philipp A) in branch 'master': bpo-31292: Fixed distutils check --restructuredtext for include directives (GH-10605) https://github.com/python/cpyt

[issue31292] `python setup.py check --restructuredtext` fails when a include directive is present.

2019-03-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks @flying sheep for the PR and @merwok for the review! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 2.7, Python 3.8 -Python 3.5, Python 3.6 _

[issue33953] The DEFAULT_ENTROPY variable used to store the current default random bytes value should be documented for `secrets` module

2019-03-27 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +rhettinger versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue33953> ___ ___ Python-bugs-list mailin

[issue31327] bug in dateutil\tz\tz.py

2019-03-27 Thread Cheryl Sabella
Change by Cheryl Sabella : -- stage: -> needs patch versions: +Python 3.7, Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.org/issu

[issue6422] timeit called from within Python should allow autoranging

2019-03-28 Thread Cheryl Sabella
Cheryl Sabella added the comment: Steven, Thank you. Yes, I was thinking the same thing. But it might be better at this point for that change to have its own ticket, so I'll open a new issue for it. -- ___ Python tracker &

[issue36461] timeit: Additional changes for autorange

2019-03-28 Thread Cheryl Sabella
New submission from Cheryl Sabella : #6422 implemented the autorange function for timeit, but in msg272704, Steven D'Aprano outlined follow-up change requests to that patch. - make the 0.2s time configurable; - have `timeit` and `repeat` methods (and functions) fall back on `autorang

[issue6422] timeit called from within Python should allow autoranging

2019-03-28 Thread Cheryl Sabella
Cheryl Sabella added the comment: The new ticket is #36461. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.o

[issue36461] timeit: Additional changes for autorange

2019-03-28 Thread Cheryl Sabella
Cheryl Sabella added the comment: Assigning to @Mariatta for the sprints. -- assignee: -> Mariatta nosy: +Mariatta ___ Python tracker <https://bugs.python.org/issu

[issue36461] timeit: Additional changes for autorange

2019-03-28 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +steven.daprano ___ Python tracker <https://bugs.python.org/issue36461> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36566] Support password masking in getpass.getpass()

2019-04-08 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thank you for the suggestion. I believe this is a duplicate of issue 32884. -- nosy: +cheryl.sabella resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Adding the ability for getpass to print asterisks w

[issue36567] DOC: manpage directive doesn't create hyperlink

2019-04-08 Thread Cheryl Sabella
New submission from Cheryl Sabella : The `manpage` directive in the docs is not creating a hyperlink to the Unix manual page. As of Sphinx 1.7, the `manpage` directive needs to have a `manpages_url` defined in the conf.py file. [1] http://www.sphinx-doc.org/en/master/usage/restructuredtext

[issue33456] site.py: by default, a virtual environment is *not* isolated from the system-level site-packages directories

2019-04-08 Thread Cheryl Sabella
Change by Cheryl Sabella : -- assignee: -> docs@python components: +Documentation -Library (Lib) nosy: +cheryl.sabella, docs@python, vinay.sajip versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issu

[issue19992] subprocess documentation not explicit about fileno()

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

[issue33601] [EASY DOC] Py_UTF8Mode is not documented

2019-04-08 Thread Cheryl Sabella
Change by Cheryl Sabella : -- assignee: docs@python -> Mariatta keywords: -patch nosy: +Mariatta stage: patch review -> needs patch type: -> enhancement ___ Python tracker <https://bugs.python.or

[issue28043] Sane defaults for SSLContext options and ciphers

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

[issue24743] Make _PyTraceback_Add public

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

[issue26389] Expand traceback module API to accept just an exception as an argument

2019-04-08 Thread Cheryl Sabella
Cheryl Sabella added the comment: The last comment on the original PR for this issue was to wait until an API was decided upon before proceeding with creating a new PR. Bumping this issue to generate new discussion and hopefully reach concession on an API. -- nosy: +cheryl.sabella

[issue25922] canceling a repair install breaks the ability to uninstall, repair, or re-install

2019-04-08 Thread Cheryl Sabella
Cheryl Sabella added the comment: Going to close this as the original OP didn't provide the additional information that was requested. Feel free to reopen if additional info is provided. -- nosy: +cheryl.sabella resolution: -> not a bug stage: -> resolved status: ope

[issue28351] statistics.geometric_mean can enter infinite loop for Decimal inputs

2019-04-08 Thread Cheryl Sabella
Cheryl Sabella added the comment: The new version of geometric_mean does not enter an infinite loop for this example, so I am going to close this issue as out of date. -- nosy: +cheryl.sabella, rhettinger resolution: -> out of date stage: -> resolved status: open -> closed

[issue34060] regrtest: log "CPU usage" on Windows

2019-04-09 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset e16467af0bfcc9f399df251495ff2d2ad20a1669 by Cheryl Sabella (Ammar Askar) in branch 'master': bpo-34060: Report system load when running test suite for Windows (GH-8357) https://github.com/python/cpyt

[issue34060] regrtest: log "CPU usage" on Windows

2019-04-09 Thread Cheryl Sabella
Cheryl Sabella added the comment: I've merged PR8357. I believe PR8287 can be closed now with PR8357 as the superseder? Thank you to everyone for your contributions to this discussion! -- ___ Python tracker <https://bugs.python.org/is

[issue34152] performance of some list slice assignment margin cases can be improved

2019-04-09 Thread Cheryl Sabella
Cheryl Sabella added the comment: @rhettinger recommended against this suggestion last July. I'm bumping this for others to comment and to recommend closing the issue and PR if it's not going to move forward. Nosying Pablo since he commented on the PR. -- nosy: +cher

[issue34139] Remove stale unix datagram socket before binding

2019-04-09 Thread Cheryl Sabella
Change by Cheryl Sabella : -- type: -> enhancement versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue34139> ___ ___ Python-bugs-list mai

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

2019-04-09 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +steve.dower ___ Python tracker <https://bugs.python.org/issue34144> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34110] cPickle may raise AttributeError when loading concurrently in threads

2019-04-09 Thread Cheryl Sabella
Cheryl Sabella added the comment: Adding @pitrou to the nosy list as he last modified the section of code changed in the PR. -- nosy: +cheryl.sabella, pitrou versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue34

[issue29707] os.path.ismount() always returns false for mount --bind on same filesystem

2019-04-09 Thread Cheryl Sabella
Cheryl Sabella added the comment: Can this be closed as a documentation only change? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue29

[issue35181] Doc: Namespace Packages: Inconsistent documentation of __loader__ being None

2019-04-09 Thread Cheryl Sabella
Cheryl Sabella added the comment: @barry, you started a review of PR10016 and I believe all your requested changes have been made, so please review again when you get a chance. Please also take a look at PR10376. Thanks! -- nosy: +cheryl.sabella type: -> enhancement versi

[issue33387] Simplify bytecodes for try-finally, try-except and with blocks.

2019-04-09 Thread Cheryl Sabella
Cheryl Sabella added the comment: What would be the best way to resolve the discussion between this and issue 32949? Would it be good to try to get one of them into 3.8? -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.

[issue29858] inspect.signature includes bound argument for wrappers around decorated bound methods

2019-04-09 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: +Python 3.8 -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue29858> ___ ___ Python-bugs-list m

[issue29284] Include thread_name_prefix in the concurrent.futures.ThreadPoolExecutor example 17.4.2.1

2019-04-10 Thread Cheryl Sabella
Cheryl Sabella added the comment: This seems like a reasonable request. A description of `thread_name_prefix` should probably also be added to the body of the class description instead of just in the versionadded directive. Assigning to @Mariatta for the sprints. Nosying @gregory.p.smith

[issue32008] Example suggest to use a TLSv1 socket

2019-04-10 Thread Cheryl Sabella
Cheryl Sabella added the comment: @christian.heimes, this one looks ready to merge and close. Please take a look when you get a chance. Thanks! -- ___ Python tracker <https://bugs.python.org/issue32

[issue28626] Tutorial: rearrange discussion of output formatting to encourage f-strings

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

[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

[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

[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

[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

[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

[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 to work

[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: +cher

[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

[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-

[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.

[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 any

[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'

[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

[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 <

[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> ___ ___

[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

[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 resol

<    4   5   6   7   8   9   10   11   12   13   >