[issue35646] python -v writes to stderr

2019-01-02 Thread Eric V. Smith
Eric V. Smith added the comment: -v writes to stderr, so this is the expected behavior. Although maybe this could be better documented. See issue 18338, where this was briefly discussed and a change was rejected. Maybe you're looking for -V (uppercase) or --version, which do write to

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10829, 10830, 10831 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset ab54b9a130c88f708077c2ef6c4963b632c132b3 by Terry Jan Reedy (Emmanuel Arias) in branch 'master': bpo-35641: IDLE - format calltip properly when no docstring (GH-11415)

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10829, 10830 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10829 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35636] remove redundant check in unicode_hash(PyObject *self)

2019-01-02 Thread Ma Lin
Ma Lin added the comment: One scene is caching regular expresses, b'[a-z]', '[a-z]' may exist in the same dict. Any way, it's trivial on the whole. -- ___ Python tracker ___

[issue35646] Subprocess.Popen('python -v', stdout=PIPE, stderr=PIPE, Shell=True) gives output in stderr

2019-01-02 Thread Deepak Joshi
New submission from Deepak Joshi : Subprocess.Popen('python -v',stdout=PIPE,stderr=PIPE,Shell=True) Prduces output in stderr instead of stdout. For others: pip --version or git --version output is in stdout and is expected. -- components: Windows, ctypes messages: 332915 nosy: Deepak

[issue35644] venv doesn't work on Windows when no venvlauncher executable present

2019-01-02 Thread Steve Dower
Steve Dower added the comment: The installed venv seems to be okay, so I'm going to assume it's something about your own build. Now I realise I haven't ever tried virtualenv against 3.6 or later... no idea what state that's in. -- ___ Python

[issue35644] venv doesn't work on Windows when no venvlauncher executable present

2019-01-02 Thread Steve Dower
Steve Dower added the comment: That patch will break the case where the launcher *is* present, which is why it was changed. If you're sure the launcher won't be present under Scripts/nt, then that patch is okay. You'll probably need to add code to also copy python37.dll and

[issue35645] Alarm usage

2019-01-02 Thread Steven D'Aprano
Change by Steven D'Aprano : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35645] Alarm usage

2019-01-02 Thread Steven D'Aprano
Steven D'Aprano added the comment: This bug report is incoherent. This has nothing to do with alarms or regular expressions, and I don't know what your code is supposed to do or what results you are expecting. What's "a calci programe"? You ask: "Do we have any ways to rectify the same.

[issue35636] remove redundant check in unicode_hash(PyObject *self)

2019-01-02 Thread Stefan Behnel
Stefan Behnel added the comment: > maybe this can be changed in Python 4.0 Well, if you find a *very* good reason for changing it, as I said. Py4 won't be special in that regard, I suppose. -- ___ Python tracker

[issue35636] remove redundant check in unicode_hash(PyObject *self)

2019-01-02 Thread Ma Lin
Ma Lin added the comment: > I'd advise against changing the hash function without a very good reason. You > never know how much code relies on it in one way or another. ok, maybe this can be changed in Python 4.0 -- ___ Python tracker

[issue35636] remove redundant check in unicode_hash(PyObject *self)

2019-01-02 Thread Stefan Behnel
Stefan Behnel added the comment: > why bytes and str generates the same hash value for ASCII sequence Probably mostly for historical Py2 reasons. These days, both are somewhat unlikely to appear in the same dict. But still, I'd advise against changing the hash function without a very good

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

2019-01-02 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35636] remove redundant check in unicode_hash(PyObject *self)

2019-01-02 Thread Ma Lin
Ma Lin added the comment: Thanks for review. Don't know why bytes and str generates the same hash value for ASCII sequence. >>> hash('abc') == hash(b'abc') True This may brings some hash collisions, does it affect performance slightly? -- ___

[issue35645] Alarm usage

2019-01-02 Thread Siva
New submission from Siva : '\a' in a command line gives '\x07' in response.Tried '\a' in a calci programe but response gives me enter a valid data and a small box but o alarm. Do we have any ways to rectify the same. if so please let me know. print('enter a value from the below list\n') a

[issue35609] Improve of abc.py docstring

2019-01-02 Thread INADA Naoki
INADA Naoki added the comment: No plan for removal. See https://bugs.python.org/issue28886#msg282582 -- nosy: +inada.naoki ___ Python tracker ___

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

2019-01-02 Thread miss-islington
miss-islington added the comment: New changeset b364caa3658e843151602356e527851d6c68 by Miss Islington (bot) in branch '3.7': bpo-33987: IDLE - use ttk Frame for ttk widgets (GH-11395) https://github.com/python/cpython/commit/b364caa3658e843151602356e527851d6c68 -- nosy:

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

2019-01-02 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10827 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2019-01-02 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10828 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10826, 10827, 10828 stage: test needed -> patch review ___ Python tracker ___ ___

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

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10826, 10827 stage: test needed -> patch review ___ Python tracker ___ ___

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

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10826 stage: test needed -> patch review ___ Python tracker ___ ___ Python-bugs-list

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

2019-01-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset aff0adabf3ace62073076f4ce875ff568f2d3180 by Terry Jan Reedy in branch 'master': bpo-33987: IDLE - use ttk Frame for ttk widgets (GH-11395) https://github.com/python/cpython/commit/aff0adabf3ace62073076f4ce875ff568f2d3180 --

[issue34055] IDLE: erroneous 'smart' indents in shell

2019-01-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: PR 11307 was moved to #35610. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34055] IDLE: erroneous 'smart' indents in shell

2019-01-02 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10543 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34055] IDLE: erroneous 'smart' indents in shell

2019-01-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: On my Macbook with Mohave with installed python.org 3.7.2, compiled against tk 8.6.8, the startup header is Python 3.7.2 (v3.7.2.9a3ffc0492, Dec 24 ...) [Clang 6.0 .. on Darwin]. Your header is quite different (repository?, tk version?) but the version is

[issue34055] IDLE: erroneous 'smart' indents in shell

2019-01-02 Thread Grant Jenks
Grant Jenks added the comment: This issue was closed but I still see the problem in 3.7.2. Here's a snippet with line numbers from IDLE: 01 Python 3.7.2 (default, Dec 30 2018, 08:59:00) 02 [Clang 9.1.0 (clang-902.0.39.2)] on darwin 03 Type "help", "copyright", "credits" or "license()" for

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

2019-01-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: "Expected" and "Observed" seem good. I like "Received" slightly better, but would not argue with PR author. It depends on whether one anthropomorphizes the assert function (or test machinery) as saying 'I expected to see' or 'I expected to get'.

[issue35629] hang and/or leaked processes with multiprocessing.Pool(...).imap(...)

2019-01-02 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- nosy: +pablogsal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35629] hang and/or leaked processes with multiprocessing.Pool(...).imap(...)

2019-01-02 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: I believe that this is similar to https://bugs.python.org/issue35378 on which @pablogsal is working. You were right, the issue steems from a refcount bug. Until the resolution you can avoid the issue by explictly keeping a reference on the pool: >>> import

[issue35589] BaseSelectorEventLoop.sock_sendall() performance regression: extra copy of data

2019-01-02 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch, patch, patch pull_requests: +10823, 10824, 10825 stage: -> patch review ___ Python tracker ___

[issue35589] BaseSelectorEventLoop.sock_sendall() performance regression: extra copy of data

2019-01-02 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch, patch pull_requests: +10823, 10824 stage: -> patch review ___ Python tracker ___

[issue35589] BaseSelectorEventLoop.sock_sendall() performance regression: extra copy of data

2019-01-02 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +10823 stage: -> patch review ___ Python tracker ___ ___

[issue35644] venv doesn't work on Windows when no venvlauncher executable present

2019-01-02 Thread Ray Donnelly
Change by Ray Donnelly : -- title: venv doesn't do what it claims to do (apears not to work at all?) -> venv doesn't work on Windows when no venvlauncher executable present ___ Python tracker

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread miss-islington
miss-islington added the comment: New changeset d7cb2034bbaa26170cdc66eb54626e3ce1b8678a by Miss Islington (bot) in branch '3.7': bpo-35525: Correct the argument name for NNTP.starttls() (GH-11310) https://github.com/python/cpython/commit/d7cb2034bbaa26170cdc66eb54626e3ce1b8678a --

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread Tal Einat
Change by Tal Einat : -- pull_requests: -10818, 10819, 10821, 10822 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35644] venv doesn't do what it claims to do (apears not to work at all?)

2019-01-02 Thread Ray Donnelly
Ray Donnelly added the comment: The commit that my patch modifies is: https://github.com/python/cpython/commit/1c3de541e64f75046b20cdd27bada1557e550bcd Cheers. -- ___ Python tracker

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread Tal Einat
Change by Tal Einat : -- pull_requests: -10818, 10819 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread Tal Einat
Change by Tal Einat : -- pull_requests: -10818, 10819, 10822 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread Tal Einat
Change by Tal Einat : -- pull_requests: -10818 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10819, 10820, 10821, 10822 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10819, 10820, 10822 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10817, 10818, 10819, 10820 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10818, 10820 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10817, 10818 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10817 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread Tal Einat
Tal Einat added the comment: New changeset e9a044ec16989bd4b39763c0588c17200a925350 by Tal Einat (Harmandeep Singh) in branch 'master': bpo-35525: Correct the argument name for NNTP.starttls() (GH-11310) https://github.com/python/cpython/commit/e9a044ec16989bd4b39763c0588c17200a925350

[issue35644] venv doesn't do what it claims to do (apears not to work at all?)

2019-01-02 Thread Ray Donnelly
Ray Donnelly added the comment: Bit of an update to this, I'm re-opening it as there appears to be a regression from Python 3.7.1 to 3.7.2 for the case when there is no venvlauncher.exe present (i.e. when there are no python{w,}.exes in Lib\venv\scripts\nt). The old code of copying

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread Tal Einat
Change by Tal Einat : -- pull_requests: -10554, 10555 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2019-01-02 Thread Tal Einat
Change by Tal Einat : -- pull_requests: -10554 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35644] venv doesn't do what it claims to do (apears not to work at all?)

2019-01-02 Thread Ray Donnelly
Ray Donnelly added the comment: I found the executable is in the `Scripts` directory, closing. The real issue I'm facing is on Anaconda Distribution's build of Python 3 which I'm updating to 3.7.2. Closing, Cheers! -- stage: -> resolved status: open -> closed

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

2019-01-02 Thread Tal Einat
Tal Einat added the comment: Perhaps "expected" and "observed" or "detected"? -- nosy: +taleinat ___ Python tracker ___ ___

[issue35644] venv doesn't do what it claims to do (apears not to work at all?)

2019-01-02 Thread Ray Donnelly
New submission from Ray Donnelly : Happy New Year! I'm not sure if this is a misunderstanding on my part, a docs bug or a code bug. At https://docs.python.org/3/library/venv.html we see: "The solution for this problem is to create a virtual environment, a self-contained directory tree that

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread miss-islington
miss-islington added the comment: New changeset 6d04bc9a2eb02efdb49f14f2c9664fe687f9a170 by Miss Islington (bot) in branch '3.7': closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py (GH-11411)

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Tal Einat
Change by Tal Einat : -- pull_requests: -10814, 10815 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Tal Einat
Change by Tal Einat : -- pull_requests: -10814, 10815, 10816 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch, patch, patch pull_requests: +10813, 10814, 10815 stage: needs patch -> patch review ___ Python tracker ___

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Tal Einat
Change by Tal Einat : -- pull_requests: -10814 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch, patch pull_requests: +10813, 10814 stage: needs patch -> patch review ___ Python tracker ___

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +10813 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch, patch, patch, patch pull_requests: +10813, 10814, 10815, 10816 stage: needs patch -> patch review ___ Python tracker ___

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread Mickaël Schoentgen
Change by Mickaël Schoentgen : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread Mickaël Schoentgen
Change by Mickaël Schoentgen : -- resolution: fixed -> status: closed -> open versions: +Python 3.6, Python 3.7 ___ Python tracker ___

[issue35431] Add a function for computing binomial coefficients to the math module

2019-01-02 Thread Yash Aggarwal
Change by Yash Aggarwal : -- pull_requests: +10812 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35638] Introduce fixed point locale aware format type for floating point numbers

2019-01-02 Thread Eric V. Smith
Eric V. Smith added the comment: I haven't looked at this closely yet, but you'll need to at least: - add tests that the locale-aware formatting is happening - support decimal - make sure it works with complex (which it probably does, but needs a test) And, I think we'll need to run this

[issue35434] Wrong bpo linked in What's New in 3.8

2019-01-02 Thread Yash Aggarwal
Change by Yash Aggarwal : -- pull_requests: +10809, 10810, 10811 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35434] Wrong bpo linked in What's New in 3.8

2019-01-02 Thread Yash Aggarwal
Change by Yash Aggarwal : -- pull_requests: +10809, 10810 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35434] Wrong bpo linked in What's New in 3.8

2019-01-02 Thread Yash Aggarwal
Change by Yash Aggarwal : -- pull_requests: +10809 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10804, 10805, 10806, 10808 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10804, 10805, 10806, 10807, 10808 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10803, 10804 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10803, 10804, 10805, 10806 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset d466c43e55cd32af84e353f0e9a48b09b7534f61 by Benjamin Peterson (Mickaël Schoentgen) in branch 'master': closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py (GH-11411)

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10803 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +10803, 10804, 10805 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread Mickaël Schoentgen
Change by Mickaël Schoentgen : -- keywords: +patch, patch pull_requests: +10801, 10802 stage: -> patch review ___ Python tracker ___

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread Mickaël Schoentgen
Change by Mickaël Schoentgen : -- keywords: +patch pull_requests: +10801 stage: -> patch review ___ Python tracker ___ ___

[issue35643] SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py

2019-01-02 Thread Mickaël Schoentgen
New submission from Mickaël Schoentgen : This warning is emitted on Modules/_sha3/cleanup.py, line 11: SyntaxWarning: invalid escape sequence \ CPP2 = re.compile("\ //(.*)") -- components: Extension Modules messages: 332888 nosy: Tiger-222 priority: normal severity: normal

[issue35642] _asynciomodule.c compiled in both pythoncore.vcxproj and _asyncio.vcxproj

2019-01-02 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch, patch, patch pull_requests: +10797, 10798, 10800 stage: -> patch review ___ Python tracker ___

[issue35642] _asynciomodule.c compiled in both pythoncore.vcxproj and _asyncio.vcxproj

2019-01-02 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +10797 stage: -> patch review ___ Python tracker ___ ___

[issue35642] _asynciomodule.c compiled in both pythoncore.vcxproj and _asyncio.vcxproj

2019-01-02 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch, patch pull_requests: +10797, 10798 stage: -> patch review ___ Python tracker ___

[issue35642] _asynciomodule.c compiled in both pythoncore.vcxproj and _asyncio.vcxproj

2019-01-02 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch, patch, patch, patch pull_requests: +10797, 10798, 10799, 10800 stage: -> patch review ___ Python tracker ___

[issue35642] _asynciomodule.c compiled in both pythoncore.vcxproj and _asyncio.vcxproj

2019-01-02 Thread Gregory Szorc
New submission from Gregory Szorc : The _asynciomodule.c source file is compiled as part of both pythoncore.vcxproj (providing pythonXY.dll) and _asyncio.vcxproj (providing _asyncio.pyd). PC\config.c doesn't reference PyInit__asyncio. I'm inclined to believe that _asynciomodule.c being built

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi Tal Einat! I would like to take this issue to be my first contribution :-) Thanks! -- nosy: +eamanu ___ Python tracker ___

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Tal Einat
Tal Einat added the comment: I'm marking this as easy. Whoever works on this should make sure to add a new test case for this bug. -- assignee: taleinat -> keywords: +easy ___ Python tracker

[issue35638] Introduce fixed point locale awear format type for floating point numbers

2019-01-02 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35609] Improve of abc.py docstring

2019-01-02 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi Serhiy, A little question. Is there a planned version to remove the deprecated? -- ___ Python tracker ___

[issue35196] IDLE text squeezer is too aggressive and is slow

2019-01-02 Thread Tal Einat
Tal Einat added the comment: Hi Dan, Your report is unrelated to this Squeezer-related issue, but thanks for reporting it! I've created a new issue for what you've reported, see #35641. -- ___ Python tracker

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Tal Einat
Change by Tal Einat : -- assignee: -> taleinat components: +IDLE nosy: +terry.reedy stage: -> needs patch type: -> behavior versions: +Python 3.7, Python 3.8 ___ Python tracker

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Tal Einat
New submission from Tal Einat : IDLE usually wraps call-tips to 85 characters. However, for functions without a doc-string, this formatting is skipped. This is an issue for functions with long signatures, e.g. due to having many arguments or due to having default values with long repr-s.

[issue35196] IDLE text squeezer is too aggressive and is slow

2019-01-02 Thread Dan Snider
Dan Snider added the comment: Not 100% sure if it's appropriate to post this here... so sorry if not. So anyway, the _MAX_COLS and _MAX_LINE constants used for `get_argspec` seem like they were intended to limit the generated text tips to at most 5 rows, 85 characters wide, which makes

[issue35638] Introduce fixed point locale awear format type for floating point numbers

2019-01-02 Thread steelman
steelman added the comment: I have created a new format "m" that is for "n", what "f" is for "g". The patch for string.rst says +-+--+ | ``'m'`` | Number. This is the same as ``'f'``, except that it uses | | |

[issue35638] Introduce fixed point locale awear format type for floating point numbers

2019-01-02 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch, patch, patch, patch pull_requests: +10793, 10794, 10795, 10796 stage: -> patch review ___ Python tracker ___

[issue35638] Introduce fixed point locale awear format type for floating point numbers

2019-01-02 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch, patch, patch pull_requests: +10793, 10794, 10796 stage: -> patch review ___ Python tracker ___

[issue35638] Introduce fixed point locale awear format type for floating point numbers

2019-01-02 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch, patch pull_requests: +10793, 10794 stage: -> patch review ___ Python tracker ___

[issue35638] Introduce fixed point locale awear format type for floating point numbers

2019-01-02 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +10793 stage: -> patch review ___ Python tracker ___ ___

[issue35640] Allow passing PathLike arguments to SimpleHTTPRequestHandler

2019-01-02 Thread Géry
Change by Géry : -- nosy: +maggyero, mdk, xtreak versions: +Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35638] Introduce fixed point locale awear format type for floating point numbers

2019-01-02 Thread Eric V. Smith
Eric V. Smith added the comment: Of course, feel free to create a PR. But the correct place to discuss any new behavior is on the issue tracker, or maybe on python-ideas, not in a PR. -- ___ Python tracker

  1   2   >