[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

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

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

[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'. -- assignee: docs@python

[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

[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

[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

[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

[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

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

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

[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-24 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +8939 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue34334> ___ ___ Py

[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

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

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

[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:\proje

[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 discussion for many

[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 through pdb outside of IDLE too

[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

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

[issue1529353] Squeezer - squeeze large output in the interpreter

2018-06-11 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks for the PR, Tal. I've started looking at it and I have just a few initial observations: 1. Serhiy's msg211068 still happens. I tried his example of print('a'*100). There was a noticeable delay before the button was created, then a button

[issue17286] Make subprocess handling text output with universal_newlines more obious

2018-06-11 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> duplicate stage: needs patch -> resolved status: open -> closed superseder: -> subprocess.run should alias universal_newlines to text ___ Python tracker <https://bugs.python

[issue32108] configparser bug: section is emptied if you assign a section to itself

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

[issue22454] Adding the opposite function of shlex.split()

2018-06-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi Vinay, You made the most recent changes to shlex, so I was wondering what you thought of this suggestion. Thanks! -- nosy: +cheryl.sabella, vinay.sajip ___ Python tracker <https://bugs.python.org/issue22

[issue33610] IDLE: Make multiple improvements to CodeContext

2018-06-05 Thread Cheryl Sabella
Cheryl Sabella added the comment: Menu location: If Code Context is moved under Windows, maybe Configure IDLE should be moved as well? - VS Code has Preferences under the File menu. - Spyder has a menu option called Tools which contains Preferences, Update PYTHONPATH manager, and Reset

[issue33771] Module: timeit. According to documentation default_repeat should have the value 3. Has 5.

2018-06-05 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks, Victor. Sorry about the noise. -- ___ Python tracker <https://bugs.python.org/issue33771> ___ ___ Python-bugs-list m

[issue33771] Module: timeit. According to documentation default_repeat should have the value 3. Has 5.

2018-06-05 Thread Cheryl Sabella
New submission from Cheryl Sabella : Looks like this was changed in #28240. @svyatoslav, would you like to make a github pull request for the change? -- keywords: +easy nosy: +cheryl.sabella stage: -> needs patch ___ Python tracker <

[issue17045] Improve C-API doc for PyTypeObject

2018-06-05 Thread Cheryl Sabella
Cheryl Sabella added the comment: This isn't directly related to this change, but I wanted to point out #23869 since you seem to understand the topic enough to respond to that ticket. Thanks! -- nosy: +cheryl.sabella ___ Python tracker <ht

[issue33768] IDLE: click on context line should jump to line, at top of window

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

[issue33768] IDLE: click on context line should jump to line, at top of window

2018-06-04 Thread Cheryl Sabella
Cheryl Sabella added the comment: I'll try to have a PR for this by later today. -- ___ Python tracker <https://bugs.python.org/issue33768> ___ ___ Python-bug

[issue33763] IDLE: Use text widget for code context instead of label widget

2018-06-04 Thread Cheryl Sabella
Cheryl Sabella added the comment: To your point, when I was adding the colors to configuration for context, I wondered if having context as a text widget could somehow use the colorizer. I didn't really look into it, but it did seem like it might make sense to keep all the foreground text

[issue33610] IDLE: Make multiple improvements to CodeContext

2018-06-03 Thread Cheryl Sabella
Cheryl Sabella added the comment: For item 11 - #33763 -- ___ Python tracker <https://bugs.python.org/issue33610> ___ ___ Python-bugs-list mailing list Unsub

[issue33610] IDLE: Make multiple improvements to CodeContext

2018-06-03 Thread Cheryl Sabella
Change by Cheryl Sabella : -- dependencies: +IDLE: Use text widget for code context instead of label widget ___ Python tracker <https://bugs.python.org/issue33

[issue33763] IDLE: Use text widget for code context instead of label widget

2018-06-03 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +6993 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue33763> ___ ___ Py

[issue33763] IDLE: Use text widget for code context instead of label widget

2018-06-03 Thread Cheryl Sabella
New submission from Cheryl Sabella : Item 11 from #33610. Use read-only Text instead of Label for context. * Change widget type from Label to Text and remove Label-only arguments. * Add height and state arguments. * Change widget name from self.label to self.context. * Tests: change widget

[issue33664] IDLE: scroll text by lines, not pixels.

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

[issue33610] IDLE: Make multiple improvements to CodeContext

2018-06-01 Thread Cheryl Sabella
Cheryl Sabella added the comment: > That leaves line alignment. If you are working on it, but don't have a PR > ready yet, please say so. I was going to work on it this weekend, but haven't started yet. I agree that moving Code Context to the Windows menu makes

[issue33642] IDLE: Use variable number of lines in CodeContext

2018-06-01 Thread Cheryl Sabella
Cheryl Sabella added the comment: I see similar behavior on Linux, except after maximizing and then minimizing, it seems to stay with option 2. -- ___ Python tracker <https://bugs.python.org/issue33

[issue2504] Add gettext.pgettext() and variants support

2018-05-31 Thread Cheryl Sabella
Cheryl Sabella added the comment: No, I didn't have a use case for the l* functions. I included them just as a result of applying the entire patch from 2010. I also didn't know if further discussion was needed before excluding them

[issue2504] Add gettext.pgettext() and variants support

2018-05-30 Thread Cheryl Sabella
Cheryl Sabella added the comment: I've created a pull request for this based on Éric's patch in 2010. I attempted to incorporate the changes from #29755 into the new functions and tests. I believe these changes take care of items 1 and 2 from msg122439. I haven't tried to address item 3

[issue2504] Add gettext.pgettext() and variants support

2018-05-30 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +6882 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issue2504> ___ ___ Python-

[issue30483] urllib.parse.parse_qsl does not handle unicode data properly

2018-05-29 Thread Cheryl Sabella
Cheryl Sabella added the comment: Would you be able to include an example for recreating this? Looking at the code, it uses the ascii encoding for bytes (which can only contain ASCII literal characters) and should not be using that encoding for strings. Thanks! -- nosy

[issue32131] Missing encoding parameter in urllib/parse.py

2018-05-29 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> urllib.parse.parse_qsl does not handle unicode data properly ___ Python tracker <https://bugs.python

[issue33610] IDLE: Make multiple improvements to CodeContext

2018-05-29 Thread Cheryl Sabella
Cheryl Sabella added the comment: For item 9 - #33679 -- dependencies: +IDLE: Configurable color on code context ___ Python tracker <https://bugs.python.org/issue33

[issue33679] IDLE: Configurable color on code context

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

[issue33679] IDLE: Configurable color on code context

2018-05-29 Thread Cheryl Sabella
New submission from Cheryl Sabella : Item 9 from #33610: Reenable user config of context colors * Add context tag to themes in configuration. * In codecontext, get theme and context color from configuration. * Use the colors when creating the context label. * In timer event, update colors

[issue33642] IDLE: Use variable number of lines in CodeContext

2018-05-28 Thread Cheryl Sabella
Cheryl Sabella added the comment: I pushed a commit for these three items. -- ___ Python tracker <https://bugs.python.org/issue33642> ___ ___ Python-bugs-list m

[issue33642] IDLE: Use variable number of lines in CodeContext

2018-05-25 Thread Cheryl Sabella
Cheryl Sabella <cheryl.sabe...@gmail.com> added the comment: I know we usually don't change defaults, but I had tested this one and I think it works. After I changed it to 15 lines in master, I opened the installed version of IDLE 2.7. Although it showed 15 fixed lines, it made sense

[issue33610] IDLE: Make multiple improvements to CodeContext

2018-05-24 Thread Cheryl Sabella
Cheryl Sabella <cheryl.sabe...@gmail.com> added the comment: For item 7 - #33642. -- dependencies: +IDLE: Use variable number of lines in CodeContext ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue33642] IDLE: Use variable number of lines in CodeContext

2018-05-24 Thread Cheryl Sabella
Change by Cheryl Sabella <cheryl.sabe...@gmail.com>: -- keywords: +patch, patch pull_requests: +6744, 6745 stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue33642] IDLE: Use variable number of lines in CodeContext

2018-05-24 Thread Cheryl Sabella
Change by Cheryl Sabella <cheryl.sabe...@gmail.com>: -- keywords: +patch pull_requests: +6744 stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue33642] IDLE: Use variable number of lines in CodeContext

2018-05-24 Thread Cheryl Sabella
New submission from Cheryl Sabella <cheryl.sabe...@gmail.com>: Item 7 from #33610: Change fixed # of lines to variable # of lines as needed, up to limit. About 15 is limit for 4-space indents in 80 char lines. * Change default number of lines to be 15 in config. * Label in config

[issue33610] IDLE: Make multiple improvements to CodeContext

2018-05-24 Thread Cheryl Sabella
Cheryl Sabella <cheryl.sabe...@gmail.com> added the comment: I've started looking at #22703, more specifically, I've been trying to recreate it. Since the config changes in 3.6/3.7 where the flag was removed from config dialog, the code context needs to be turned on explicitly for each

[issue33628] IDLE: Code cleanup on codecontext

2018-05-23 Thread Cheryl Sabella
Change by Cheryl Sabella <cheryl.sabe...@gmail.com>: -- keywords: +patch pull_requests: +6718 stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue33610] IDLE: Make multiple improvements to CodeContext

2018-05-23 Thread Cheryl Sabella
Cheryl Sabella <cheryl.sabe...@gmail.com> added the comment: For item 2 - #33628 -- dependencies: +IDLE: Code cleanup on codecontext ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue33628] IDLE: Code cleanup on codecontext

2018-05-23 Thread Cheryl Sabella
New submission from Cheryl Sabella <cheryl.sabe...@gmail.com>: Based on the github comments on PR5638, some code cleanup issues identified for codecontext. codecontext * getspacesfirstword - function and param1 name * get_line_info - make into helper function and change parm * get_c

[issue33609] Document that dicts preserve insertion order

2018-05-23 Thread Cheryl Sabella
Cheryl Sabella <cheryl.sabe...@gmail.com> added the comment: As reference, issue32337 made some changes documenting that the dicts preserve insertion order. Also, issue33218 was marked as being superseded by #32337. -- nosy: +cheryl.s

[issue27485] urllib.splitport -- is it official or not?

2018-05-23 Thread Cheryl Sabella
Cheryl Sabella <cheryl.sabe...@gmail.com> added the comment: Serhiy, Thanks for finding this. I've submitted a PR to fix the tests. -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue27485] urllib.splitport -- is it official or not?

2018-05-23 Thread Cheryl Sabella
Change by Cheryl Sabella <cheryl.sabe...@gmail.com>: -- keywords: +patch pull_requests: +6699 stage: resolved -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue32092] mock.patch with autospec does not consume self / cls argument

2018-05-21 Thread Cheryl Sabella
Change by Cheryl Sabella <cheryl.sabe...@gmail.com>: -- nosy: +michael.foord versions: -Python 3.5, Python 3.6 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue2504] Add gettext.pgettext() and variants support

2018-05-19 Thread Cheryl Sabella
Cheryl Sabella <cheryl.sabe...@gmail.com> added the comment: Éric, Was your last comment intended as a todo for yourself or an outline of the steps needed for someone else to move this along (maybe it was a reply to Jonathan Schoonhoven's question)? If the latter, I'd be happy to try t

[issue18099] wsgiref sets Content-Length: 0 on 304 Not Modified

2018-05-19 Thread Cheryl Sabella
Cheryl Sabella <cheryl.sabe...@gmail.com> added the comment: @flox declared this as 'good to merge' in 2014, but I don't believe the merge happened. Should a PR be created for this patch? Thanks! -- nosy: +cheryl.sabella ___ Python tracke

[issue33051] IDLE: Create new tab for editor options in configdialog

2018-05-17 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: Yes, I thought it would be good to have this before issue33046. -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue14845] list() != []

2018-05-14 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- status: open -> pending ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue14845> ___ _

[issue33358] [EASY] x86 Ubuntu Shared 3.x: test_embed.test_pre_initialization_sys_options() fails

2018-05-14 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- assignee: csabella -> resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <https:/

[issue33459] Define "tuple display" in the docs

2018-05-10 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: Actually, 'tuple display' is in the index under 'display' and links to the last paragraph in 6.2.3. However, except for the index name, that paragraph doesn't use the phrase 'tuple display'. So it gives the definition without sayin

[issue27675] IDLE file completion has 2 bugs depending on open quote used

2018-05-09 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: Thanks, Terry! I'm able to recreate the autocomplete issue on Windows 7 using 3.6.3, but not on Ubuntu. As you said, the color issue seems fine now for both platforms. I'll take a look at those other issues for the test

[issue27675] IDLE file completion has 2 bugs depending on open quote used

2018-05-08 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: I can't seem to recreate this. I tried on Ubuntu with master and Windows with 3.6.3. I'm not sure if it's been fixed by another change or if I'm not doing the steps correctly to recreate it. -- nosy: +cs

[issue27465] IDLE:Make help source menu entries unique and sorted.

2018-05-08 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: > Currently, names are displayed in the order added. I believe sorting would > be better, especially when one adds more than 2 entries. That should also be > easy. I'm wondering if it would be worthwhile to ad

[issue33332] Expose valid signal set (sigfillset()): add signal.valid_signals()

2018-05-04 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: On Ubuntu 14.04, I get the same results as Victor. -- nosy: +csabella ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue5430] imaplib: must not replace LF or CR by CRLF in literals

2018-05-04 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: I'm not sure if this is a 2.6/2.7 only issue because the code mentioned in msg86572 still exists, although with a change for #21800 (RFC 6855/UTF-8) applied. For reference, #25591 expanded the test coverage for the imaplib. Howe

[issue26256] Fast decimalisation and conversion to other bases

2018-05-04 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: ping -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue26256> ___ __

[issue6270] Menu deletecommand fails if command is already deleted

2018-05-04 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: I installed the latest version of pmw on Ubuntu 14.04 and did not receive any errors using the supplied test snippet. It appears that pmw added a patch to the code to only delete the commands when used with Python versions before 2.

[issue20722] newline is (partially) independent of universal newlines; needs to be made more clear in docs

2018-05-03 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- stage: -> needs patch type: -> enhancement versions: +Python 3.8 -Python 3.4 ___ Python tracker <rep...@bugs.python.org> <https://bugs.

[issue8613] Decimal module flags undetermined when a signal is trapped.

2018-05-03 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- status: pending -> closed ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue8613> ___ _

[issue4470] smtplib SMTP_SSL not working.

2018-05-03 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: This issue has been in pending status for over 18 months following Christian's question to the OP, so closing as out of date. -- nosy: +csabella resolution: -> out of date stage: patch review -> resolved status: pendi

[issue33397] IDLE help viewer: let users control font size

2018-04-30 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- keywords: +patch pull_requests: +6364 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue25198] Idle: improve idle.html help viewer.

2018-04-30 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: I've created PR6665 for the first bullet item. * Font size should initially reflect user's size choice. Possibly change with control-mousewheel. -- nosy: +csabella stage: patch review -> ne

[issue25198] Idle: improve idle.html help viewer.

2018-04-30 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- pull_requests: +6359 stage: needs patch -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue32857] tkinter after_cancel does not behave correctly when called with id=None

2018-04-27 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- pull_requests: +6316 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32857> ___ _

[issue33358] [EASY] x86 Ubuntu Shared 3.x: test_embed.test_pre_initialization_sys_options() fails

2018-04-26 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- assignee: -> csabella nosy: +csabella stage: -> needs patch ___ Python tracker <rep...@bugs.python.org> <https://bugs.

[issue31141] Start should be a keyword argument of the built-in sum

2018-04-26 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: Hi Mark, Are you able to make the Argument Clinic change the Serhiy suggested to come up with new benchmarks? Thanks! -- nosy: +csabella ___ Python tracker <rep...@bugs.python.or

[issue32790] Keep trailing zeros in precision for string format option g

2018-04-26 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- keywords: +easy stage: -> needs patch versions: +Python 3.8 ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue19950] Document that unittest.TestCase.__init__ is called once per test

2018-04-25 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- keywords: +easy -patch stage: -> needs patch versions: +Python 3.7, Python 3.8 -Python 3.4 ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue22069] TextIOWrapper(newline="\n", line_buffering=True) mistakenly treat \r as a newline

2018-04-25 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- keywords: +easy stage: -> needs patch versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue31500] IDLE: Tiny font on HiDPI display

2018-04-23 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- pull_requests: +6284 stage: needs patch -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue33289] tkinter askcolor returning floats for r, g, b values instead of ints

2018-04-23 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- keywords: +patch pull_requests: +6278 stage: needs patch -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue33289] tkinter askcolor returning floats for r, g, b values instead of ints

2018-04-22 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: Adding to what Serhiy said about the askcolor() return value is an issue that also affects input: >>> cc.askcolor('red') ((255, 0, 0), '#ff') >>> cc.askcolor((255, 0, 0)) ((255, 0, 0), '#ff') >

[issue15088] PyGen_NeedsFinalizing is public, but undocumented

2018-04-03 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: Thanks again, Antoine. I'll see what I can come up with. :-) -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue27212] Doc for itertools, 'islice()' implementation have unwanted behavior for recipe 'consume()'

2018-04-02 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: Thanks! :-) -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue27212> ___ _

[issue15088] PyGen_NeedsFinalizing is public, but undocumented

2018-04-02 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: Thanks Antoine. Do you have a good way for searching third party projects? I searched on Github and I'm getting a lot of references to the CPython filenames. I don't know how to check if anyone is making calls to the fu

[issue27212] Doc for itertools, 'islice()' implementation have unwanted behavior for recipe 'consume()'

2018-04-01 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- pull_requests: +6051 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue27212> ___ _

[issue24978] Contributing to Python 2x and 3x Documentation. Translation to Russian.

2018-03-31 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: Adding a reference to PEP 545 for contributing documentation translations. -- nosy: +csabella ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue31201] make test: module test that failed doesn't exist

2018-03-26 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- keywords: +easy stage: -> needs patch title: module test that failed doesn't exist -> make test: module test that failed doesn't exist type: -> enhancement versions: +Python

[issue23952] cgi: Document the 'maxlen' member of the cgi module

2018-03-25 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- assignee: -> docs@python components: +Documentation nosy: +docs@python stage: -> needs patch title: Document the 'maxlen' member of the cgi module -> cgi: Document the 'maxlen' member of the cgi module versions: +Python

[issue17994] Change necessary in platform.py to support IronPython

2018-03-25 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- resolution: -> duplicate stage: test needed -> resolved status: open -> closed superseder: -> platform._sys_version does not parse correctly IronPython 2.x version ___ P

[issue6671] webbrowser doesn't respect xfce default browser

2018-03-25 Thread Cheryl Sabella
Cheryl Sabella <chek...@gmail.com> added the comment: Should this patch be converted to a PR? -- nosy: +csabella versions: +Python 3.7, Python 3.8 -Python 3.4, Python 3.5 ___ Python tracker <rep...@bugs.python.org> <https://bugs.pytho

[issue24356] venv documentation incorrect / misleading

2018-03-25 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- keywords: +easy stage: -> needs patch type: -> enhancement versions: +Python 3.7, Python 3.8 -Python 3.3 ___ Python tracker <rep...@bugs.python.org> <https://bugs.

[issue31869] commentary on ssl.PROTOCOL_TLS

2018-03-25 Thread Cheryl Sabella
Change by Cheryl Sabella <chek...@gmail.com>: -- nosy: +christian.heimes ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue31869> ___

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