[issue30853] IDLE: configdialog -- factor out Tracer subclass

2017-07-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: Go ahead. If it works with font, add general tab. CD.remove_var_callbacks is currently only called in test_configdialog.tearDownModule. I added the call to prevent getting a TclError for each callback after the test finished. .destroy does not destroy call

[issue29214] Standard open() does not allow to specify file permissions.

2017-07-26 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue21423] concurrent.futures.ThreadPoolExecutor/ProcessPoolExecutor should accept an initializer argument

2017-07-26 Thread Antony Lee
Antony Lee added the comment: For cross-referencing purposes: I have proposed in http://bugs.python.org/issue25293 to allow passing a Thread/Process subclass as argument instead of an initializer function, which would both handle Mark Dickinson's comment (http://bugs.python.org/issue21423#msg2

[issue31003] IDLE: Add tests for help sources on configdialog general tab

2017-07-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 0c4c65104c951c70f3a2a2fd1a45bdf6540f3a8e by Terry Jan Reedy in branch '3.6': [3.6] bpo-31003: IDLE - Add more tests for General tab (GH-2859) (#2906) https://github.com/python/cpython/commit/0c4c65104c951c70f3a2a2fd1a45bdf6540f3a8e -- _

[issue31003] IDLE: Add tests for help sources on configdialog general tab

2017-07-26 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ ___

[issue31003] IDLE: Add tests for help sources on configdialog general tab

2017-07-26 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- Removed message: http://bugs.python.org/msg299269 ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue30853] IDLE: configdialog -- factor out Tracer subclass

2017-07-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: See in you can install blurb into 3.6 or even 3.5, (pip should work) and run it to add the blurb file. I will fill in the body. -- ___ Python tracker

[issue20754] Distribution.parse_config_files uses interpolation since Python 3

2017-07-26 Thread Jason R. Coombs
Jason R. Coombs added the comment: While investigating https://github.com/pypa/setuptools/issues/1062, I discovered that the implementation in the attached patch is insufficient. The 'parse_config_files' calls ConfigParser.__init__ in two places, before the for loop and at the end of each loop

[issue31037] Results in section 4.4 break and continue

2017-07-26 Thread Zachary Ware
Zachary Ware added the comment: We just received another report about this on docs@: https://mail.python.org/pipermail/docs/2017-July/032314.html -- ___ Python tracker ___ _

[issue9566] Compilation warnings under x64 Windows

2017-07-26 Thread Steve Dower
Steve Dower added the comment: New changeset a80e985c493d2ab9df0832c99d9ddb798d2e66cf by Steve Dower (Segev Finer) in branch 'master': bpo-9566: Change HANDLE argument parsing to unsigned in msvcrtmodule.c (#2904) https://github.com/python/cpython/commit/a80e985c493d2ab9df0832c99d9ddb798d2e66cf

[issue31046] ensurepip does not honour the value of $(prefix)

2017-07-26 Thread Nick Coghlan
Nick Coghlan added the comment: This looks like the right technical fix to me (see https://pip.pypa.io/en/stable/reference/pip_install/#cmdoption-prefix), but I'd like Donald to confirm that before we merge anything. Making this change will also require an update to the ensurepip docs: https:

[issue20754] Distribution.parse_config_files uses interpolation

2017-07-26 Thread Jason R. Coombs
Jason R. Coombs added the comment: Ack. The interpolation behavior was also present in Python 2.7. I missed that when I found this ticket and assumed it was similar to issue 20120. In this ticket, the user is requesting that distutils actually change the behavior from performing interpolation

[issue20754] Distribution.parse_config_files uses interpolation

2017-07-26 Thread Jason R. Coombs
Jason R. Coombs added the comment: Given that it's a change in behavior and not a bugfix, I don't see how this change could go into anything but the next release. -- versions: -Python 2.7, Python 3.5, Python 3.6 ___ Python tracker

[issue31052] smtplib not honoring bcc header

2017-07-26 Thread R. David Murray
R. David Murray added the comment: smtplib in 2.7 doesn't know anything about RFC822 or any of the replacement RFCs. sendmail accepts a *string*, and doesn't understand or modify anything about that string except the newlines. It is your responsibility not to *add* the BCC header. What you

<    1   2