[issue24244] Python exception on strftime with %f on Python 3 and Python 2 on windows

2015-05-27 Thread Ned Deily
Ned Deily added the comment: But do you have any Python header files in /usr/local/include? The gcc command you pasted shows -I/usr/local/include? Mine don't show that. -- ___ Python tracker <http://bugs.python.org/is

[issue24244] Python exception on strftime with %f on Python 3 and Python 2 on windows

2015-05-27 Thread Ned Deily
Ned Deily added the comment: Yury, another (less) wild guess: do you have an out-of-date Modules/Setup or Setup.local? timemodule is defined in Setup.dist but that will be overridden by a locally modified copy in the Modules directory. Towards the end of the configured top-level Makefile

[issue24244] Python exception on strftime with %f on Python 3 and Python 2 on windows

2015-05-27 Thread Ned Deily
Ned Deily added the comment: Check the times and contents on all of your Modules/Setup* files. Try deleting Setup.local for one. -- ___ Python tracker <http://bugs.python.org/issue24

[issue24244] Python exception on strftime with %f on Python 3 and Python 2 on windows

2015-05-27 Thread Ned Deily
Ned Deily added the comment: > Note that when I run into build problems after an update, I generally > run 'make distclean' and then redo the configure/make. Yes, but I believe that won't help with changed Modules/Setup* files and, because it is needed in the core i

[issue24244] Python exception on strftime with %f on Python 3 and Python 2 on windows

2015-05-27 Thread Ned Deily
Ned Deily added the comment: So you did, sorry! Another, perhaps evan more reliable option is (requires enabling the purge extension in hg): hg purge --all -- ___ Python tracker <http://bugs.python.org/issue24

[issue24295] Backport of #17086 causes regression in setup.py

2015-05-27 Thread Ned Deily
Changes by Ned Deily : -- nosy: +doko priority: normal -> high ___ Python tracker <http://bugs.python.org/issue24295> ___ ___ Python-bugs-list mailing list Un

[issue24303] OSError 17 due to _multiprocessing/semaphore.c assuming a one-to-one Pid -> process mapping.

2015-05-27 Thread Ned Deily
Changes by Ned Deily : -- nosy: +devin, sbt stage: -> patch review ___ Python tracker <http://bugs.python.org/issue24303> ___ ___ Python-bugs-list mai

[issue24303] OSError 17 due to _multiprocessing/semaphore.c assuming a one-to-one Pid -> process mapping.

2015-05-27 Thread Ned Deily
Changes by Ned Deily : -- nosy: +davin -devin ___ Python tracker <http://bugs.python.org/issue24303> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24301] gzip module failing to decompress valid compressed file

2015-05-27 Thread Ned Deily
Ned Deily added the comment: Can you add a public copy of a file that fails this way? There are several open issues with gzip, like Issue1159051, that might cover this but it's hard to know for sure without a test case. -- nosy: +ned.deily type:

[issue24304] Documentation broken link to license

2015-05-27 Thread Ned Deily
Ned Deily added the comment: Thanks for the report! -- nosy: +ned.deily resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.or

[issue24305] The new import system makes it impossible to correctly issue a deprecation warning for a module

2015-05-27 Thread Ned Deily
Changes by Ned Deily : -- nosy: +brett.cannon, eric.snow, ncoghlan ___ Python tracker <http://bugs.python.org/issue24305> ___ ___ Python-bugs-list mailin

[issue24307] pip error on windows whose current user name contains non-ascii characters

2015-05-27 Thread Ned Deily
Changes by Ned Deily : -- nosy: +Marcus.Smith, dstufft, ncoghlan, paul.moore ___ Python tracker <http://bugs.python.org/issue24307> ___ ___ Python-bugs-list mailin

[issue4753] Faster opcode dispatch on gcc

2015-05-27 Thread Ned Deily
Ned Deily added the comment: @Vamsi, could you please open a new issue and attach your patch there so it can be properly tracked for 2.7? This issue has been closed for five years and the code has been out in the field for a long time in Python 3. Thanks! -- nosy: +ned.deily

[issue24310] Idle documentation -- what to do if you do not see an underscore.

2015-05-27 Thread Ned Deily
Ned Deily added the comment: That may be a problem better fixed in Tk itself. I don't have a Retina display handy. Assuming you have a current ActiveTcl 8.5 (8.5.18) installed, could you try some of the Tk text widget demos in /usr/local/bin/wish8.5 and see if the problem shows up

[issue24310] Idle documentation -- what to do if you do not see an underscore.

2015-05-27 Thread Ned Deily
Ned Deily added the comment: Yes, that's probably a good thing to do in any case. I can add it to the Tcl/Tk info page for OS X as at least an interim measure: https://www.python.org/download/mac/tcltk/ -- assignee: docs@python -> ned.deily components: +IDLE versions: -Py

[issue24311] urllib2.urlopen() through proxy fails when HTTPS URL contains port number

2015-05-27 Thread Ned Deily
Changes by Ned Deily : -- nosy: +serhiy.storchaka ___ Python tracker <http://bugs.python.org/issue24311> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24321] interaction of nonlocal and except leading to incorrect behavior

2015-05-28 Thread Ned Deily
Changes by Ned Deily : -- stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue24321> ___ ___ Python-bugs-list

[issue24330] "Configure Idle" not in "Options"

2015-05-30 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. As much as possible, IDLE and the underlying Tk GUI toolkit it is built with try go conform to the interface guidelines of the platform (e.g. Windows, OS X, Unix X11) it is running on. On OS X, application configuration options are

[issue24332] urllib.parse should not discard delimiters when associated component is empty

2015-05-30 Thread Ned Deily
Changes by Ned Deily : -- nosy: +orsenthil ___ Python tracker <http://bugs.python.org/issue24332> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24350] dict({'a':'aa'}, a='bb') raises segmentation fault on Mac

2015-06-01 Thread Ned Deily
Changes by Ned Deily : -- resolution: out of date -> duplicate stage: -> resolved superseder: -> python.org Interactive interpreter linked with libedit can segfault on future OS X ___ Python tracker <http://bugs.python.or

[issue24357] Change socket.getaddrinfo example to show IPv6 connectivity

2015-06-01 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. According to the PSF Infrastructure Team, www.python.org currently does not support IPv6 because the Content Delivery Network that we now use does not support it yet. One Python URL that does support IPv6: >>> socket.ge

[issue24357] Change socket.getaddrinfo example to show IPv6 connectivity

2015-06-01 Thread Ned Deily
Ned Deily added the comment: We decided to use google.com as an example instead. (And I tested the tracker upgrade by fixing the wrong initial typo that I had made.) -- resolution: -> fixed stage: needs patch -> resolved status: open -&g

[issue24267] test_venv.EnsurePipTest.test_with_pip triggers version check over network

2015-06-01 Thread Ned Deily
Ned Deily added the comment: All of the 3.x buildbots are broken again due to the pip 7.0.3 update. == FAIL: test_with_pip (test.test_venv.EnsurePipTest

[issue24308] Test failure: test_with_pip (test.test_venv.EnsurePipTest in 3.x

2015-06-01 Thread Ned Deily
Ned Deily added the comment: This is covered by Issue24267; let's track it there. -- nosy: +ned.deily resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> test_venv.EnsurePipTest.test_with_pip triggers version ch

[issue24352] Provide a way for assertLogs to optionally not hide the logging output

2015-06-02 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ezio.melotti, michael.foord, rbcollins ___ Python tracker <http://bugs.python.org/issue24352> ___ ___ Python-bugs-list mailin

[issue24355] Provide a unittest api for controlling verbosity in tests

2015-06-02 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ezio.melotti, michael.foord, rbcollins ___ Python tracker <http://bugs.python.org/issue24355> ___ ___ Python-bugs-list mailin

[issue24382] Fail to build time module on Mac

2015-06-04 Thread Ned Deily
Ned Deily added the comment: Yes, try "make distclean". I am unable to reproduce the problem and don't see why your proposed patch would make a difference. -- resolution: -> works for me stage: -> resolved status: pending -> closed __

[issue10666] OS X installer variants have confusing readline differences

2015-06-05 Thread Ned Deily
Ned Deily added the comment: As of Python 3.3.0 and 2.7.9, the 32-bit-only OS X installers on python.org now have a minimum deployment target of 10.5, rather than 10.3. This means that all current OS X installers on python.org are now dynamically linked with the Apple-provided system

[issue24388] Python readline module crashes in history_get on FreeBSD with libedit

2015-06-05 Thread Ned Deily
Ned Deily added the comment: The change in spec in editline was to better match GNU readline behavior. Unfortunately, we depended on the old behavior. Technically, we don't support editline out-of-the-box other than on OS X; as Martin notes, generalizing that support is what Issue135

[issue13501] Make libedit support more generic; port readline / libedit to FreeBSD

2015-06-05 Thread Ned Deily
Ned Deily added the comment: See also suggested patch in Issue24388. -- nosy: +emaste stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issu

[issue13501] Make libedit support more generic; port readline / libedit to FreeBSD

2015-06-05 Thread Ned Deily
Ned Deily added the comment: The suggested change to generalize support for libedit to other platforms is a new feature so, by default, it would first appear in a new feature release, e.g. 3.6. There would probably have to be an exception granted to add it to 2.7.x or other 3.x releases

[issue24393] Test urllib2_localnet fails depending on host proxy configuration

2015-06-06 Thread Ned Deily
Changes by Ned Deily : -- nosy: +orsenthil stage: -> patch review versions: +Python 3.6 -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issu

[issue24402] input() uses sys.__stdout__ instead of sys.stdout for prompt

2015-06-07 Thread Ned Deily
Changes by Ned Deily : -- nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue24402> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24403] Missing fixer for changed round() behavior

2015-06-07 Thread Ned Deily
Changes by Ned Deily : -- nosy: +benjamin.peterson ___ Python tracker <http://bugs.python.org/issue24403> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24400] Awaitable ABC incompatible with functools.singledispatch

2015-06-07 Thread Ned Deily
Changes by Ned Deily : -- priority: normal -> release blocker stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue24400> ___ ___ Pyth

[issue24404] Python 2.7.0's BZ2File does not support with-statements

2015-06-07 Thread Ned Deily
Ned Deily added the comment: The misbehavior in Python 2.7 was due to a bug as documented in Issue9928, a bug that unfortunately was not discovered until just after 2.7 was initially released. The fix for Issue9928 was first included in 2.7.1 as you discovered. So the documentation has

[issue24414] MACOSX_DEPLOYMENT_TARGET set incorrectly by configure

2015-06-08 Thread Ned Deily
Changes by Ned Deily : -- assignee: -> ned.deily components: +Macintosh nosy: +ned.deily, ronaldoussoren type: compile error -> ___ Python tracker <http://bugs.python.org/i

[issue24413] Inconsistent behavior between set and dict_keys/dict_items: for non-iterable object x, set().__or__(x) raises NotImplementedError, but {}.keys().__or__(x) raises TypeError

2015-06-08 Thread Ned Deily
Changes by Ned Deily : -- nosy: +rhettinger ___ Python tracker <http://bugs.python.org/issue24413> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24418] "make install" will not install pip if already present in user site-packages

2015-06-09 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ned.deily stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue24418> ___ ___ Python-bugs-list mai

[issue24408] tkinter.font.Font.measure() broken in 3.5

2015-06-10 Thread Ned Deily
Ned Deily added the comment: Test fails on OS X (10.10) with Cocoa Tk 8.6(.4) and 8.5(.18): == FAIL: test_families (test_tkinter.test_font.FontTest

[issue24423] Fix wrong indentation in Doc/whatsnew/3.5.rst

2015-06-10 Thread Ned Deily
Ned Deily added the comment: Thanks for the report! -- nosy: +ned.deily resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue24432] Upgrade windows builds to use OpenSSL 1.0.2b

2015-06-11 Thread Ned Deily
Ned Deily added the comment: Marking as release blocker for 3.5.0 -- nosy: +benjamin.peterson, larry, ned.deily priority: normal -> release blocker stage: -> needs patch versions: +Python 2.7, Python 3.4, Python 3.5, Python 3.6 ___ Python t

[issue24432] Upgrade windows builds to use OpenSSL 1.0.2b

2015-06-12 Thread Ned Deily
Ned Deily added the comment: Make that OpenSSL 1.0.2c now. -- ___ Python tracker <http://bugs.python.org/issue24432> ___ ___ Python-bugs-list mailing list Unsub

[issue24446] imap and map inconsistent behaviour

2015-06-13 Thread Ned Deily
Ned Deily added the comment: This is a documented behavior difference in itertools.imap: "If function is set to None, then imap() returns the arguments as a tuple. Like map() but stops when the shortest iterable is exhausted instead of filling in None for shorter iterables. The reason fo

[issue24446] imap and map inconsistent behaviour

2015-06-13 Thread Ned Deily
Ned Deily added the comment: Also note that the behavior of map() in Python 3 has been changed to also stop with the termination of the shortest iterator. https://docs.python.org/3.4/whatsnew/3.0.html#views-and-iterators-instead-of-lists

[issue24452] Make webbrowser support Chrome on Mac OS X

2015-06-14 Thread Ned Deily
Changes by Ned Deily : -- components: +Macintosh nosy: +ned.deily, ronaldoussoren stage: -> patch review title: Make webbrowser support Chrome on Mac OS/X -> Make webbrowser support Chrome on Mac OS X versions: +Python 2.7, Python 3.5, Pyth

[issue24451] Add metrics to future objects (concurrent or asyncio?)

2015-06-14 Thread Ned Deily
Changes by Ned Deily : -- nosy: +bquinlan, giampaolo.rodola, gvanrossum, haypo, pitrou, yselivanov ___ Python tracker <http://bugs.python.org/issue24451> ___ ___

[issue23255] SimpleHTTPRequestHandler refactor for more extensible usage.

2015-06-17 Thread Ned Deily
Ned Deily added the comment: Ent, thanks for all your work on this, and thanks to Demian and Martin for their reviews. In the meantime, the Python 3.5 release cycle has reached feature code cutoff so, at this point, generally only bug fixes are being accepted into 3.5, which means this

[issue24467] bytearray pop and remove Buffer Over-read

2015-06-19 Thread Ned Deily
Changes by Ned Deily : -- nosy: +benjamin.peterson ___ Python tracker <http://bugs.python.org/issue24467> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24475] The docs never define what a pool "task" is

2015-06-19 Thread Ned Deily
Changes by Ned Deily : -- nosy: +davin, sbt versions: -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue24475> ___ ___ Python-bugs-list m

[issue24479] Support LMMS project files in mimetypes.guess_type

2015-06-20 Thread Ned Deily
Changes by Ned Deily : -- keywords: +easy stage: -> needs patch versions: +Python 3.6 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue24479> ___ _

[issue24481] hotshot pack_string Heap Buffer Overflow

2015-06-20 Thread Ned Deily
Changes by Ned Deily : -- nosy: +benjamin.peterson stage: -> needs patch title: hotspot pack_string Heap Buffer Overflow -> hotshot pack_string Heap Buffer Overflow ___ Python tracker <http://bugs.python.org/i

[issue24464] Got warning when compiling sqlite3 module on Mac OS X

2015-06-21 Thread Ned Deily
Ned Deily added the comment: I agree with Ronald that the proposed patch should not be applied as is. For example, the Pythons installed by the current python.org OS X installers build and link with a newer version of libsqlite3. This is one of several examples of third-party libraries for

[issue24408] tkinter.font.Font.measure() broken in 3.5

2015-06-21 Thread Ned Deily
Ned Deily added the comment: Thanks for the fix, Martin and Serhiy. With Tk 8.4 on OS X, at least, it is possible to have non-ascii font names. I extended the 2.7 test to account for that. -- versions: +Python 2.7 ___ Python tracker <h

[issue24484] multiprocessing cleanup occasionally throws exception

2015-06-21 Thread Ned Deily
Changes by Ned Deily : -- nosy: +davin, sbt ___ Python tracker <http://bugs.python.org/issue24484> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24484] multiprocessing cleanup occasionally throws exception

2015-06-23 Thread Ned Deily
Ned Deily added the comment: Can you show the version info from the Python 3.4 where you see the failures? /usr/local/bin/python3.4 -c 'import sys;print(sys.version)' -- nosy: +ned.deily ___ Python tracker <http://bugs.python.o

[issue24484] multiprocessing cleanup occasionally throws exception

2015-06-23 Thread Ned Deily
Ned Deily added the comment: Exactly how are you building the Python 3.4 that does not fail for you? FWIW, I am able to reproduce the failure easily on a 10.10.3 system using python.org 64-bit/32-bit 3.4.3, using a current MacPorts source-built 3.4.3 (which is built with clang), and

[issue24490] DeprecationWarning hidden even after warnings.filterwarnings('always') called

2015-06-23 Thread Ned Deily
Ned Deily added the comment: The problem you describe was covered by Issue4180 and fixed in Python 3.4.2. From the discussion there, you can see that it was decided to not change the behavior of Python 2.7. -- nosy: +ned.deily resolution: -> duplicate stage: -> resolved

[issue2406] Improvement suggestions for the gzip module documentation

2015-06-23 Thread Ned Deily
Ned Deily added the comment: Jakub, thanks for your suggested changes. But this issue was closed and the documentation updated many years ago. Please open a new issue with your suggested changes, otherwise they will likely be forgotten and ignored. -- nosy: +ned.deily

[issue24484] multiprocessing cleanup occasionally throws exception

2015-06-23 Thread Ned Deily
Ned Deily added the comment: FWIW, building 3.4.3 from source as you described results in failures about 30% of the time. With some of the earlier tests, it failed even more frequently. This is running on a 2.2GHz I7. -- ___ Python tracker <h

[issue24491] inspect.getsource can't get source code if provided function isn't from a file

2015-06-23 Thread Ned Deily
Ned Deily added the comment: Issue12920 is currently open with a suggestion to change the documentation for inspect.getsource. -- nosy: +ned.deily resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Document that inspect.getsource only works

[issue12920] Document that inspect.getsource only works for objects loaded from files, not interactive session

2015-06-23 Thread Ned Deily
Ned Deily added the comment: In duplicate Issue24491, zorceta notes: "Both python.exe and IDLE can't. IPython is able to, as it inserts REPL input into linecache." -- nosy: +ned.deily, zorceta versions: +Python 3.5, Python 3.6 -Python

[issue24502] OS X 2.7 package has zeros for version numbers in sub-packages

2015-06-24 Thread Ned Deily
Ned Deily added the comment: I assume you are talking about current Python 2.7 .pkg installers, like for 2.7.10. If so, we can probably fix that, but I'm curious as to what problems this causes. -- assignee: -> ned.deily ___ Python tracke

[issue24497] test_decimal.py contains a dead link

2015-06-24 Thread Ned Deily
Ned Deily added the comment: Thanks for noticing! -- nosy: +ned.deily resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue24512] multiprocessing should log a warning when forking multithreaded process

2015-06-27 Thread Ned Deily
Changes by Ned Deily : -- nosy: +davin, sbt versions: +Python 3.5, Python 3.6 -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue24

[issue24534] disable executing code in .pth files

2015-06-29 Thread Ned Deily
Changes by Ned Deily : -- nosy: +brett.cannon, eric.snow, ncoghlan ___ Python tracker <http://bugs.python.org/issue24534> ___ ___ Python-bugs-list mailin

[issue24535] SELinux reporting writes, executes, and dac_overwrites

2015-06-29 Thread Ned Deily
Ned Deily added the comment: This is not a Python problem; note in particular the blueman references in the messages. A quick web searching suggests there is a conflict between blueman and SELinux security policies that need to be resolved; see, for example, https://bugzilla.redhat.com

[issue24537] Py_Initialize unable to load the file system codec

2015-07-01 Thread Ned Deily
Changes by Ned Deily : -- components: +Windows -Extension Modules nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issue24

[issue24540] Documentation about skipkeys parameter for json.dumps is incorrect

2015-07-01 Thread Ned Deily
Ned Deily added the comment: Can you say where you are seeing this? The current 2.7 documentation for json reads: "If skipkeys is True (default: False), then dict keys that are not of a basic type (str, unicode, int, long, float, bool, None) will be skipped instead of raising a Type

[issue24548] Broken link in the unittest documentation

2015-07-01 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ezio.melotti, michael.foord, rbcollins stage: -> needs patch type: enhancement -> versions: +Python 2.7, Python 3.4, Python 3.6 ___ Python tracker <http://bugs.python.org/i

[issue24502] OS X 2.7 package has zeros for version numbers in sub-packages

2015-07-04 Thread Ned Deily
Ned Deily added the comment: Right, that would be a good reason! I seem to recall that, when I initially tested flat-package building and installation, there were problems with pkgs not getting properly installed when version was set, possibly due to confusion between installs and upgrades

[issue24502] OS X installer provides flat sub-packages with no version numbers

2015-07-04 Thread Ned Deily
Changes by Ned Deily : -- components: -Installation title: OS X 2.7 package has zeros for version numbers in sub-packages -> OS X installer provides flat sub-packages with no version numbers ___ Python tracker <http://bugs.python.org/issu

[issue23969] please set a SOABI for MacOSX

2015-07-04 Thread Ned Deily
Ned Deily added the comment: I think we can close this as finished. The only remaining item I can think of is to add something to the 3.5 What's New document but that should be done as part of Issue22980 for all affected platforms. -- status: open ->

[issue22980] C extension naming doesn't take bitness into account

2015-07-04 Thread Ned Deily
Ned Deily added the comment: I think we should add something to the 3.5 "What's New" document about these changes and which platforms are affected. Otherwise is there anything left to do before closing? -- priority: normal ->

[issue24330] Idle doc: explain "Configure Idle" not in "Options" on OSX, etc.

2015-07-04 Thread Ned Deily
Ned Deily added the comment: Thanks for your patch, André! I changed the wording a bit to make it even clearer. Applied to 2.7 (for 2.7.11), 3.4 (3.4.4), and 3.5.0 -- resolution: -> fixed stage: needs patch -> resolved status: open -&g

[issue24540] Docstring for json.dumps skipkeys parameter is incorrect

2015-07-05 Thread Ned Deily
Ned Deily added the comment: Thanks, I overlooked the docstring. Now fixed. -- resolution: -> fixed stage: -> resolved status: open -> closed title: Documentation about skipkeys parameter for json.dumps is incorrect -> Docstring for json.dumps skipkeys parameter

[issue24570] IDLE Autocomplete and Call Tips Do Not Pop Up on OS X with ActiveTcl 8.5.18

2015-07-05 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. Taking a quick look at it, it appears that the problem was introduced with the most recently releases of ActiveTcl on OS X, 8.5.18 and 8.6.4. The autocomplete popups seem to work fine with the previous OS X release of ActiveTcl 8.5 (8.5.17

[issue24570] IDLE Autocomplete and Call Tips Do Not Pop Up on OS X with ActiveTcl 8.5.18

2015-07-06 Thread Ned Deily
Ned Deily added the comment: Kevin, I think that Autocomplete is implemented as an IDLE extension in: Lib/idlelib/AutoComplete.py Lib/idlelib/AutoCompleteWindow.py and configured in: Lib/idlelib/config-extensions.def -> force-open-completions= Perhaps someone could try to reduce it to smal

[issue24573] Using multiprocessing with tkinter frames in Python 3.4.3 crashes in OS X

2015-07-06 Thread Ned Deily
Ned Deily added the comment: A web search will find multiple hits for problems with using Tk (and Tkinter) with multiprocess on OS X and elsewhere. On OS X, there is a well-known and documented restriction that impacts Tk-based apps: "When launching separate processes using the fork fun

[issue24576] python27 unicode align comments

2015-07-06 Thread Ned Deily
Ned Deily added the comment: Thanks for the patch. However, in general, we don't like to change the source files in Python just to improve white-space formatting, in particular with older releases like Python 2.7. If the formatting changes are being done as part of a larger change i

[issue24603] Update OpenSSL to 1.0.2d in Windows and OS X installer

2015-07-10 Thread Ned Deily
Ned Deily added the comment: The Windows installer and the 32-bit-only OS X installer both have local copies of OpenSSL. At the moment, only the 3.5.0 betas have been released with 1.0.2. Setting to release blocker priority for 3.5.0b4. -- nosy: +benjamin.peterson, larry, ned.deily

[issue24606] segfault caused by nested calls to map()

2015-07-10 Thread Ned Deily
Ned Deily added the comment: Process 51270 launched: './python' (x86_64) Process 51270 stopped * thread #1: tid = 0x5c8677, 0x0001000c1af8 python`_PyObject_Alloc(use_calloc=0, ctx=, nelem=, elsize=) + 24 at obmalloc.c:1170, queue = 'com.apple.main-thread', stop rea

[issue24606] segfault caused by nested calls to map()

2015-07-10 Thread Ned Deily
Changes by Ned Deily : -- nosy: -ned.deily ___ Python tracker <http://bugs.python.org/issue24606> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14373] C implementation of functools.lru_cache

2015-07-10 Thread Ned Deily
Ned Deily added the comment: I've also seen a crash in lru_cache_tp_traverse but with the 3.5.0b3 release build for the OS X 64-bit/32-bit installer. I just stumbled across the segfault by bringing up the interactive interpreter and typing "import ssl". After a lot of pl

[issue24627] Import bsddb result in error on OS X (Python 2.7.10)

2015-07-12 Thread Ned Deily
Ned Deily added the comment: You are using a third-party build of Python from the homebrew package manager. You probably need to install additional brew packages to provide bsddb support so you should ask somewhere else for help with that, perhaps stackoverflow.com. -- resolution

[issue24587] Tkinter stacking versus focus behavior on Windows

2015-07-13 Thread Ned Deily
Ned Deily added the comment: As far as I can tell the sample program works as expected on OS X with either Cocoa Tk or X11 Tk, in both cases (as long as the event is changed to Button-1). I agree it's most likely a platform difference or platform bug in Tk behavior, rather than a P

[issue14373] C implementation of functools.lru_cache

2015-07-14 Thread Ned Deily
Ned Deily added the comment: Serhiy, I'll try making a 3.5.0b3+patch installer build in the same manner as the 3.5.0b3 installer build. But I may not get to it for several days. -- ___ Python tracker <http://bugs.python.org/is

[issue24633] Not a directory: '//anaconda/lib/python2.7/site-packages/readme/__about__.py'

2015-07-14 Thread Ned Deily
Ned Deily added the comment: I agree with IIan's comments you cited in https://groups.google.com/a/continuum.io/forum/#!topic/anaconda/AGHXzB1sN0I. Python has been installing the README file in site-packages for a very long time and there have been case-insensitive file systems for a

[issue24633] Not a directory: '//anaconda/lib/python2.7/site-packages/readme/__about__.py'

2015-07-14 Thread Ned Deily
Ned Deily added the comment: I'm +0 on the name change but, again, it wouldn't solve the conflict problem for potential users of the readme package until 3.6. -- ___ Python tracker <http://bugs.python.o

[issue24633] Not a directory: '//anaconda/lib/python2.7/site-packages/readme/__about__.py'

2015-07-14 Thread Ned Deily
Ned Deily added the comment: (And such a change would only be appropriate in a feature release, as it would complicate things for existing release installers and downstream distributions, etc.) -- stage: -> patch review versions: -Python 3.4, Python

[issue24646] Python accepts SSL certificate that should be rejected on OSX

2015-07-17 Thread Ned Deily
Ned Deily added the comment: And the tradeoff for supplying private copies of newer OpenSSL libs with the Pythons installed by python.org OS X installers is that we would then need to solve the CA management problem for all users of those Pythons. So far there hasn't been a good soluti

[issue24646] Python accepts SSL certificate that should be rejected on OSX

2015-07-17 Thread Ned Deily
Ned Deily added the comment: > For what it's worth, the El Capitan Beta's apparently don't ship with > OpenSSL headers anymore though they do still ship with the dylibs. Hmm, I had tested installing existing python.org binary releases with the first DPs of 10.11 and I *

[issue24603] Update OpenSSL to 1.0.2d in Windows and OS X installer

2015-07-24 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue24603> ___

[issue12978] Figure out extended attributes on BSDs

2015-07-24 Thread Ned Deily
Ned Deily added the comment: There certainly is interest in supporting extended attributes on additional platforms. Thanks for the patch, William, and the positive comments, Billy. Since this probably falls into the category of new feature, it should be targeted for 3.6, now that 3.5 is in

[issue14373] C implementation of functools.lru_cache

2015-07-24 Thread Ned Deily
Ned Deily added the comment: Sorry about the delay in testing the patch. I just confirmed (1) that I am still able to produce a segfault on OS X as described above under the specific conditions with a 10.6-like installer built with the current 3.5 tip and (2) that, with clru_cache_new.patch

[issue24646] Python accepts SSL certificate that should be rejected on OSX

2015-07-24 Thread Ned Deily
Ned Deily added the comment: Ronald, FWIW, your test program seems to work without crashing on both 10.6 and 10.8; not surprisingly, it failed to compile on 10.5 (no 'errSecSuccess'). -- ___ Python tracker <http://bugs.python.o

[issue24647] Document argparse.REMAINDER as being equal to "..."

2015-07-24 Thread Ned Deily
Changes by Ned Deily : -- assignee: -> docs@python components: +Documentation -Library (Lib) nosy: +bethard, docs@python versions: +Python 2.7, Python 3.6 ___ Python tracker <http://bugs.python.org/issu

[issue24712] Docs page's sidebar vibrates on mouse wheel scroll on Chrome.

2015-07-25 Thread Ned Deily
Changes by Ned Deily : -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue24712> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24717] python logging handler not used when added after a process is started

2015-07-25 Thread Ned Deily
Changes by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker <http://bugs.python.org/issue24717> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24725] test_socket testFDPassEmpty fails on OS X 10.11 DP with "Cannot allocate memory"

2015-07-26 Thread Ned Deily
New submission from Ned Deily: == ERROR: testFDPassEmpty (test.test_socket.RecvmsgSCMRightsStreamTest) -- Traceback (most recent call last): File "/Li

<    59   60   61   62   63   64   65   66   67   68   >