[issue35937] Add instancemethod to types.py

2019-02-08 Thread Cheryl Sabella
Cheryl Sabella added the comment: Also see issue 11776 about documenting the signatures. -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue35

[issue30130] array.array is not an instance of collections.MutableSequence

2019-02-07 Thread Cheryl Sabella
Cheryl Sabella added the comment: As Jim mentioned, issue 29727 also discusses registering array.array. See issue 23864, issue 25737, issue 35190, and issue 35349 for discussions about collections.abc in general. Closing this as a duplicate. -- nosy: +cheryl.sabella resolution

[issue22474] No explanation of how a task gets destroyed in asyncio 'task' documentation

2019-02-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: It seems that the note about a warning being logged if a pending task is destroyed does not exist in the new, rewritten version of the asyncio docs. Therefore, I'm going to close this as out of date. -- nosy: +cheryl.sabella resolution: ->

[issue35899] '_is_sunder' function in 'enum' module fails on empty string

2019-02-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: I agree with Rémi Lapeyre. For reference, the len() check and current tests were added under issue 19156. -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue35

[issue27344] zipfile *does* support utf-8 filenames

2019-02-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: This wording was removed as part of issue 32035. -- nosy: +cheryl.sabella resolution: -> duplicate stage: needs patch -> resolved status: open -> closed superseder: -> Documentation of zipfile.ZipFile().writestr() fails to mention tha

[issue34398] Docs search does not index glossary items

2019-02-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: @ammar2, this looks like a great addition to the docs. Would you be able to address Berker's request and also fix the merge conflict on the PR? Also adding Julien and Carol from the expert's index for documentation. -- nosy: +cheryl.sabella, mdk

[issue12374] Execution model should explain compile vs definition vs execution time

2019-02-03 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi Nick, Would you be able to update the link as http://svn.python.org/view/sandbox/trunk/userref/ODF/ isn't valid anymore? Have things changed even more since you created this issue or are you still interested in pursuing this? Thanks! -- nosy

[issue35769] IDLE: change new file name from ''Untitled" to "untitled"

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

[issue35500] Align expected and actual calls on mock.assert_called_with error message

2019-01-29 Thread Cheryl Sabella
Cheryl Sabella added the comment: @xtreak, were you going to submit a pull request for this or do you think this would be a 'good first issue' for a new contributor? -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue35

[issue29235] Allow profile/cProfile to be used as context managers

2019-01-29 Thread Cheryl Sabella
Cheryl Sabella added the comment: Closing as these changes have been merged for a few months. msg285538 mentions that the pure-Python profiler doesn't have `enable` and `disable`, which is already opened in issue 32017. -- nosy: +cheryl.sabella resolution: -> fixed stage: pa

[issue35835] There is no mention of breakpoint() in the pdb documentation

2019-01-28 Thread Cheryl Sabella
Cheryl Sabella added the comment: As Karthikeyan said, you do need to open a PR against the CPython master. I'm not a Git expert, but this page (section 3.3) discusses the steps to open that PR: https://devguide.python.org/pullrequest/ Those are the steps I follow and it's a good write-up

[issue35835] There is no mention of breakpoint() in the pdb documentation

2019-01-28 Thread Cheryl Sabella
Cheryl Sabella added the comment: @jcrmatos - Sounds like you're on the right track. :-) Based on the steps you've outlined, I just had one question. Were you able to rebuild the docs locally in order to see how your changes looked? Here's the direct link to building the docs: https

[issue35835] There is no mention of breakpoint() in the pdb documentation

2019-01-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: @jcrmatos, No problem. :-) If you are interested in learning how, we can guide you. However, if you'd rather not, then that's OK too and we'll make the patch. Just let us know which you'd prefer. If you need help deciding, take a look at the devguide

[issue35835] There is no mention of breakpoint() in the pdb documentation

2019-01-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: @jcrmatos, would you like to create a Github pull request with the change? -- ___ Python tracker <https://bugs.python.org/issue35

[issue35835] There is no mention of breakpoint() in the pdb documentation

2019-01-27 Thread Cheryl Sabella
Cheryl Sabella added the comment: I agree with Karthikeyan. If it's added to the pdb doc page, I think the existing text should stay as it is, but a 'New in 3.7' added after it. Something like: The typical usage to break into the debugger from a running program is to insert import pdb

[issue30548] typo in documentation for create_autospec

2019-01-25 Thread Cheryl Sabella
Cheryl Sabella added the comment: Mario is right that this isn't a typo. Here's a code example to illustrate what he said: >>> class MyClass: ... a = 3 ... def foo(self): pass ... >>> mock_class = create_autospec(MyClass) >>> mock_class >>&

[issue31982] 8.3. collections — Container datatypes

2019-01-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: This is a duplicate of issue 31075, which was closed as 'Not a bug'. -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue31

[issue33166] os.cpu_count() returns wrong number of processors on specific systems

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

[issue33166] os.cpu_count() returns wrong number of processors on specific systems

2019-01-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: Added #32592 as a dependency since that is removing the Vista code mentioned here. Once that change is merged, then this would be a simpler change to make. -- dependencies: +Drop support of Windows Vista in Python 3.7 nosy: +cheryl.sabella

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

2019-01-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -11469 ___ Python tracker <https://bugs.python.org/issue18610> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2019-01-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -11468 ___ Python tracker <https://bugs.python.org/issue18610> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2019-01-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +11467, 11468, 11469 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

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

2019-01-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +11467, 11468 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issue18610> ___ _

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

2019-01-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +11467 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issue18610> ___ ___ Python-

[issue5028] tokenize.generate_tokens doesn't always return logical line

2019-01-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- components: +Documentation -Library (Lib) keywords: +easy stage: -> needs patch versions: +Python 3.8 -Python 2.6 ___ Python tracker <https://bugs.python.org/iss

[issue35661] Store the venv prompt in pyvenv.cfg

2019-01-21 Thread Cheryl Sabella
Cheryl Sabella added the comment: I've made the changes suggested by Brett to store the raw value instead of the formatted prompt. I also have been looking into issues Steve raised about using the prompt value from `pyvenv.cfg` instead of having the prompt hard-coded into the activate

[issue35722] disable_existing_loggers does not apply to the root logger

2019-01-20 Thread Cheryl Sabella
Change by Cheryl Sabella : -- assignee: -> docs@python components: +Documentation -Library (Lib) nosy: +docs@python ___ Python tracker <https://bugs.python.org/issu

[issue35722] disable_existing_loggers does not apply to the root logger

2019-01-20 Thread Cheryl Sabella
Change by Cheryl Sabella : -- stage: -> patch review versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue35722> ___ ___ Python-bugs-lis

[issue15613] argparse ArgumentDefaultsHelpFormatter interacts badly with --arg and nargs=+

2019-01-18 Thread Cheryl Sabella
Cheryl Sabella added the comment: Closing per paul.j3's last comment which also is mentioned in the documentation (https://docs.python.org/3.8/library/argparse.html#default ): > For positional arguments with nargs equal to ? or *, the default value is > used when no command-line ar

[issue15613] argparse ArgumentDefaultsHelpFormatter interacts badly with --arg and nargs=+

2019-01-18 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35770] IDLE: python -m idlelib fails on master on Mac OS 10.10.4

2019-01-18 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +11354, 11355, 11356 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35770] IDLE: python -m idlelib fails on master on Mac OS 10.10.4

2019-01-18 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +11354 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issue35770> ___ ___ Python-

[issue35770] IDLE: python -m idlelib fails on master on Mac OS 10.10.4

2019-01-18 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +11354, 11355 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issue35770> ___ _

[issue35770] IDLE: python -m idlelib fails on master on Mac OS 10.10.4

2019-01-18 Thread Cheryl Sabella
Cheryl Sabella added the comment: I'll submit a quick PR as a PoC. Tal emailed with additional ideas about menudefs, so I agree that another issue would probably be suitable for more discussion. I haven't looked at the extensions too closely yet, but the insert you're referring

[issue35770] IDLE: python -m idlelib fails on master on Mac OS 10.10.4

2019-01-18 Thread Cheryl Sabella
Cheryl Sabella added the comment: Terry, I've started working on a PR to change menudefs to a dictionary. Since dictionaries are in guaranteed order now, it would be easier to reference the menus by their name instead of an index number

[issue35770] IDLE: python -m idlelib fails on master on Mac OS 10.10.4

2019-01-18 Thread Cheryl Sabella
Cheryl Sabella added the comment: Karthikeyan, Thanks for catching this! Did you want to submit the patch for it or did you want me to make the PR? We're still working on the tests for the menus, so this would just be a code change

[issue23156] Update tix install information in tkinter tix chapter of doc

2019-01-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: Since tix has been deprecated since 3.6 (according to the docs with commit bd63353b7433ea8aa831ffb158ac29fb646a6fc9), should this ticket be closed as out of date? -- nosy: +cheryl.sabella ___ Python tracker

[issue16638] support multi-line docstring signatures in IDLE calltips

2019-01-17 Thread Cheryl Sabella
Cheryl Sabella added the comment: Since many of the criteria mentioned in msg219204 are now implemented or out of date, should this issue now be re-closed? -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue16

[issue26410] "incompatible pointer type" while compiling Python3.5.1

2019-01-14 Thread Cheryl Sabella
Change by Cheryl Sabella : -- status: open -> closed superseder: -> Use Py_uintptr_t instead of void* for atomic pointers ___ Python tracker <https://bugs.python.org/i

[issue26410] "incompatible pointer type" while compiling Python3.5.1

2019-01-14 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> duplicate stage: -> resolved ___ Python tracker <https://bugs.python.org/issue26410> ___ ___ Python-bugs-

[issue35661] Store the venv prompt in pyvenv.cfg

2019-01-14 Thread Cheryl Sabella
Cheryl Sabella added the comment: Steve, thanks for explaining that. I understand what you're saying now. It's funny but because the context prompt has the space added at the end when it's created (`context.prompt = '(%s) ' % prompt`), I added it to the test, but completely forgot about

[issue35732] Typo in library/warnings documentation

2019-01-14 Thread Cheryl Sabella
Cheryl Sabella added the comment: Closing as a duplicate of #35563, which converts the 'see above' to links. -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue35

[issue35732] Typo in library/warnings documentation

2019-01-14 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed superseder: -> Doc: warnings.rst - add links to references ___ Python tracker <https://bugs.python

[issue26239] distutils link-objects is not normalized

2019-01-10 Thread Cheryl Sabella
Cheryl Sabella added the comment: This was fixed in issue 1703178. -- nosy: +cheryl.sabella resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> link_objects in setup.cfg crashes build ___ Python tra

[issue35661] Store the venv prompt in pyvenv.cfg

2019-01-10 Thread Cheryl Sabella
Cheryl Sabella added the comment: Currently, the prompt is enclosed in parentheses, both in the venv and when storing: PS N:\projects\cpython> python -m venv testvenv --prompt=" prompt with spaces " Running Release|Win32 interpreter... PS N:\projects\cpython> .\testvenv\

[issue33437] Defining __init__ in enums

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

[issue35689] IDLE: Docstrings and test for colorizer

2019-01-08 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10970 ___ Python tracker <https://bugs.python.org/issue35689> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35689] IDLE: Docstrings and test for colorizer

2019-01-08 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10969 ___ Python tracker <https://bugs.python.org/issue35689> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35689] IDLE: Docstrings and test for colorizer

2019-01-08 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch, patch, patch pull_requests: +10968, 10969, 10970 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35689] IDLE: Docstrings and test for colorizer

2019-01-08 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +10968 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35689> ___ ___ Py

[issue35689] IDLE: Docstrings and test for colorizer

2019-01-08 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch, patch pull_requests: +10968, 10969 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35689] IDLE: Docstrings and test for colorizer

2019-01-08 Thread Cheryl Sabella
New submission from Cheryl Sabella : Add docstrings and unittests for colorizer.py. -- assignee: terry.reedy components: IDLE messages: 333263 nosy: cheryl.sabella, terry.reedy priority: normal severity: normal status: open title: IDLE: Docstrings and test for colorizer type

[issue35675] IDLE: Refactor config_key module.

2019-01-06 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +10920 ___ Python tracker <https://bugs.python.org/issue35675> ___ ___ Python-bugs-list mailin

[issue35668] Improve test coverage for idlelib

2019-01-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: Welcome Anthony! Please ask me any questions you may have. My only suggestion at this point would be for you to feel free to add any docstrings/comments to the module as you go. Having the docstrings really helps in understanding the tests and vice versa

[issue34431] Docs does not eval allows code object as argument

2019-01-05 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi Jonathan, Did you have any additional questions about opening a pull request for these changes? Thanks! -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue34

[issue30487] DOC: automatically create a venv and install Sphinx when running make

2019-01-05 Thread Cheryl Sabella
Cheryl Sabella added the comment: I believe this can be closed as resolved? Thanks. -- nosy: +cheryl.sabella ___ Python tracker <https://bugs.python.org/issue30

[issue33393] update config.guess and config.sub

2019-01-05 Thread Cheryl Sabella
Cheryl Sabella added the comment: Is this intended as a global ticket to be used to update these files on a regular basis? Or should a new ticket be created every time the files are updated? Thanks! -- nosy: +cheryl.sabella ___ Python tracker

[issue4696] email module does not unfold headers

2019-01-05 Thread Cheryl Sabella
Cheryl Sabella added the comment: Although email policies are marked as provisional, I believe the changes in issue14731 would fix the original request in this issue. If so, would it be possible to close this issue as resolved? Thanks. -- nosy: +cheryl.sabella

[issue31887] docs for email.generator are missing a comment on special multipart/signed handling

2019-01-05 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 2.7, Python 3.4, Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.or

[issue35667] activate for venv containing apostrophe doesn't work in powershell

2019-01-05 Thread Cheryl Sabella
New submission from Cheryl Sabella : On Windows 10, when I try to activate a venv in powershell where the name contains an apostrophe, I get the following error ("don't" is the name of the venv): PS N:\projects\cpython\don't\Scripts> .\activate.ps1 At N:\projects\cpython\

[issue35661] Store the venv prompt in pyvenv.cfg

2019-01-05 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10883 ___ Python tracker <https://bugs.python.org/issue35661> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35661] Store the venv prompt in pyvenv.cfg

2019-01-05 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10882 ___ Python tracker <https://bugs.python.org/issue35661> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35661] Store the venv prompt in pyvenv.cfg

2019-01-05 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch, patch pull_requests: +10881, 10882 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35661] Store the venv prompt in pyvenv.cfg

2019-01-05 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch, patch, patch pull_requests: +10881, 10882, 10883 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35661] Store the venv prompt in pyvenv.cfg

2019-01-05 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +10881 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35660] IDLE: Remove import * from window.py

2019-01-05 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10864 ___ Python tracker <https://bugs.python.org/issue35660> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35660] IDLE: Remove import * from window.py

2019-01-05 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10863 ___ Python tracker <https://bugs.python.org/issue35660> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35660] IDLE: Remove import * from window.py

2019-01-04 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch, patch, patch pull_requests: +10862, 10863, 10864 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35660] IDLE: Remove import * from window.py

2019-01-04 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch, patch pull_requests: +10862, 10863 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35660] IDLE: Remove import * from window.py

2019-01-04 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +10862 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35660> ___ ___ Py

[issue35660] IDLE: Remove import * from window.py

2019-01-04 Thread Cheryl Sabella
New submission from Cheryl Sabella : Remove use of `from tkinter import *` from windows.py. -- assignee: terry.reedy components: IDLE messages: 333028 nosy: cheryl.sabella, terry.reedy priority: normal severity: normal status: open title: IDLE: Remove import * from window.py type

[issue33987] IDLE: use ttk.Frame for ttk widgets

2019-01-04 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10861 ___ Python tracker <https://bugs.python.org/issue33987> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33987] IDLE: use ttk.Frame for ttk widgets

2019-01-04 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10860 ___ Python tracker <https://bugs.python.org/issue33987> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33987] IDLE: use ttk.Frame for ttk widgets

2019-01-04 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10859, 10860, 10861 ___ Python tracker <https://bugs.python.org/issue33987> ___ ___ Python-bugs-list mailin

[issue33987] IDLE: use ttk.Frame for ttk widgets

2019-01-04 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10859 ___ Python tracker <https://bugs.python.org/issue33987> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33987] IDLE: use ttk.Frame for ttk widgets

2019-01-04 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10859, 10860 ___ Python tracker <https://bugs.python.org/issue33987> ___ ___ Python-bugs-list mailing list Unsub

[issue32660] Solaris should support constants like termios' FIONREAD

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

[issue15457] consistent treatment of generator terminology

2019-01-04 Thread Cheryl Sabella
Cheryl Sabella added the comment: Issue24400 changed some of the documentation wording around generators. I don't know if there is still interest in applying the other parts of this patch. -- nosy: +cheryl.sabella versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.3, Python 3.4

[issue12991] Python 64-bit build on HP Itanium - Executable built successfully but modules failed with HP Compiler

2019-01-04 Thread Cheryl Sabella
Cheryl Sabella added the comment: Closed based on msg323776. -- nosy: +cheryl.sabella resolution: -> out of date status: open -> closed ___ Python tracker <https://bugs.python.org/i

[issue33896] Document what components make up the filecmp.cmp os.stat signature.

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

[issue35168] shlex punctuation_chars inconsistency

2019-01-04 Thread Cheryl Sabella
Change by Cheryl Sabella : -- assignee: -> docs@python components: +Documentation -Library (Lib) keywords: +easy nosy: +docs@python stage: -> needs patch versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/i

[issue19120] shlex.shlex.lineno reports a different number depending on the previous token

2019-01-04 Thread Cheryl Sabella
Cheryl Sabella added the comment: There was a parameter `punctuation_chars` added to the shlex.shlex class with issue 1521950 (implemented for 3.6). Although the comma is not one of the default punctuation characters (setting the parameter to punctuation_chars=True won't change

[issue35598] IDLE: Modernize config_key module

2019-01-03 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10852 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2019-01-03 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10851 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2019-01-03 Thread Cheryl Sabella
Cheryl Sabella added the comment: Terry, I just saw your note about waiting to split this into a Window and Frame class, which was after I had already gotten the PR ready. I've been mostly offline for the past few days, so I had been working on those changes locally with the intent

[issue35598] IDLE: Modernize config_key module

2019-01-03 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10850, 10851 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsub

[issue35598] IDLE: Modernize config_key module

2019-01-03 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10850, 10851, 10852 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailin

[issue35598] IDLE: Modernize config_key module

2019-01-03 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10850 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-31 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10763 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-31 Thread Cheryl Sabella
Cheryl Sabella added the comment: PR11392 is the first refactor. It moves translate_key to the module level and also moves the definitions of the key tuples to the module level since they are used in more than one place (and they don't change). As a side note, I'll do the refactoring over

[issue35598] IDLE: Modernize config_key module

2018-12-31 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10762 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-31 Thread Cheryl Sabella
Change by Cheryl Sabella : -- Removed message: https://bugs.python.org/msg332776 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bug

[issue35598] IDLE: Modernize config_key module

2018-12-31 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10761, 10762 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsub

[issue35598] IDLE: Modernize config_key module

2018-12-31 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10761, 10762, 10763 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailin

[issue35598] IDLE: Modernize config_key module

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

[issue35598] IDLE: Modernize config_key module

2018-12-30 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10722 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-30 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -10723 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-30 Thread Cheryl Sabella
Cheryl Sabella added the comment: PR11377 is the first refactor. It moves translate_key to the module level and also moves the definitions of the key tuples to the module level since they are used in more than one place (and they don't change). As a side note, I'll do the refactoring over

[issue35598] IDLE: Modernize config_key module

2018-12-30 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10721, 10722, 10723 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailin

[issue35598] IDLE: Modernize config_key module

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

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