Cheryl Sabella added the comment:
Tal had written this on the original issue21765:
Finally, since the defaultdict is kept around as long as IDLE is running, I
decided to avoid having it grow continually and consume memory unnecessarily.
So I wrote a simple Mapping class, which wraps a
Change by Cheryl Sabella :
--
pull_requests: +5637
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issue32940>
___
___
Python-
Change by Cheryl Sabella :
--
versions: +Python 3.7, Python 3.8 -Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issue4260>
___
___
Python-bug
Cheryl Sabella added the comment:
New PR submitted. Really glad I worked on this today. I learned a lot of
things that were new to me. :-)
--
___
Python tracker
<https://bugs.python.org/issue32
Cheryl Sabella added the comment:
A similar regular expression version was mentioned on issue21765 and I had run
some tests on it yesterday to verify. On my system, it ran at a factor of 10x
slower, so if the translate finished in 0.003, the regex took 0.03. This was
consistent for me
Cheryl Sabella added the comment:
Created a PR based on the discussion and not the original patch.
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue25
Change by Cheryl Sabella :
--
keywords: +patch
pull_requests: +5652
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue25059>
___
___
Py
Cheryl Sabella added the comment:
>From the examples in msg220401, issue28385 changed it to print the object type
>in the message.
>>> format([], 'd')
Traceback (most recent call last):
File "", line 1, in
TypeError: unsupported format string passed t
Cheryl Sabella added the comment:
Looking at the creation of the instances of pyparse.PyParse() and
hyperparser.HyperParser(), I was a little surprised that they (the instances)
are local variables to the methods and aren't instance variables. Since they
are called fairly often, wouldn
Change by Cheryl Sabella :
--
pull_requests: +5669
___
Python tracker
<https://bugs.python.org/issue25059>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Cheryl Sabella :
--
keywords: +easy
type: -> enhancement
versions: +Python 3.7, Python 3.8 -Python 3.2, Python 3.3
___
Python tracker
<https://bugs.python.org/issu
Cheryl Sabella added the comment:
I believe this issue is superseded by PEP539 and issue25658?
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue5
Cheryl Sabella added the comment:
Can this one be closed since it was an enhancement and doesn't need to be
backported?
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/is
Cheryl Sabella added the comment:
It looks like this patch was close to being approved. Ron, would you be able
to open a Github pull request for your patch? Thanks!
--
nosy: +csabella
versions: +Python 3.8 -Python 3.4
___
Python tracker
<ht
Change by Cheryl Sabella :
--
versions: +Python 3.8 -Python 3.5
___
Python tracker
<https://bugs.python.org/issue18855>
___
___
Python-bugs-list mailing list
Unsub
Cheryl Sabella added the comment:
Since `blurb` says to write a simple ReST paragraph and that is code reviewed
with the PR, is this issue still needed?
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue10
New submission from Cheryl Sabella :
>From msg312726 on issue32880.
The call to find_good_parse_start:
bod = y.find_good_parse_start(self.context_use_ps1,
self._build_char_in_string_func(startatindex))
sends 3 parameters. And in pyparse.find_good_parse_st
Change by Cheryl Sabella :
--
dependencies: +IDLE: Incorrect signature in call from editor to
pyparse.find_good_parse_start
___
Python tracker
<https://bugs.python.org/issue32
Change by Cheryl Sabella :
--
keywords: +patch
pull_requests: +5734
stage: test needed -> patch review
___
Python tracker
<https://bugs.python.org/issu
Cheryl Sabella added the comment:
I didn't incorporate all the suggestions into the first PR for this so that it
could focus on the parameter change and the tests. `newline_and_indent_event`
does a lot, so I want to make sure the tests look good. I was also going to
add tests for the
Change by Cheryl Sabella :
--
keywords: +easy
stage: -> needs patch
type: behavior -> enhancement
versions: +Python 3.7, Python 3.8 -Python 3.5
___
Python tracker
<https://bugs.python.org/i
Change by Cheryl Sabella :
--
dependencies: +tkinter after_cancel does not behave correctly when called with
id=None
___
Python tracker
<https://bugs.python.org/issue32
Cheryl Sabella added the comment:
A few questions about returning the Python function name (specifically, how to
derive it). This doesn't address the open issue with what to do about a Tcl
command not tied to a Python function.
1. Serhiy wrote "and the API for restoring the origi
Cheryl Sabella added the comment:
@akuchling
Would you be able to make a PR for this patch? Thanks.
--
nosy: +csabella
versions: +Python 3.8 -Python 3.6
___
Python tracker
<https://bugs.python.org/issue28
Change by Cheryl Sabella :
--
keywords: +easy
stage: -> needs patch
versions: +Python 3.8 -Python 3.6
___
Python tracker
<https://bugs.python.org/issu
Cheryl Sabella added the comment:
Is there still interest in this? Should it be converted to a PR for 3.8?
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue14
Change by Cheryl Sabella :
--
keywords: +patch
pull_requests: +5744
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
Cheryl Sabella added the comment:
With the current dropdown for the documentation switcher (it has dev,
prerelease, and stable options) and the addition of the language switcher, I
believe this issue may be out of date. Can it be closed? Thanks!
--
nosy: +csabella
Cheryl Sabella added the comment:
> In the meanwhile, to get some idea of how well find_good_parse_start finds
> good parse starts, I restarted IDLE in a console with the print still added,
> loaded editor.py, and hit RETURN followed by UNDO, in various places. The
> first non-z
Cheryl Sabella added the comment:
The change works on Linux with the patch (and gave a NameError without the
patch). I left a note on the PR for a possible SyntaxError.
I didn't have authority to push the blurb markup change to your branch, so I
copied it into a comment. If you click
New submission from Cheryl Sabella :
>From the doc
>(https://docs.python.org/3/library/string.html#format-specification-mini-language):
> The '_' option signals the use of an underscore for a thousands separator for
> floating point presentation types and for intege
Cheryl Sabella added the comment:
I believe this has been added to the 3.4 What's New already:
object.__format__() no longer accepts non-empty format strings, it now raises a
TypeError instead. Using a non-empty string has been deprecated since Python
3.2. This change has been ma
Cheryl Sabella added the comment:
Thanks guys.
I really thought I tried '{0:_x}'.format(123456789), but I guess I hadn't.
Good to know that using format(123456879, '_x) is better.
--
___
Python tracker
<https://bug
Cheryl Sabella added the comment:
I just tested the PDF on the current version of the docs and this is no longer
an issue. The original example given wraps correctly on the PDF output.
--
nosy: +csabella
resolution: -> works for me
stage: -> resolved
status: open -&g
New submission from Cheryl Sabella :
Split out editor options from general tab in Config Dialog.
--
assignee: terry.reedy
components: IDLE
messages: 313618
nosy: csabella, terry.reedy
priority: normal
severity: normal
status: open
title: IDLE: Create new tab for editor options in
Change by Cheryl Sabella :
--
keywords: +patch
pull_requests: +5843
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue33051>
___
___
Py
Change by Cheryl Sabella :
--
pull_requests: +5844
___
Python tracker
<https://bugs.python.org/issue18802>
___
___
Python-bugs-list mailing list
Unsubscribe:
Cheryl Sabella added the comment:
I've made a PR for Berker's patch.
--
___
Python tracker
<https://bugs.python.org/issue18802>
___
___
Python-bugs-l
Cheryl Sabella added the comment:
Too bad we couldn't do:
iskeyword = frozenset(kwlist).__contains__
iskeyword.__doc__ = 'Test whether a string is a reserved identifier.'
But I'm sure there are reasons for this:
AttributeError: attribute '__doc__' of 'bui
Cheryl Sabella added the comment:
@Arun.Persaud, would you be interested in converting your patch to a Github
pull request?
--
nosy: +csabella
versions: +Python 3.7, Python 3.8 -Python 3.5
___
Python tracker
<https://bugs.python.org/issue21
Cheryl Sabella added the comment:
Since issue 32185 has been patched, should this one be revisited to see if that
solution helped fixed this one?
--
nosy: +christian.heimes, csabella
___
Python tracker
<https://bugs.python.org/issue32
Cheryl Sabella added the comment:
As there was interest in this patch, @catherinedevlin would you be able to make
a Github pull request for it?
Thanks!
--
nosy: +csabella
stage: -> needs patch
versions: +Python 3.8 -Python 3.6
___
Python trac
Cheryl Sabella added the comment:
I believe this can be closed as 'fixed'?
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue29719>
___
__
Change by Cheryl Sabella :
--
dependencies: +IDLE: Add docstrings and tests for codecontext
versions: +Python 3.8 -Python 3.6
___
Python tracker
<https://bugs.python.org/issue20
Cheryl Sabella added the comment:
Hi Ned,
Do you think this issue still needs follow up?
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue23
Cheryl Sabella added the comment:
@xiang.zhang, would you be able to make a PR for your patch? Thanks!
--
nosy: +csabella
stage: -> patch review
versions: +Python 3.7, Python 3.8 -Python 3.5, Python 3.6
___
Python tracker
<https://bugs.pyth
Cheryl Sabella added the comment:
I believe this may be a duplicate of issue 12486.
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue32
Cheryl Sabella added the comment:
Tomas,
Would you be willing to make a Github pull request with your patch? Thanks.
--
nosy: +csabella
stage: commit review -> needs patch
versions: +Python 3.8 -Python 3.5, Python 3.6
___
Python tracker
<
Change by Cheryl Sabella :
--
keywords: +easy
versions: +Python 3.7, Python 3.8 -Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issue27
Cheryl Sabella added the comment:
IDLE just added similar functionality to pyparse (issue 32940) using:
class ParseMap(dict):
def __missing__(self, key):
return 120 # ord('x')
# Map all ascii to 120 to avoid __missing__ call, then replace some.
Cheryl Sabella added the comment:
With the new instructions for building the docs via `make venv` and then `make
html`, I believe this issue can be closed.
--
nosy: +csabella
resolution: not a bug -> out of date
stage: -> resolved
status: open -&g
Cheryl Sabella added the comment:
Łukasz,
Sorry about that. Since Xiang is a core developer, I thought he would be in
the position to make the decision about moving forward with the patch. I
apologize for causing unnecessary work.
--
___
Python
Change by Cheryl Sabella :
--
keywords: +easy
stage: -> needs patch
versions: +Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issu
Change by Cheryl Sabella :
--
stage: -> patch review
versions: +Python 3.7, Python 3.8 -Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issu
Cheryl Sabella added the comment:
Is this superseded by issue 26701?
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue21611>
___
___
Python-bug
Cheryl Sabella added the comment:
Should the documentation patch for this be converted to a PR or does this need
to change to a bug issue to address Mark's concerns?
Thanks!
--
nosy: +csabella
stage: -> needs patch
versions: +Python 3.7, Python 3.8 -Py
Cheryl Sabella added the comment:
Sounds good. Thanks, Mark.
@mine0901, would you like to open a Github pull request for your patch? Thanks!
--
___
Python tracker
<https://bugs.python.org/issue25
Change by Cheryl Sabella :
--
resolution: -> duplicate
stage: -> resolved
status: open -> closed
superseder: -> Documentation for int constructor mentions __int__ but not
__trunc__
___
Python tracker
<https://bugs.python
Cheryl Sabella added the comment:
Is this issue still relevant?
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue25410>
___
___
Python-bug
Change by Cheryl Sabella :
--
versions: +Python 3.7, Python 3.8 -Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issue25433>
___
___
Python-bug
Cheryl Sabella added the comment:
Hi Paul,
Were you interested in moving forward with this doc change?
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue28
Change by Cheryl Sabella :
--
pull_requests: +5915
___
Python tracker
<https://bugs.python.org/issue28247>
___
___
Python-bugs-list mailing list
Unsubscribe:
Cheryl Sabella added the comment:
Hi Paul,
Thanks for your response. I've made the pull request from your patch, so it
would great if you could review it. Thanks!
--
___
Python tracker
<https://bugs.python.org/is
Cheryl Sabella added the comment:
Hi Nofar,
Are you still interested in working on this issue? Thanks!
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue27
Change by Cheryl Sabella :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Cheryl Sabella added the comment:
It looks like Barry was ready to merge this PR in December. Is there anything
else that needs to be done for it? Thanks!
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue32
Cheryl Sabella added the comment:
Thanks, Raymond. I'll take a look.
--
___
Python tracker
<https://bugs.python.org/issue27212>
___
___
Python-bugs-list m
Change by Cheryl Sabella :
--
keywords: +patch
pull_requests: +5942
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue27212>
___
___
Py
Change by Cheryl Sabella :
--
resolution: -> duplicate
stage: -> resolved
status: open -> closed
superseder: -> add cross-platform support for %s strftime-format code
___
Python tracker
<https://bugs.python
Cheryl Sabella added the comment:
What should be done for the PyGen_NeedsFinalizing API? Does it need to be
documented or should it be removed since it's no longer used in the code base?
Thanks!
--
nosy: +csabella
versions: +Python 3.7, Python 3.8 -Python 3.2, Pytho
Cheryl Sabella added the comment:
This was changed for 3.7 and 3.6 in PR1355, but there's no corresponding bpo
number for that. Should the relevant changes be backported to 2.7?
--
nosy: +csabella
___
Python tracker
<https://bugs.py
Change by Cheryl Sabella :
--
nosy: +christian.heimes
___
Python tracker
<https://bugs.python.org/issue31869>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Cheryl Sabella :
--
keywords: +easy
stage: -> needs patch
type: -> enhancement
versions: +Python 3.7, Python 3.8 -Python 3.3
___
Python tracker
<https://bugs.python.org/i
Cheryl Sabella 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
<https://bugs.python.org/issue6
Change by Cheryl Sabella :
--
resolution: -> duplicate
stage: test needed -> resolved
status: open -> closed
superseder: -> platform._sys_version does not parse correctly IronPython 2.x
version
___
Python tracker
<https://
Change by Cheryl Sabella :
--
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: +Pytho
Change by Cheryl Sabella :
--
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 3.7, Python 3.8
___
Pyt
Cheryl Sabella added the comment:
Adding a reference to PEP 545 for contributing documentation translations.
--
nosy: +csabella
___
Python tracker
<https://bugs.python.org/issue24
Change by Cheryl Sabella :
--
pull_requests: +6051
___
Python tracker
<https://bugs.python.org/issue27212>
___
___
Python-bugs-list mailing list
Unsubscribe:
Cheryl Sabella 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 function. But, maybe that
Cheryl Sabella added the comment:
Thanks! :-)
--
___
Python tracker
<https://bugs.python.org/issue27212>
___
___
Python-bugs-list mailing list
Unsubscribe:
Cheryl Sabella added the comment:
Thanks again, Antoine. I'll see what I can come up with. :-)
--
___
Python tracker
<https://bugs.python.org/is
Cheryl Sabella 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')
>>&g
Change by Cheryl Sabella :
--
keywords: +patch
pull_requests: +6278
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
Change by Cheryl Sabella :
--
pull_requests: +6284
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issue31500>
___
___
Python-
Change by Cheryl Sabella :
--
keywords: +easy
stage: -> needs patch
versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.4, Python 3.5
___
Python tracker
<https://bugs.python.org/issu
Change by Cheryl Sabella :
--
keywords: +easy -patch
stage: -> needs patch
versions: +Python 3.7, Python 3.8 -Python 3.4
___
Python tracker
<https://bugs.python.org/issu
Change by Cheryl Sabella :
--
keywords: +easy
stage: -> needs patch
versions: +Python 3.8
___
Python tracker
<https://bugs.python.org/issue32790>
___
___
Py
Cheryl Sabella 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
<https://bugs.python.org/issue31
Change by Cheryl Sabella :
--
assignee: -> csabella
nosy: +csabella
stage: -> needs patch
___
Python tracker
<https://bugs.python.org/issue33358>
___
___
Change by Cheryl Sabella :
--
pull_requests: +6316
___
Python tracker
<https://bugs.python.org/issue32857>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Cheryl Sabella :
--
pull_requests: +6359
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issue25198>
___
___
Python-
Cheryl Sabella 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 -> needs patch
_
Change by Cheryl Sabella :
--
keywords: +patch
pull_requests: +6364
___
Python tracker
<https://bugs.python.org/issue33397>
___
___
Python-bugs-list mailin
Cheryl Sabella 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: pendin
Change by Cheryl Sabella :
--
status: pending -> closed
___
Python tracker
<https://bugs.python.org/issue8613>
___
___
Python-bugs-list mailing list
Unsubscrib
Change by Cheryl Sabella :
--
stage: -> needs patch
type: -> enhancement
versions: +Python 3.8 -Python 3.4
___
Python tracker
<https://bugs.python.org/i
Cheryl Sabella 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.5.4 so that this bug
Cheryl Sabella added the comment:
ping
--
___
Python tracker
<https://bugs.python.org/issue26256>
___
___
Python-bugs-list mailing list
Unsubscribe:
Cheryl Sabella 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. However, I
don't see
1101 - 1200 of 1350 matches
Mail list logo