[issue21069] test_fileno of test_urllibnet intermittently fails when using www.example.com

2014-04-15 Thread Ned Deily
Ned Deily added the comment: Senthil, thanks for looking into this. Since it is turning out to be more of a urllib design issue, I'm going to deassign myself from it. -- assignee: ned.deily -> ___ Python tracker <http://bugs.python.org

[issue21015] support SSL_CTX_set_ecdh_auto on newer OpenSSLs

2014-04-16 Thread Ned Deily
Ned Deily added the comment: That does indeed make the test now pass on OS X 10.9: test_default_ecdh_curve (test.test_ssl.ThreadedTests) ... server: new connection from ('127.0.0.1', 60758) server: connection cipher is now ('AECDH-AES256-SHA', 'TLSv1/SSLv3', 2

[issue21250] sqlite3 doesn't have unit tests for 'insert or [algorithm]' functionality.

2014-04-16 Thread Ned Deily
Ned Deily added the comment: Are you interested in submitting a patch? -- nosy: +ghaering, ned.deily stage: -> needs patch versions: -Python 3.1, Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issu

[issue21260] python malloc mach_vm_map failed

2014-04-16 Thread Ned Deily
Ned Deily added the comment: See Issue5614. That's normal when running the test suite on 64-bit versions on OS X. Unfortunately, we haven't found a way to suppress the messages. -- nosy: +ned.deily resolution: -> duplicate stage: -> committed/rejected status

[issue21263] test_gdb failures on os x 10.9.2

2014-04-16 Thread Ned Deily
Ned Deily added the comment: Since Apple no longer ships gdb or GNU gcc as part of Xcode and since lldb is the native debugger for clang/LLVM, this test is usually skipped on OS X these days unless you go to the trouble of explicitly installing gdb. Does anyone know if python support works

[issue21263] test_gdb failures on os x 10.9.2

2014-04-16 Thread Ned Deily
Changes by Ned Deily : -- components: -Macintosh ___ Python tracker <http://bugs.python.org/issue21263> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21265] ConfigParser allows "get(*, raw=True), but no corresponding "set(*, raw=True)"

2014-04-16 Thread Ned Deily
Changes by Ned Deily : -- nosy: +lukasz.langa ___ Python tracker <http://bugs.python.org/issue21265> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5150] IDLE to support reindent.py

2014-04-17 Thread Ned Deily
Ned Deily added the comment: The code needs to be updated for Python 3 and it needs a test. I'm deassigning it in the hopes that someone will feel free to pick it up. -- assignee: ned.deily -> stage: commit review -> patch review versions: +Python 3.5

[issue21286] Refcounting information missing in docs for Python 3.4 and above.

2014-04-17 Thread Ned Deily
Changes by Ned Deily : -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue21286> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21287] Better support for AF_PACKET on opensolaris (illumos)

2014-04-17 Thread Ned Deily
Changes by Ned Deily : -- nosy: +jcea ___ Python tracker <http://bugs.python.org/issue21287> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue21294] len wrong help

2014-04-17 Thread Ned Deily
Changes by Ned Deily : -- nosy: +larry stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue21294> ___ ___ Python-bugs-list mailing list Un

[issue21311] Fix compiler detection when brew's ccache is installed on Mac OS X

2014-04-19 Thread Ned Deily
Changes by Ned Deily : -- assignee: -> ned.deily nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue21311> ___ ___ Python-bugs-list mai

[issue21311] Fix compiler detection when brew's ccache is installed on Mac OS X

2014-04-19 Thread Ned Deily
Ned Deily added the comment: Thanks for the report and the patches. I am not sure exactly what problem using ccache is causing but it is clear that, if for whatever reason the call to _read_output fails and returns None, the 'llvm-gcc' test will fail so that test should be fixed as

[issue21121] -Werror=declaration-after-statement is added even for extension modules through setup.py

2014-04-19 Thread Ned Deily
Ned Deily added the comment: Stefan, the patch LGTM although I sure wish we were removing some CFLAGS-related configuration variables rather than adding another. But I don't have a better suggestion short of a comprehensive cleanup of all of them. -- stage: -> commit review

[issue11571] Turtle window pops under the terminal on OSX

2014-04-19 Thread Ned Deily
Changes by Ned Deily : -- versions: +Python 3.4, Python 3.5 -Python 2.7, Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue11571> ___ ___

[issue11571] Turtle window pops under the terminal on OSX

2014-04-19 Thread Ned Deily
Ned Deily added the comment: The fix for turtle has been applied for release in 3.4.1 and 3.5.0. -- resolution: wont fix -> fixed stage: commit review -> resolved ___ Python tracker <http://bugs.python.org/i

[issue10291] Clean-up turtledemo in-package documentation

2014-04-19 Thread Ned Deily
Ned Deily added the comment: Thanks for the refresh, Jessica. I decided to separate out the turtle window raise for OS X and apply that for 3.4.1 and 3.5.0 in Issue11571. The remainder of the patch to use the docstrings, plus removal of the two other obsolete text files, is spplied here for

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-21 Thread Ned Deily
Ned Deily added the comment: FWIW, ActiveState is shipping 8.5.15 and 8.6.1 in ActiveTcl. For the OS X installers, we have been using 8.5.x (for the 64-bit/32-bit installer) because that's also what Apple has been shipping in recent OS X versions. Serhiy has committed a number of fixes

[issue20147] multiprocessing.Queue.get() raises queue.Empty exception if even if an item is available

2014-04-22 Thread Ned Deily
Changes by Ned Deily : -- nosy: +sbt ___ Python tracker <http://bugs.python.org/issue20147> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue21329] configparser can't parse MySQL style config

2014-04-22 Thread Ned Deily
Changes by Ned Deily : -- nosy: +lukasz.langa ___ Python tracker <http://bugs.python.org/issue21329> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21342] multiprocessing RLock and Lock raise incorrect exceptions when releasing an unlocked lock.

2014-04-24 Thread Ned Deily
Changes by Ned Deily : -- nosy: +sbt ___ Python tracker <http://bugs.python.org/issue21342> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue21345] multiprocessing.Pool._handle_workers sleeps too long

2014-04-24 Thread Ned Deily
Changes by Ned Deily : -- nosy: +sbt ___ Python tracker <http://bugs.python.org/issue21345> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue21359] IDLE Redo command accelerator acts as Undo with current OS X Cocoa Tk 8.5.15

2014-04-26 Thread Ned Deily
New submission from Ned Deily: With the current Cocoa Tk 8.5 (ActiveState 8.5.15), it appears that the IDLE Redo accelerator, Cmd-Shift-Z, has the same effect as the Undo accelerator, Cmd-Z. This is probably related to the behavior and changes in Cocoa Tk noted in Issue11055. With the older

[issue21359] IDLE Redo command accelerator acts as Undo with current OS X Cocoa Tk 8.5.15

2014-04-26 Thread Ned Deily
Ned Deily added the comment: Instigated by http://stackoverflow.com/questions/23316425/idle-redo-shortcut-vanished/ -- ___ Python tracker <http://bugs.python.org/issue21

[issue5001] Remove assertion-based checking in multiprocessing

2014-04-27 Thread Ned Deily
Changes by Ned Deily : -- nosy: +sbt versions: +Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue5001> ___ ___ Pytho

[issue21369] Extended modes for tarfile.TarFile()

2014-04-27 Thread Ned Deily
Changes by Ned Deily : -- nosy: +lars.gustaebel ___ Python tracker <http://bugs.python.org/issue21369> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21372] multiprocessing.util.register_after_fork inconsistency

2014-04-28 Thread Ned Deily
Changes by Ned Deily : -- nosy: +sbt ___ Python tracker <http://bugs.python.org/issue21372> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue17861] put opcode information in one place

2014-04-28 Thread Ned Deily
Ned Deily added the comment: Thanks, David. Ideally, the generator script shouldn't run during an installer build since presumably the generated file should be up-to-date in the repo. "make touch" could handle that but the installer build does use a separate build/objec

[issue21378] ImportError: No module named 'concurrent.futures'

2014-04-28 Thread Ned Deily
Ned Deily added the comment: FWIW, works for me using the python.org 3.4 64-bin installer. What is the output of: python3 -c 'import sys;print(sys.version)' As Claudiu suggests, check for a concurrent.py shadowing the standard library version. Also, why are you setting PYT

[issue21381] python build crash on Mavericht

2014-04-28 Thread Ned Deily
Ned Deily added the comment: In general, we don't test or claim to support building for a deployment target lower than the system being built on. It's always safer to build on the same version as the deployment target. I'll take a look at it, though. -- n

[issue21381] Python 3.4+ interpreter built on/with OS X 10.7 deployment target segfaults on 10.8+

2014-04-29 Thread Ned Deily
Ned Deily added the comment: Yes, it should be possible to build all Pythons for all recent OS X deployment targets but, normally, the safest way is to build a specific deployment target on the same OS X version; that should avoid any possibility of inadvertently linking with new features not

[issue21383] "make touch" fails when the build directory is not the source directory

2014-04-29 Thread Ned Deily
New submission from Ned Deily: make touch hg --config extensions.touch=Tools/hg/hgtouch.py touch -v *** failed to import extension touch from Tools/hg/hgtouch.py: [Errno 2] No such file or directory: 'Tools/hg/hgtouch.py' hg: unknown command 'touch' -- compon

[issue21383] "make touch" fails when the build directory is not the source directory

2014-04-29 Thread Ned Deily
Changes by Ned Deily : -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file35089/issue21383_make_touch.patch ___ Python tracker <http://bugs.python.org/issu

[issue17861] put opcode information in one place

2014-04-29 Thread Ned Deily
Ned Deily added the comment: Martin, it could if "make touch" worked when building outside of the source directory (Issue21383). -- ___ Python tracker <http://bugs.python.o

[issue21380] timezone support in strftime methods broken

2014-04-30 Thread Ned Deily
Ned Deily added the comment: As Jayanth points out, datetime objects are deliberately time zone "naive" by default; please read https://docs.python.org/2/library/datetime.html and https://docs.python.org/2/library/datetime.html#tzinfo-objects for more information. Also

[issue21396] Python io implementation doesn't flush with write_through=True unlike C implementation

2014-04-30 Thread Ned Deily
Changes by Ned Deily : -- nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue21396> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21332] subprocess bufsize=1 docs are misleading

2014-04-30 Thread Ned Deily
Changes by Ned Deily : -- nosy: +gregory.p.smith ___ Python tracker <http://bugs.python.org/issue21332> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21413] urllib.request.urlopen dies on non-basic/digest auth schemes

2014-05-02 Thread Ned Deily
Changes by Ned Deily : -- nosy: +orsenthil versions: -Python 3.1, Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue21413> ___ ___ Python-bug

[issue21121] -Werror=declaration-after-statement is added even for extension modules through setup.py

2014-05-03 Thread Ned Deily
Ned Deily added the comment: I agree: issue21121-3.diff is a much better approach. -- ___ Python tracker <http://bugs.python.org/issue21121> ___ ___ Python-bug

[issue18604] Consolidate gui available checks in test.support

2014-05-03 Thread Ned Deily
Ned Deily added the comment: For some reason, the newly-added Tk instantiation check causes the OS X Cocoa Tk to segfault when tests are run under regrtest -jn option, which causes each test to be run under a separate subprocess called from a separate thread. Somewhat surprisingly, the

[issue21121] -Werror=declaration-after-statement is added even for extension modules through setup.py

2014-05-04 Thread Ned Deily
Ned Deily added the comment: There's no immediate rush now. It's too late for 3.4.1rc1. -- ___ Python tracker <http://bugs.python.org/issue21121> ___ ___

[issue21431] 3.4.1rc1 test_pydoc fails: pydoc_data.topics.topics values are type "bytes" not "str"

2014-05-04 Thread Ned Deily
New submission from Ned Deily: Something went wrong with the update of pydoc_data topics for 3.4.1rc1. As can be seen in http://hg.python.org/releasing/3.4.1/rev/c67a19e11a71, the values for the topics dict should be strings but were updated as bytes. This causes pydoc topics searches to

[issue21431] 3.4.1rc1 test_pydoc fails: pydoc_data.topics.topics values are type "bytes" not "str"

2014-05-04 Thread Ned Deily
Ned Deily added the comment: >From a first quick look, it appears that the problem occurs when using a >Python 3 version of sphinx-build. With Python 2, the topics appear to be >generated correctly. -- ___ Python tracker <http://bug

[issue21121] -Werror=declaration-after-statement is added even for extension modules through setup.py

2014-05-04 Thread Ned Deily
Ned Deily added the comment: Is there any reason to expose CFLAGS_NODIST externally? It seems to me that it is only needed in the top-level setup.py for building standard library extension modules. Let's not add yet another configuration variable to the already confusing array we prese

[issue21429] Input.output error with multiprocessing

2014-05-04 Thread Ned Deily
Changes by Ned Deily : -- nosy: +sbt ___ Python tracker <http://bugs.python.org/issue21429> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue21427] installer not working

2014-05-04 Thread Ned Deily
Ned Deily added the comment: Did you try using the 32-bit (x86) installer from https://www.python.org/downloads/release/python-340/ ? Unfortunately, I believe the default download button currently only downloads the 64-bit version. -- nosy: +ned.deily

[issue21430] Document ssl.pending()

2014-05-04 Thread Ned Deily
Changes by Ned Deily : -- nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue21430> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21430] Document ssl.pending()

2014-05-04 Thread Ned Deily
Changes by Ned Deily : -- nosy: +christian.heimes ___ Python tracker <http://bugs.python.org/issue21430> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21431] 3.4.1rc1 test_pydoc fails: pydoc_data.topics.topics values are type "bytes" not "str"

2014-05-04 Thread Ned Deily
Ned Deily added the comment: The problem is in PydocTopicsBuilder in Doc/tools/sphinxext/pyspecific.py. It needs to be smarter so that ideally it should continue to work with any Python >= 2.5 and independent of the Python being built. -- assignee: larry -> georg.brand

[issue21427] installer not working

2014-05-04 Thread Ned Deily
Ned Deily added the comment: There are two different names: the 64-bit installer is python-3.4.0.amd64.msi. But I see now that the error refers to py.exe, which I believe is the Python launcher. I've nosyed the Windows experts. -- nosy: +tim.golden, zach

[issue9850] obsolete macpath module dangerously broken and should be removed

2014-05-04 Thread Ned Deily
Ned Deily added the comment: The patch appears fine but it really doesn't have anything to do with the gist of this issue. The problem remains that much of macpath is fundamentally broken. In the intervening years since the issue was opened, I contend that any need for OS 9 style paths

[issue21433] "False = True" produces segfault

2014-05-04 Thread Ned Deily
Ned Deily added the comment: See Issue18458. Update to the latest Python 3.3.5 or 3.4.x. -- nosy: +ned.deily resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> interactive interpreter crashes and test_readline fails on OS X 10.9 Mave

[issue21432] samba.git from git://git.samba.org/samba.git samba.netcmd.main not found

2014-05-04 Thread Ned Deily
Changes by Ned Deily : -- stage: -> resolved ___ Python tracker <http://bugs.python.org/issue21432> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue21432] samba.git from git://git.samba.org/samba.git samba.netcmd.main not found

2014-05-04 Thread Ned Deily
Ned Deily added the comment: Sorry, this is a tracker for bugs in Python, not a help forum. Suggest you ask your question on a user forum, like Python list (https://mail.python.org/mailman/listinfo/python-list) or a samba group or perhaps http://superuser.com. -- nosy: +ned.deily

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

2014-05-06 Thread Ned Deily
Changes by Ned Deily : -- nosy: +bquinlan ___ Python tracker <http://bugs.python.org/issue21423> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21121] -Werror=declaration-after-statement is added even for extension modules through setup.py

2014-05-06 Thread Ned Deily
Ned Deily added the comment: I don't have a *really* strong opinion against it. It's just that I find the current plethora of configuration flags to be non-intuitive and confusing (and there are plenty of open issues agreeing with that sentiment) and adding another wit

[issue21447] Intermittent asyncio.open_connection / futures.InvalidStateError

2014-05-06 Thread Ned Deily
Changes by Ned Deily : -- nosy: +giampaolo.rodola, gvanrossum, haypo, pitrou, yselivanov ___ Python tracker <http://bugs.python.org/issue21447> ___ ___ Python-bug

[issue21443] asyncio logging documentation clarifications

2014-05-06 Thread Ned Deily
Changes by Ned Deily : -- stage: -> needs patch title: asyncoio logging documentation clarifications. -> asyncio logging documentation clarifications ___ Python tracker <http://bugs.python.org/i

[issue17752] many distutils tests fail when run from the installed location

2014-05-06 Thread Ned Deily
Ned Deily added the comment: The quotes that you removed around the DYLD_FRAMEWORK_PATH step are not needed, at least until the rest of configure.ac and Makefile.pre.in support paths with spaces et al. However, you missed removing the single quotes around the DYLD_LIBRARY_PATH step here

[issue7776] http.client.HTTPConnection tunneling is broken

2014-05-11 Thread Ned Deily
Ned Deily added the comment: Should this be a release blocker regression for 3.4.1? -- nosy: +larry, ned.deily priority: normal -> release blocker ___ Python tracker <http://bugs.python.org/iss

[issue21383] "make touch" fails when the build directory is not the source directory

2014-05-11 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue21478] mock calls don't propagate to parent (autospec)

2014-05-12 Thread Ned Deily
Changes by Ned Deily : -- nosy: +michael.foord ___ Python tracker <http://bugs.python.org/issue21478> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21495] Sane default for logging config

2014-05-13 Thread Ned Deily
Changes by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker <http://bugs.python.org/issue21495> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21496] pyvenv activate_this.py

2014-05-13 Thread Ned Deily
Changes by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker <http://bugs.python.org/issue21496> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4999] multiprocessing.Queue does not order objects

2014-05-13 Thread Ned Deily
Changes by Ned Deily : -- nosy: +sbt ___ Python tracker <http://bugs.python.org/issue4999> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue21112] 3.4 regression: unittest.expectedFailure no longer works on TestCase subclasses

2014-05-13 Thread Ned Deily
Ned Deily added the comment: Berker, if you think it should go into 3.4.1, you need to set the priority to "release blocker" to bring it to the attention of the release manager. -- nosy: +ned.deily ___ Python tracker <http://bu

[issue21502] freeze.py not working properly with OS X framework builds

2014-05-13 Thread Ned Deily
Changes by Ned Deily : -- assignee: ronaldoussoren -> ned.deily nosy: +ned.deily stage: -> needs patch title: freeze.py not working properly on Mac OSX 10.9 -> freeze.py not working properly with OS X framework builds type: compile error ->

[issue21112] 3.4 regression: unittest.expectedFailure no longer works on TestCase subclasses

2014-05-16 Thread Ned Deily
Changes by Ned Deily : -- nosy: +larry ___ Python tracker <http://bugs.python.org/issue21112> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue21517] installer Python default setting fails with mac Python Launcher

2014-05-16 Thread Ned Deily
Ned Deily added the comment: Python.org installers do not install anything to /usr/bin; they do, by default, install symbolic links in /usr/local/bin. Python 3 installers set the symlink "/usr/local/bin/python3" to the most recently installed version. The Python Launcher app h

[issue21521] Tkinter + OSX + Spaces : Multiple file dialogues created

2014-05-18 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue21521> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21520] Erroneous zipfile test failure if the string 'bad' appears in pwd

2014-05-18 Thread Ned Deily
Ned Deily added the comment: Testing for "Lib/test/bad" isn't correct either since the test will fail when the tests are run from an installed Python rather than just from a build directory. -- nosy: +ned.deily ___ Python

[issue21535] test_license_exists_at_url fails with 3.4.1, wrong/unexpected http error code

2014-05-19 Thread Ned Deily
Ned Deily added the comment: The license file page for 3.4.1 now exists. -- nosy: +ned.deily stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue21535] test_license_exists_at_url fails with 3.4.1, wrong/unexpected http error code

2014-05-19 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> fixed ___ Python tracker <http://bugs.python.org/issue21535> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue21538] plistlib unable to load iOS7 Safari History.plist

2014-05-19 Thread Ned Deily
Ned Deily added the comment: Can you attach a zipped version of the failing plist or at least identify what data in it is causing the exception? Presumably that plist is user-specific, i.e. contains browser history. -- nosy: +ned.deily ___ Python

[issue21538] plistlib unable to load iOS7 Safari History.plist

2014-05-19 Thread Ned Deily
Changes by Ned Deily : -- components: +Library (Lib) nosy: +ronaldoussoren, serhiy.storchaka -ned.deily type: crash -> versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue21538] plistlib unable to load iOS7 Safari History.plist

2014-05-19 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file35295/History.plist.7z ___ Python tracker <http://bugs.python.org/issue21538> ___ ___ Python-bugs-list m

[issue21538] plistlib unable to load iOS7 Safari History.plist

2014-05-19 Thread Ned Deily
Ned Deily added the comment: John, a quick look at the file shows that it contains browsing history information that might be personally identifiable. I don't think that is appropriate to store on a public web site like this one so I've deleted the file. Is there some way to

[issue21542] pprint doesn't work well for counters, sometimes shows them like a dict

2014-05-20 Thread Ned Deily
Changes by Ned Deily : -- nosy: +rhettinger ___ Python tracker <http://bugs.python.org/issue21542> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21534] 404 on documentation download links

2014-05-22 Thread Ned Deily
Ned Deily added the comment: At the moment, the links for 3.4.1 documentation downloads at https://docs.python.org/3/download.html appear to be working AFAICT; anyone see otherwise? However, the 2.7.7rc1 links are broken (https://docs.python.org/2/download.html). Benjamin? -- nosy

[issue21383] "make touch" fails when the build directory is not the source directory

2014-05-22 Thread Ned Deily
Changes by Ned Deily : -- versions: +Python 2.7 ___ Python tracker <http://bugs.python.org/issue21383> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21556] try to use hashtable in pickle

2014-05-22 Thread Ned Deily
Changes by Ned Deily : -- nosy: +alexandre.vassalotti ___ Python tracker <http://bugs.python.org/issue21556> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21522] Add more tkinter tests

2014-05-23 Thread Ned Deily
Ned Deily added the comment: Failing tests with Tk 8.4 (Carbon Tk 8.4.20 on OS X): == ERROR: test_paneconfigure_hide (tkinter.test.test_tkinter.test_widgets.PanedWindowTest

[issue16428] turtle with compound shape doesn't get clicks

2014-05-23 Thread Ned Deily
Changes by Ned Deily : -- nosy: +gregorlingl ___ Python tracker <http://bugs.python.org/issue16428> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21561] help() on enum34 enumeration class creates only a dummy documentation

2014-05-23 Thread Ned Deily
Ned Deily added the comment: If the problem reported here applies only to the 2.7 backport of enum, which is not part of the Python standard library, shouldn't this issue be closed? -- nosy: +ned.deily ___ Python tracker <http://bugs.py

[issue8243] curses writing to window's bottom right position raises: `_curses.error: addstr() returned ERR'

2014-05-23 Thread Ned Deily
Ned Deily added the comment: FTR, the previous issue is Issue441429. A documentation patch would be welcomed. -- assignee: -> docs@python components: +Documentation keywords: +easy nosy: +docs@python, ned.deily stage: -> needs patch versions: +Python 3.5 -Python 3.2, Pyth

[issue21562] curses getsxy() should be curses getxy() in https://docs.python.org/3/library/curses.html#curses.cursxy

2014-05-23 Thread Ned Deily
Changes by Ned Deily : -- keywords: +easy versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue21562> ___ ___ Python-bugs-list mailing list Unsub

[issue21561] help() on enum34 enumeration class creates only a dummy documentation

2014-05-23 Thread Ned Deily
Ned Deily added the comment: Sorry, I skimmed over the issue and didn't notice that the fix applied to pydoc.py, not enum. -- ___ Python tracker <http://bugs.python.org/is

[issue18604] Consolidate gui available checks in test.support

2014-05-23 Thread Ned Deily
Ned Deily added the comment: Earlier I noted: "Somewhat surprisingly, the segfault doesn't seem to happen under the same conditions with 2.7". I'm not sure now how I came to that conclusion then but it is incorrect: the segfault definitely also occurs under the same con

[issue21522] Add more tkinter tests

2014-05-23 Thread Ned Deily
Ned Deily added the comment: Yes, that fixes 8.4, thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue17496] OS X test for Tk availability in runtktests.py doesn't work

2014-05-23 Thread Ned Deily
Ned Deily added the comment: (See also Issue18604 which has refactored this area.) -- keywords: -easy versions: +Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue17

[issue21572] Use generic license web page rather than requiring release-specific license pages

2014-05-24 Thread Ned Deily
New submission from Ned Deily: Currently the "license" command for the interactive interpreter falls back to attempting to download a release-specific license URL if LICENSE.txt is not found locally. This adds the requirement to the release process to create a release-specific li

[issue17095] Modules/Setup *shared* support broken

2014-05-24 Thread Ned Deily
Ned Deily added the comment: Your original patch LGTM. However, since it was written, Setup *shared* support became even more broken due to changes in Makefile macros. Attached is an updated patch. I've never tried customizing Setup before so I don't have a lot of confidence t

[issue21571] Python build should check CPATH, C_INCLUDE_PATH for module dependencies

2014-05-24 Thread Ned Deily
Ned Deily added the comment: setup.py already does that but only for builds on OS X (darwin); see http://hg.python.org/cpython/file/default/setup.py#l539. The comments there suggest to me that the code was made conditional to OS X to avoid introducing regressions in builds on other platforms

[issue21573] Clean up turtle.py code formatting

2014-05-24 Thread Ned Deily
Changes by Ned Deily : -- nosy: +gregorlingl ___ Python tracker <http://bugs.python.org/issue21573> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21477] Idle: improve idle_test.htest

2014-05-26 Thread Ned Deily
Ned Deily added the comment: "2. Htest's for GrepDialog, outputwindow, configDialog and Filelist are not progressing because of assert statements in macosxsupport.py." The asserts are to ensure that none of the Tk-variant tests (isCarbonTk(), isCocoaTk(), et al) ar

[issue21600] mock.patch.stopall doesn't work with patch.dict to sys.modules

2014-05-29 Thread Ned Deily
Changes by Ned Deily : -- nosy: +michael.foord ___ Python tracker <http://bugs.python.org/issue21600> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21603] IDLE SaveAs drops the extension in the prompted filename

2014-05-29 Thread Ned Deily
Ned Deily added the comment: There are known differences among the various Tk implementations with regard to how file extensions are handled in Tk file dialogs, like IDLE uses; see Issue4832. Can you say which version of Tk was in use (it should be in the About IDLE display) and on what

[issue21606] No visual feedback when entering japanese Characters in Entry widget

2014-05-29 Thread Ned Deily
Ned Deily added the comment: tkinter-based apps depend on the underlying Tk widget for text processing. I know nothing about the various Japanese input methods on OS X but, in spot checking of a few, I observed no visual feedback with Katakana selected until I pressed the Return key, at

[issue21617] importlib reload can fail with AttributeError if module removed from sys.path

2014-05-30 Thread Ned Deily
New submission from Ned Deily: There are significant differences in behavior between Python 2.7, 3.3, and 3.4 (or current default) when using import reload() while manipulating sys.path. These differences cause unexpected behavior in the "Run Script" command of the TextMate 2 edito

[issue21541] Provide configure option --with-ssl for compilation with custom openssl

2014-05-30 Thread Ned Deily
Ned Deily added the comment: "Isn't Modules/Setup used for builtin modules?" One of the better kept secrets of Python is that Modules/Setup can be used for building shared modules as well. I didn't know that until looking into it recently as a result of RDM's

<    43   44   45   46   47   48   49   50   51   52   >