[issue1529353] Squeezer - squeeze large output in the interpreter

2018-06-13 Thread Cheryl Sabella
Cheryl Sabella added the comment: 6. Sorry about being so vague. I was referring to the configuration page having an option to hide/show the tooltip. I wasn't sure if that was a necessary config option. -- ___ Python tracker &

[issue34609] Idle Unitest

2018-09-07 Thread Cheryl Sabella
Cheryl Sabella added the comment: I have Python 3.6.5 on Ubuntu 18.04. Initially, I was unable to recreate the issue. However, issue33065 from 4 months ago has the same trace (except on a different import), so I tried stepping through debug using the minimal example that Terry gave and

[issue34609] Idle Unitest

2018-09-07 Thread Cheryl Sabella
Cheryl Sabella added the comment: Just to help track this down, 'import math' does not cause the trace, but 'import email' does. It seems to be modules that have a loader function. My guess (but I haven't tried it yet) is that this would happen if stepping throug

[issue34605] Avoid master/slave terminology

2018-09-08 Thread Cheryl Sabella
Cheryl Sabella added the comment: This is certainly a topic that generates a lot of opinions both ways, not just here, but on many other projects. Based on that, I don't think it's fair to blame Victor for bringing it up for discussion. This is and has been an industry discussio

[issue34609] Idle Unitest

2018-09-10 Thread Cheryl Sabella
Cheryl Sabella added the comment: Following up, I was able to recreate under 3.8 using pdb in powershell, so it's not just in IDLE. Traceback (most recent call last): File "N:\projects\cpython\lib\pdb.py", line 1697, in main pdb._runscript(mainpyfile) File "N:\

[issue34548] IDLE: Make TextView use the configured theme colors

2018-09-22 Thread Cheryl Sabella
Cheryl Sabella added the comment: I did a review on the PR which probably answers your question, but I'll summarize here. I think consistency in the windows would be good. Consistency would include (but not limited to) foreground and background color, font style, font size, and beh

[issue34774] IDLE: use theme colors for help viewer

2018-09-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: This is working on Ubuntu. Probably not a big deal, but because the help viewer is not modal, it's possible to change the theme with the help window open and the text isn't updated on the help window. If the help is closed and reopened, then the

[issue34334] QueueHandler logs exc_info twice

2018-09-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: I debugged this issue and found that `format()` is being called twice and appending the traceback twice. The first call - QueueHandler.emit() -> QueueHandler.prepare() -> self.format() (which is the default Formatter) -- this gets called with se

[issue34334] QueueHandler logs exc_info twice

2018-09-24 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +8939 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue34334> ___ ___ Py

[issue31084] QueueHandler not formatting messages

2018-09-24 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +8947 ___ Python tracker <https://bugs.python.org/issue31084> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34334] QueueHandler logs exc_info twice

2018-09-25 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi Vinay, Thanks for the explanation! I'm good with changing the PR. I do have one question though. You wrote - > but I forgot that record.exc_text should also be zapped, as it should always > reflect the contents of record.exc_info. B

[issue34334] QueueHandler logs exc_info twice

2018-09-25 Thread Cheryl Sabella
Cheryl Sabella added the comment: Great, thanks. I've made the other changes to the PR. -- ___ Python tracker <https://bugs.python.org/issue34334> ___ ___

[issue18578] Rename and document test.bytecode_helper as test.support.bytecode_helper

2018-09-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: @seydou, would you be interested in making a GitHub pull request for your patch? -- assignee: -> docs@python components: +Documentation, Tests nosy: +cheryl.sabella, docs@python stage: -> needs patch type: -> enhancement versions: +P

[issue9056] Adding additional level of bookmarks and section numbers in python pdf documents.

2018-09-28 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +9026 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/iss

[issue29001] logging.handlers.RotatingFileHandler rotation broken under gunicorn

2018-09-28 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +vinay.sajip versions: +Python 3.8 -Python 2.7 ___ Python tracker <https://bugs.python.org/issue29001> ___ ___ Python-bug

[issue34839] doctest: Change example under warnings section

2018-09-28 Thread Cheryl Sabella
New submission from Cheryl Sabella : The Warnings section of the doctest documentation (https://docs.python.org/3.8/library/doctest.html#warnings) contains an example that the printing order of a dictionary is not guaranteed. Since it is now guaranteed to be insertion order, perhaps the

[issue34843] logging cookbook docs: remove 'recent' when referring to multiprocessing

2018-09-29 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +9028 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue34843> ___ ___ Py

[issue34843] logging cookbook docs: remove 'recent' when referring to multiprocessing

2018-09-29 Thread Cheryl Sabella
New submission from Cheryl Sabella : In the logging cookbook docs, the word 'recent' is used to describe versions of Python containing the multiprocessing module. Since multiprocessing is 10 years old, I think it may be safe to remove the word 'recent'. -- a

[issue34835] Multiprocessing module update fails with pip3

2018-09-29 Thread Cheryl Sabella
Cheryl Sabella added the comment: As Steven said, > In Python 2.6+ multiprocessing is a std lib module This means that multiprocessing will be current with the version of Python 3 that you have installed. If you're currently on 3.7.0, when 3.7.1 is released and you install it, you

[issue32606] Email Header Injection Protection Bypass

2018-09-29 Thread Cheryl Sabella
Cheryl Sabella added the comment: Should this be closed as 'not a bug'? -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue32606> ___ __

[issue32808] subprocess.check_output opens an unwanted command line window after fall creator update

2018-09-30 Thread Cheryl Sabella
Cheryl Sabella added the comment: @Christian Heigele Any additional information re: msg312034? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue32

[issue27165] Skip callables when displaying exception fields in cgitb

2018-10-03 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi Adam, Are you interested in converting your patch to a GitHub pull request? Thanks! -- nosy: +cheryl.sabella versions: +Python 3.8 -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.

[issue11233] clarifying Availability: Unix

2018-10-03 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hello, It doesn't appear that this patch was ever merged. If there's still interest, would it be OK for me to convert it to a PR? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bu

[issue31660] sys.executable different in os.execv'd python3.6 virtualenv session in python2 vs python3

2018-10-03 Thread Cheryl Sabella
Cheryl Sabella added the comment: The original OP said this wasn't an issue with venv, so closing as not a bug. -- nosy: +cheryl.sabella resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python t

[issue11233] clarifying Availability: Unix

2018-10-03 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +9079 ___ Python tracker <https://bugs.python.org/issue11233> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11233] clarifying Availability: Unix

2018-10-03 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks, Fred. I've submitted the PR. -- ___ Python tracker <https://bugs.python.org/issue11233> ___ ___ Python-bugs-l

[issue11233] clarifying Availability: Unix

2018-10-03 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: +Python 3.8 -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue11233> ___ ___ Python-bugs-list m

[issue34839] doctest: Change example under warnings section

2018-10-05 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks for the discussion. I'll mark this as 'easy' for a first-time contribution. -- keywords: +easy stage: -> needs patch ___ Python tracker <https://bugs.

[issue33173] GzipFile's .seekable() returns True even if underlying buffer is not seekable

2018-10-05 Thread Cheryl Sabella
Cheryl Sabella added the comment: Allowing for non seekable files was added in issue1675951. And under that issue in msg117131, the author of the change wrote: "The patch creates another problem with is not yet fixed: The implementation of .seekable() is becoming wrong. As one can no

[issue26441] email.charset: to_splittable and from_splittable are not there anymore!

2018-10-09 Thread Cheryl Sabella
Change by Cheryl Sabella : -- assignee: -> docs@python components: +Documentation -email keywords: +easy nosy: +docs@python stage: -> needs patch type: -> enhancement versions: +Python 3.8 -Python 3.5, Python 3.6 ___ Python tracke

[issue20216] Misleading docs for sha1, sha256, sha512, md5 modules

2018-10-09 Thread Cheryl Sabella
Cheryl Sabella added the comment: @vajrasky, Would you be interested in converting your patch to a GitHub pull request? Thanks! -- nosy: +cheryl.sabella stage: -> needs patch versions: +Python 3.8 -Python 3.4, Python 3.5, Python 3.6 ___ Pyt

[issue23892] Introduce sys.implementation.opt_levels

2018-10-12 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +9201 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue23892] Introduce sys.implementation.opt_levels

2018-10-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: Brett, I know you're away this month, so please ignore this, Eric, I hope the changes I made reflect your original intent in the code review for #23731. This is my first change to the C code, so I hope it's close. The tests passed, so it must

[issue32052] Provide access to buffer of asyncio.StreamReader

2018-10-12 Thread Cheryl Sabella
Change by Cheryl Sabella : -- dependencies: +Add asyncio.BufferedProtocol stage: -> needs patch versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issu

[issue23554] EchoServerClientProtocol class should be called EchoServerProtocol

2018-10-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: Here's a link to the example that the original OP is referring to: https://docs.python.org/3/library/asyncio-protocol.html?highlight=echoserverclientprotocol#tcp-echo-server Since this doc page was recently rewritten, I'm not sure if this

[issue11233] clarifying Availability: Unix

2018-10-12 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +9204 ___ Python tracker <https://bugs.python.org/issue11233> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23554] EchoServerClientProtocol class should be called EchoServerProtocol

2018-10-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks @asvetlov. I'm going to mark this as an Easy Documentation issue, good for a first-time contributor. -- keywords: +easy stage: -> needs patch type: -> enhancement ___ Python trac

[issue31522] _mboxMMDF.get_string() fails to pass param to get_bytes()

2018-10-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +9225 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue31522> ___ ___ Py

[issue31522] _mboxMMDF.get_string() fails to pass param to get_bytes()

2018-10-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: +Python 3.8 -Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.org/issue31522> ___ ___ Python-bug

[issue34976] IDLE: Replace the search dialog with a search bar

2018-10-14 Thread Cheryl Sabella
Cheryl Sabella added the comment: +1 on adding this to IDLE I haven't looked at the code or all the details yet, but just downloading the patch and running code in IDLE, this is a nice change. -- ___ Python tracker <https://bugs.py

[issue17561] Add socket.create_server_sock() convenience function

2018-10-14 Thread Cheryl Sabella
Cheryl Sabella added the comment: Since Tulip/asyncio has gone through a lot of development since this issue was added, I wasn't sure if this has been included already or if there was still interest in it. In either case, I think it might be able to be closed, but I wanted to make

[issue11233] clarifying Availability: Unix

2018-10-15 Thread Cheryl Sabella
Cheryl Sabella added the comment: And thank you, Victor, for reviewing and merging! :-) -- ___ Python tracker <https://bugs.python.org/issue11233> ___ ___ Pytho

[issue14911] generator.throw() documentation inaccurate

2018-10-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: It seems that this patch was close to being merged. Would it be helpful for me to create a PR for it over 3.8? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue14

[issue20582] socket.getnameinfo() does not document flags

2018-10-17 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +easy stage: -> needs patch type: -> enhancement versions: +Python 3.8 -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker <https://bugs.python.org/i

[issue27405] Ability to trace Tcl commands executed by Tkinter

2018-10-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: Seems like this didn't make 3.7. Would it be good to make a PR targeting 3.8? -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/is

[issue35015] availability directive breaks po files

2018-10-18 Thread Cheryl Sabella
Cheryl Sabella added the comment: Do you think it needs to be added to Doc\tools\templates? -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue35

[issue35015] availability directive breaks po files

2018-10-18 Thread Cheryl Sabella
Cheryl Sabella added the comment: Sorry, I meant dummy.html in Docs\tools\templates. -- ___ Python tracker <https://bugs.python.org/issue35015> ___ ___ Pytho

[issue35015] availability directive breaks po files

2018-10-18 Thread Cheryl Sabella
Cheryl Sabella added the comment: I found this in the Sphinx doc. This works on the English-language build OK, so I'm not sure if it's the cause of the issue. http://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html#gotchas > No nested inline markup: Something li

[issue35150] Misc/README.valgrind out-of-date

2018-11-02 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thank you for the report. Closing as a duplicate of issue32666. -- nosy: +cheryl.sabella resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Valgrind documentation seems to n

[issue9056] Adding additional level of bookmarks and section numbers in python pdf documents.

2018-11-15 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +cheryl.sabella, mdk versions: +Python 3.8 -Python 3.3 ___ Python tracker <https://bugs.python.org/issue9056> ___ ___ Pytho

<    9   10   11   12   13   14