[issue32523] inconsistent spacing in changelog.html

2018-06-04 Thread Julien Palard
Julien Palard added the comment: > So, if news items followed that rule, would the css change still be necessary? The CSS change would not be necessary, so yes the issue is "Don't mix paragraphs in changelogs". Maybe we can add an option to blurb merge to only keep the first paragraph, to

[issue29539] [smtplib] collect response data for all recipients

2018-06-04 Thread David Ford (FirefighterBlu3)
David Ford (FirefighterBlu3) added the comment: Yes, it is distinctly intended to collect the results for every recipient as in modern MTAs, there's more than just success/fail results. This is to collect data such as queue ID and the MTA's programmatic response for each individual

[issue28602] `tzinfo.fromutc()` fails when used for a fold-aware tzinfo implementation

2018-06-04 Thread Alexander Belopolsky
Change by Alexander Belopolsky : -- stage: -> needs patch versions: -Python 3.6, Python 3.7 ___ Python tracker ___ ___

[issue18174] Make regrtest with --huntrleaks check for fd leaks

2018-06-04 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17045] Improve C-API doc for PyTypeObject

2018-06-04 Thread Eric Snow
Eric Snow added the comment: I found some time to at least get the patch to apply cleanly to master and to make a PR. :) -- ___ Python tracker ___

[issue17045] Improve C-API doc for PyTypeObject

2018-06-04 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +7038 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33755] Failed separate tests in test_importlib

2018-06-04 Thread Barry A. Warsaw
Change by Barry A. Warsaw : -- keywords: +patch pull_requests: +7037 stage: -> patch review ___ Python tracker ___ ___

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

[issue33770] base64 throws 'incorrect padding' exception even though the string length is a multiple of 4

2018-06-04 Thread Dmitry
Dmitry added the comment: Ideally there needs to be an option to ignore non-fatal errors. Indeed, pretty much any string should be base64-decodeable. Take a look at Perl's MIME::Base64 - it can decode pretty much any random string (so long as it only contains valid base64 characters).

[issue33770] base64 throws 'incorrect padding' exception when the issue is NOT with the padding

2018-06-04 Thread Dmitry
Change by Dmitry : -- title: base64 throws 'incorrect padding' exception even though the string length is a multiple of 4 -> base64 throws 'incorrect padding' exception when the issue is NOT with the padding ___ Python tracker

[issue18174] Make regrtest with --huntrleaks check for fd leaks

2018-06-04 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +7035 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18174] Make regrtest with --huntrleaks check for fd leaks

2018-06-04 Thread STINNER Victor
STINNER Victor added the comment: New changeset 270581905cab2747ae8f7ee945301d6a29509cc7 by Victor Stinner in branch '2.7': bpo-18174: Fix file descriptor leaks in tests (GH-7408) https://github.com/python/cpython/commit/270581905cab2747ae8f7ee945301d6a29509cc7 --

[issue33609] Document that dicts preserve insertion order

2018-06-04 Thread Ned Deily
Ned Deily added the comment: Neil, that looks like a perfect opportunity to use the GitHub web interface to make that edit :) -- ___ Python tracker ___

[issue33609] Document that dicts preserve insertion order

2018-06-04 Thread Neil Schemenauer
Neil Schemenauer added the comment: The wording sounds strange to me. Currently it is: > Note that updating key doesn't affects the order ... I would say: > Note that updating a key does not affect the order ... -- nosy: +nascheme ___ Python

[issue33609] Document that dicts preserve insertion order

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset 8585ec9b761947aae6be5f653a5b9ddef2801d58 by Miss Islington (bot) in branch '3.7': bpo-33609: Document dict insertion order guarantee as of 3.7 (GH-7093) https://github.com/python/cpython/commit/8585ec9b761947aae6be5f653a5b9ddef2801d58

[issue18174] Make regrtest with --huntrleaks check for fd leaks

2018-06-04 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +7034 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33770] base64 throws 'incorrect padding' exception even though the string length is a multiple of 4

2018-06-04 Thread R. David Murray
R. David Murray added the comment: I always assumed that any string composed of valid base64 characters could be decoded to *something* if you added some padding characters, but apparently that was an invalid assumption. I agree that the message is incorrect for this case. --

[issue33609] Document that dicts preserve insertion order

2018-06-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +7033 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33609] Document that dicts preserve insertion order

2018-06-04 Thread Ned Deily
Ned Deily added the comment: New changeset f822549653d8d09b5b7dcddfdf12679a787c by Ned Deily (INADA Naoki) in branch 'master': bpo-33609: Document dict insertion order guarantee as of 3.7 (GH-7093) https://github.com/python/cpython/commit/f822549653d8d09b5b7dcddfdf12679a787c

[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Ned Deily
Ned Deily added the comment: With the workaround merged for 3.7.0rc1, I'm downgrading from "release blocker" to "high" since I believe Steve wants to keep this issue open for a possible compiler resolution. -- priority: release blocker -> high

[issue32523] inconsistent spacing in changelog.html

2018-06-04 Thread Ned Deily
Ned Deily added the comment: Thank you for looking into it! In the example you chose, I think the first step would be to trim the two two-paragraph news items to be only one paragraph each; in general, news items should only be a few sentences at most. With that change, I think the choice

[issue31234] Make support.threading_cleanup() stricter

2018-06-04 Thread STINNER Victor
STINNER Victor added the comment: New changeset 146351860a34b3cde387930a360e57391e7b99f3 by Victor Stinner in branch '2.7': [2.7] bpo-31234: Join threads explicitly in tests (#7406) https://github.com/python/cpython/commit/146351860a34b3cde387930a360e57391e7b99f3 --

[issue32523] inconsistent spacing in changelog.html

2018-06-04 Thread Julien Palard
Julien Palard added the comment: An intermediate fix would be to remove only bottom of first paragraphs: li p.first { margin-bottom: 0; } It looks like: https://mdk.fr/list-intermediate.png -- ___ Python tracker

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

2018-06-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: Great. I might try some timing experiments later. I have seen both of the first 2 options above in use. -- ___ Python tracker ___

[issue32523] inconsistent spacing in changelog.html

2018-06-04 Thread Julien Palard
Julien Palard added the comment: It's from docutils (see details below), it can be fixed in pydoctheme.css by adding something like: li p { margin-bottom: 0; } Would look like: https://mdk.fr/list-before.png → https://mdk.fr/list-after.png is it better? (If it's better I still have to

[issue33725] High Sierra hang when using multi-processing

2018-06-04 Thread Ned Deily
Ned Deily added the comment: {Note: this is not particularly relevant to the issue here.) Ronald: > In the long run the macOS installers should be build using the latest SDK > [...] That's something that would require some effort though to ensure that > the resulting binary still works on

[issue33694] test_asyncio: test_start_tls_server_1() fails on Python on x86 Windows7 3.7 and 3.x

2018-06-04 Thread STINNER Victor
STINNER Victor added the comment: > AMD64 Windows8.1 Non-Debug 3.x > ERROR: test_create_connection_ssl_failed_certificate > (test.test_asyncio.test_sslproto.ProactorStartTLSTests) Not surprising: same error on AMD64 Windows8.1 Non-Debug 3.7:

[issue31234] Make support.threading_cleanup() stricter

2018-06-04 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +7032 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29539] [smtplib] collect response data for all recipients

2018-06-04 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: It's too late for 3.7, but something like this could be an interesting enhancement for 3.8. I'm not so sure about the name of the suggested parameter since it seems more about recording successful deliveries in addition to the normally failed deliveries.

[issue33694] test_asyncio: test_start_tls_server_1() fails on Python on x86 Windows7 3.7 and 3.x

2018-06-04 Thread STINNER Victor
STINNER Victor added the comment: A variant of the bug? AMD64 Windows8.1 Non-Debug 3.x: http://buildbot.python.org/all/#/builders/12/builds/948 == ERROR: test_create_connection_ssl_failed_certificate

[issue33770] base64 throws 'incorrect padding' exception even though the string length is a multiple of 4

2018-06-04 Thread Dmitry
Dmitry added the comment: Apologies: apparently this particular string was given with one character missing in the beginning - should be "AAQAAQDhAAMAAQthJDczODFmZDM2LTNiOTYtNDVmYS04MjQ2LWRkYzJkMmViYjQ2YQ". In this case, the problem is the exception itself: it's not an

[issue33755] Failed separate tests in test_importlib

2018-06-04 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Looks like a sys.modules leak. I'm working on a branch. -- ___ Python tracker ___ ___

[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 ___ ___ Python-bugs-list

[issue33640] [EASY DOC] uuid: endian of the bytes argument is not documented

2018-06-04 Thread STINNER Victor
STINNER Victor added the comment: Thank you Farhaan Bukhsh for your documentation enhancement! I applied your change to 2.7, 3.6, 3.7 and master branches. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python

[issue33770] base64 throws 'incorrect padding' exception even though the string length is a multiple of 4

2018-06-04 Thread Dmitry
Dmitry added the comment: It doesn’t matter how many “=“ characters are appended - it’s always throwing the same exception :( -- ___ Python tracker ___

[issue33509] warnings.warn_explicit with module_globals=True raises a SystemError

2018-06-04 Thread STINNER Victor
STINNER Victor added the comment: > This test is failed with -We. Thank you Serhiy for the bug report. It should now be fixed again. -- stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset 103058e19bea48f4a80afde51df04338a753e952 by Miss Islington (bot) in branch '3.7': bpo-33720: Reduces maximum marshal recursion depth on release builds. (GH-7401) https://github.com/python/cpython/commit/103058e19bea48f4a80afde51df04338a753e952

[issue33770] base64 throws 'incorrect padding' exception even though the string length is a multiple of 4

2018-06-04 Thread Mark Dickinson
Mark Dickinson added the comment: This doesn't look like a valid base64 string to me: the padding (if present) at the end of the string should be either "=" or "==", never "===". Is the length of the decoded string equal to 58? If so, what's the last character of that decoded string?

[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Steve Dower
Steve Dower added the comment: Thanks. I merged, and miss-islington is backporting it. I guess at this stage you're manually cherry-picking into your own 3.7 branch for release? I'll merge for 3.7.1 though. -- ___ Python tracker

[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Ned Deily
Ned Deily added the comment: > I guess at this stage you're manually cherry-picking into your own 3.7 branch > for release? No, not until 3.7.0rc1 next week. No need to cherry pick. Thanks! -- ___ Python tracker

[issue33718] Enhance regrtest: meta-ticket for multiple changes

2018-06-04 Thread STINNER Victor
STINNER Victor added the comment: New changeset a30d587eb55cbf3b9af65b9883e87c1255ecba75 by Victor Stinner in branch '2.7': [2.7] bpo-33718: Update regrtest from master (GH-7402) https://github.com/python/cpython/commit/a30d587eb55cbf3b9af65b9883e87c1255ecba75 --

[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Steve Dower
Steve Dower added the comment: New changeset 2a4a62ba4ae770bbc7b7fdec0760031c83fe1f7b by Steve Dower in branch 'master': bpo-33720: Reduces maximum marshal recursion depth on release builds. (GH-7401) https://github.com/python/cpython/commit/2a4a62ba4ae770bbc7b7fdec0760031c83fe1f7b

[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +7031 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33615] test__xxsubinterpreters crashed on x86 Gentoo Refleaks 3.x

2018-06-04 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Same error in AMD64 Windows10 3.x: http://buildbot.python.org/all/#/builders/3/builds/941 -- ___ Python tracker ___

[issue33770] base64 throws 'incorrect padding' exception even though the string length is a multiple of 4

2018-06-04 Thread Dmitry
New submission from Dmitry : All base64 decoding methods fail to decode a valid base64 string, throwing 'incorrect padding' regardless of the string padding. Here's an example: >>> base64.urlsafe_b64decode('AQAAQDhAAMAAQthJDczODFmZDM2LTNiOTYtNDVmYS04MjQ2LWRkYzJkMmViYjQ2YQ===')

[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Ned Deily
Ned Deily added the comment: Steve, I'm OK with the proposed reduction as a workaround. We have other platform- and build-specific limits based on stack sizes etc. It's hard to have one-size-fits-all. -- ___ Python tracker

[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Steve Dower
Steve Dower added the comment: Ned - PR 7401 fixes the crash at the cost of reducing the permitted recursion depth in marshal. Your call whether we take this fix or disable PGO, but I'd much rather take this fix (PGO has full-interpreter effects whereas this is very narrow). When I hear

[issue33769] Cleanup start_tls() implementation

2018-06-04 Thread Yury Selivanov
Change by Yury Selivanov : -- keywords: +patch pull_requests: +7030 stage: -> patch review ___ Python tracker ___ ___

[issue33769] Cleanup start_tls() implementation

2018-06-04 Thread Yury Selivanov
New submission from Yury Selivanov : Current start_tls() implementation might raise an incorrect error message. It should also consistently cancel callbacks that it schedules in case of unhandled error. -- assignee: yselivanov components: asyncio messages: 318688 nosy: asvetlov,

[issue33394] the build of the shared modules is quiet/non-visible when GNU make gets passed macros

2018-06-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +7029 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27902] pstats.Stats: strip_dirs() method cannot handle file paths from different OS

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset 134bb46db706416d76d03c0af6018372f35be06f by Miss Islington (bot) in branch '2.7': bpo-27902: Add compatibility note to Profile docs (GH-7295) https://github.com/python/cpython/commit/134bb46db706416d76d03c0af6018372f35be06f --

[issue31849] Python/pyhash.c warning: comparison of integers of different signs

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset 150033d1599f55c10860a733d370707a3f7c444e by Miss Islington (bot) in branch '3.7': bpo-31849: Fix warning in pyhash.c (GH-6799) https://github.com/python/cpython/commit/150033d1599f55c10860a733d370707a3f7c444e --

[issue27902] pstats.Stats: strip_dirs() method cannot handle file paths from different OS

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset 889a1ef6833d47cc732c291852602b5fc8d5fde7 by Miss Islington (bot) in branch '3.6': bpo-27902: Add compatibility note to Profile docs (GH-7295) https://github.com/python/cpython/commit/889a1ef6833d47cc732c291852602b5fc8d5fde7 --

[issue27902] pstats.Stats: strip_dirs() method cannot handle file paths from different OS

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset 7548a9327409df787eef5f8c2780b53b5788012f by Miss Islington (bot) in branch '3.7': bpo-27902: Add compatibility note to Profile docs (GH-7295) https://github.com/python/cpython/commit/7548a9327409df787eef5f8c2780b53b5788012f -- nosy:

[issue33509] warnings.warn_explicit with module_globals=True raises a SystemError

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset d2c6ecc234e705b60cbcbb9dd4c99022407d0dd0 by Miss Islington (bot) in branch '3.7': bpo-33509: Fix test_warnings for python3 -Werror (GH-7365) https://github.com/python/cpython/commit/d2c6ecc234e705b60cbcbb9dd4c99022407d0dd0 --

[issue33640] [EASY DOC] uuid: endian of the bytes argument is not documented

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset 5f0726a3813dd9873e10690e708f8da9ede9502e by Miss Islington (bot) in branch '2.7': bpo-33640, uuid.UUID doc: document endian of bytes parameter (GH-7263) https://github.com/python/cpython/commit/5f0726a3813dd9873e10690e708f8da9ede9502e

[issue33761] Leaked file in test_iterparse in test_xml_etree

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset a7de1483c28eb818135a8c9a2e414e3a1d0fe648 by Miss Islington (bot) in branch '3.6': bpo-33761: Fix a file leak in test_iterparse in test_xml_etree. (GH-7358) https://github.com/python/cpython/commit/a7de1483c28eb818135a8c9a2e414e3a1d0fe648

[issue33640] [EASY DOC] uuid: endian of the bytes argument is not documented

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset 6a43d5f4fb3a83815bf7c2f157773a3b0d8f59b3 by Miss Islington (bot) in branch '3.6': bpo-33640, uuid.UUID doc: document endian of bytes parameter (GH-7263) https://github.com/python/cpython/commit/6a43d5f4fb3a83815bf7c2f157773a3b0d8f59b3

[issue33640] [EASY DOC] uuid: endian of the bytes argument is not documented

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset 1cdd0e71ecba53ab60080958c24193c27c3adee2 by Miss Islington (bot) in branch '3.7': bpo-33640, uuid.UUID doc: document endian of bytes parameter (GH-7263) https://github.com/python/cpython/commit/1cdd0e71ecba53ab60080958c24193c27c3adee2

[issue31849] Python/pyhash.c warning: comparison of integers of different signs

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset 4251d2a3540bf7a23949c7fafad64b796585674a by Miss Islington (bot) in branch '3.6': bpo-31849: Fix warning in pyhash.c (GH-6799) https://github.com/python/cpython/commit/4251d2a3540bf7a23949c7fafad64b796585674a -- nosy: +miss-islington

[issue33745] 3.7.0b5 changes the line number of empty functions with docstrings

2018-06-04 Thread Ned Deily
Ned Deily added the comment: Setting to deferred blocker for evaluation -- nosy: +inada.naoki, ncoghlan, ned.deily priority: normal -> deferred blocker versions: +Python 3.8 ___ Python tracker

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

2018-06-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: I believe the colorizer would need some new code, maybe in a subclass, but it should be possible. I would not know if I liked it until we tried it ;-). -- resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue33718] Enhance regrtest: meta-ticket for multiple changes

2018-06-04 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +7028 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2018-06-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: I checked that with the patch, the wwindow top stayed synchronized with the text after multiple movement operations of different types. The minimum requirement for correct operation of the scrollbar slider is that moving the slider to the top and bottom of

[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread Ned Deily
Ned Deily added the comment: Thanks for the fix! Since it apparently does not apply to 3.6, we should just close it like any other issue, right? So doing! -- priority: release blocker -> resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread Ned Deily
Ned Deily added the comment: > My understanding is that all changes including this one in 3.7 branch will > end up in 3.7.0rc1, right? Yes. Don't worry, the train won't leave without it. -- ___ Python tracker

[issue33742] Unsafe memory access in PyStructSequence_InitType

2018-06-04 Thread Pasha Stetsenko
Pasha Stetsenko added the comment: The code is simple: ``` // first initialize PyStructSequence_Field* fields; then: PyTypeObject* type = malloc(sizeof(PyTypeObject)); PyStructSequence_InitType(type, desc); ``` Of course, `malloc` can accidentally allocate memory that is already filled with

[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread Yury Selivanov
Yury Selivanov added the comment: > Since it apparently does not apply to 3.6, we should just close it like any > other issue, right? So doing! Sure. My understanding is that all changes including this one in 3.7 branch will end up in 3.7.0rc1, right? --

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

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset b7eb1024d06e51598fc8a19ed6e22b91120c6a1e by Miss Islington (bot) in branch '3.7': bpo-33763: IDLE: Replace label widget with text widget in code context (GH-7367) https://github.com/python/cpython/commit/b7eb1024d06e51598fc8a19ed6e22b91120c6a1e

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

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset ffe29dbcd96dc2fbda212f8335908fa1bc8ed893 by Miss Islington (bot) in branch '3.6': bpo-33763: IDLE: Replace label widget with text widget in code context (GH-7367) https://github.com/python/cpython/commit/ffe29dbcd96dc2fbda212f8335908fa1bc8ed893

[issue33527] Invalid child function scope

2018-06-04 Thread R. David Murray
Change by R. David Murray : -- resolution: -> not a bug stage: test needed -> resolved status: open -> closed ___ Python tracker ___

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

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset db96871765d76dedb06cace8fa393678ae56 by Miss Islington (bot) in branch '3.6': bpo-33664: Scroll IDLE editor text by lines (GH-7351) https://github.com/python/cpython/commit/db96871765d76dedb06cace8fa393678ae56 --

[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +7027 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33766] Grammar Incongruence

2018-06-04 Thread Guido van Rossum
Guido van Rossum added the comment: I am fine with adding this to the docs. But the irony of the case is that the echo command adds a newline, so the original premise (that test.py contains an invalid program) is incorrect. ;-) -- ___ Python

[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread Yury Selivanov
Yury Selivanov added the comment: Fixes are in master and 3.7 now, so this should be fixed in 3.7.0rc1. Ned, I'm not sure what's the workflow here, please feel free to close this issue and change its priority. -- ___ Python tracker

[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 87936d03cb29ca039c5799190e8da764e62b7882 by Yury Selivanov (Miss Islington (bot)) in branch '3.7': bpo-33734: asyncio/ssl: a bunch of bugfixes (GH-7321) (GH-7396) https://github.com/python/cpython/commit/87936d03cb29ca039c5799190e8da764e62b7882

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

2018-06-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +7026 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2018-06-04 Thread miss-islington
miss-islington added the comment: New changeset cfc12ec68c3f90ebd94bc47d14d18b7217850391 by Miss Islington (bot) in branch '3.7': bpo-33664: Scroll IDLE editor text by lines (GH-7351) https://github.com/python/cpython/commit/cfc12ec68c3f90ebd94bc47d14d18b7217850391 -- nosy:

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

2018-06-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +7025 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2018-06-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset b609e687a076d77bdd687f5e4def85e29a044bfc by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-33763: IDLE: Replace label widget with text widget in code context (GH-7367)

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

2018-06-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +7023 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2018-06-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +7024 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2018-06-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset d49dbd9acc6db544ca6cb2445fe17eb0c3be4bba by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-33664: Scroll IDLE editor text by lines (GH-7351) https://github.com/python/cpython/commit/d49dbd9acc6db544ca6cb2445fe17eb0c3be4bba

[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +7022 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 9602643120a509858d0bee4215d7f150e6125468 by Yury Selivanov in branch 'master': bpo-33734: asyncio/ssl: a bunch of bugfixes (#7321) https://github.com/python/cpython/commit/9602643120a509858d0bee4215d7f150e6125468 --

[issue33615] test__xxsubinterpreters crashed on x86 Gentoo Refleaks 3.x

2018-06-04 Thread Eric Snow
Eric Snow added the comment: FTR, bpo-33724 is related -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17045] Improve C-API doc for PyTypeObject

2018-06-04 Thread Eric Snow
Eric Snow added the comment: I'll definitely take a look. It might not be until Friday though. -- ___ Python tracker ___ ___

[issue33336] [imaplib] MOVE is a legal command

2018-06-04 Thread STINNER Victor
STINNER Victor added the comment: Should we also add the MOVE command to Python 2.7, 3.6 and 3.7? The change looks safe and trivial. -- ___ Python tracker ___

[issue33336] [imaplib] MOVE is a legal command

2018-06-04 Thread STINNER Victor
STINNER Victor added the comment: https://tools.ietf.org/html/rfc6851 Internet Message Access Protocol (IMAP) - MOVE Extension January 2013 -- nosy: +vstinner ___ Python tracker

[issue21142] Daily/weekly ABI scan?

2018-06-04 Thread Eric Snow
Eric Snow added the comment: That email thread contains multiple references to scripts that may be used to identify ABI issues, among other good points. FWIW, when consolidating the C globals last year I added a tool to track the remaining globals: Tools/c-globals It is similar (at

[issue21142] Daily/weekly ABI scan?

2018-06-04 Thread Eric Snow
Eric Snow added the comment: FTR, the issue of ABI breakage has come up quite a few times on the mailing list. Most recently: https://mail.python.org/pipermail/python-dev/2018-June/153775.html -- ___ Python tracker

[issue33724] test__xxsubinterpreters failed on ARMv7 Ubuntu 3.x

2018-06-04 Thread Eric Snow
Eric Snow added the comment: Sorry for any confusion. This issue is still resolved. It is bpo-33615 that had an unexpected recurrence. I've re-opened that one. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue33615] test__xxsubinterpreters crashed on x86 Gentoo Refleaks 3.x

2018-06-04 Thread Eric Snow
Eric Snow added the comment: This appears to be recurring on the "x86 Gentoo Refleaks 3.x" builder still. I was thrown off by the success of the first run after I landed my fix: http://buildbot.python.org/all/#/builders/1/builds/241 FYI, the other buildbots having this issue before (e.g.

[issue33764] AppVeyor builds interrupted before tests complete

2018-06-04 Thread Steve Dower
Steve Dower added the comment: Are we sure we haven't actually regressed something here and it's actually taking more resources? I can't tell from this discussion if it's memory CPU, disk or time that we're hitting problems. I'll have to look at the VSTS build history to see whether it

[issue5755] "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++"

2018-06-04 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: > 2.7 doesn't have CFLAGS_NODIST I meant backporting this patch as-is to 2.7 without adding -Wstrict-prototypes to CFLAGS_NODIST -- ___ Python tracker

[issue5755] "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++"

2018-06-04 Thread INADA Naoki
INADA Naoki added the comment: 2.7 doesn't have CFLAGS_NODIST and I don't have motivation to manually backport it to 2.7. (I'm not expert of autotools) -- ___ Python tracker

[issue19982] Add a "target" parameter to runpy.run_path and runpy.run_module

2018-06-04 Thread Nick Coghlan
Change by Nick Coghlan : -- versions: +Python 3.8 -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33527] Invalid child function scope

2018-06-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: >From the zip file, the "bug" is: # def parent_function2( argument1 ): def child_function(): print( argument1 ) if False: argument1 = None # Same function but with fake assignment

[issue5755] "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++"

2018-06-04 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: > Can we backport this to 3.7 and 3.6? I think it's safe and helpful. And 2.7 for the same reasons. -- ___ Python tracker ___

[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

  1   2   >