[issue1602133] non-framework python fails to define os.environ properly

2013-01-14 Thread Ned Deily
Ned Deily added the comment: LGTM and I agree that it should be considered a bug fix. -- ___ Python tracker <http://bugs.python.org/issue1602133> ___ ___ Pytho

[issue17009] "Thread Programming With Python" should be removed

2013-01-21 Thread Ned Deily
Ned Deily added the comment: It's included in a directory of Guido's essays (http://www.python.org/doc/essays/). Guido, any thoughts about this and the others? -- nosy: +gvanrossum, ned.deily ___ Python tracker <http://bugs.python.o

[issue17012] Differences between /usr/bin/which and shutil.which()

2013-01-22 Thread Ned Deily
Ned Deily added the comment: FWIW, the POSIX standard gives some guidance on how PATH is to be interpreted for conforming systems, including: "A zero-length prefix is a legacy feature that indicates the current working directory. It appears as two adjacent characters ( "::" ),

[issue17027] support for drag and drop of files to tkinter application

2013-01-25 Thread Ned Deily
Ned Deily added the comment: A feature like drag-and-drop seems like something that needs to be provided at either the application level or within Tk or both. While there is apparently no built-in Tk support for drag-and-drop, it appears to be possible to use a Tk extension that provides

[issue16770] Selection in IDLE often skips first character

2013-01-26 Thread Ned Deily
Ned Deily added the comment: Using Cocoa Tk 8.5.13 and IDLE from either 2.7.3 and 3.3.0 on OS X 10.8.2, I can reproduce the behavior you report. However, I do not see the behavior when using Python 2.7.3 linked with the older Carbon Tk 8.4. I tried without success to reproduce the behavior

[issue16770] Selection in IDLE often skips first character

2013-01-26 Thread Ned Deily
Ned Deily added the comment: OK, I *did* spend a little more time on this and am now able to reproduce the behavior solely running the following Tcl code with tclsh: package require Tk set w .text catch {destroy $w} toplevel $w text $w.text -setgrid 1 -height 30 -font "Courier 20&

[issue17046] test_subprocess test_executable_without_cwd fails when run with installed python

2013-01-26 Thread Ned Deily
New submission from Ned Deily: ./configure --enable-shared --with-pydebug --prefix=/py/root && make && make install cd export LD_LIBRARY_PATH=/py/root/lib /py/root/bin/python3.4 -m test -w -uall,-largefile

[issue17049] calendar throws UnicodeEncodeError when locale is specified

2013-01-27 Thread Ned Deily
Ned Deily added the comment: See also Issue13539. -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue17049> ___ ___ Python-bugs-list mailin

[issue13590] extension module builds fail with python.org OS X installers on OS X 10.7 and 10.6 with Xcode 4.2

2013-01-28 Thread Ned Deily
Ned Deily added the comment: Attached are the back ports to 2.7.x and 3.2.x of the Xcode 4 support changes as released in 3.3.0. I've built and tested both with various configurations on a variety of systems, both Intel and PPC, and various OS X versions (10.4, 10.5, 10.6, 10.7, and

[issue13590] extension module builds fail with python.org OS X installers on OS X 10.7 and 10.6 with Xcode 4.2

2013-01-28 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file28879/issue13590_backport_32.patch ___ Python tracker <http://bugs.python.org/issue13590> ___ ___ Python-bug

[issue13590] extension module builds fail with python.org OS X installers on OS X 10.7 and 10.6 with Xcode 4.2

2013-01-31 Thread Ned Deily
Ned Deily added the comment: Backports committed for 2.7 (2.7.4) and 3.2 (3.2.4). Note that, although the uploaded review patches also included backported changes to ./configure to improve defaults for building Python itself under Xcode 4, I decided not to commit them here as they might

[issue11485] Default SDK value on MacOSX needs changing

2013-01-31 Thread Ned Deily
Ned Deily added the comment: For 3.3.0, ./configure (configure.ac) was modified in 688d48e434e4 for Issue13590 to use more appropriate defaults for universal builds on newer releases. In particular, --enable-universalsdk=yes uses the Xcode default SDK (as returned by xcodebuild) instead of

[issue11485] Default SDK value on MacOSX needs changing

2013-01-31 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file28918/issue11485_backport_32.patch ___ Python tracker <http://bugs.python.org/issue11485> ___ ___ Python-bug

[issue13590] extension module builds fail with python.org OS X installers on OS X 10.7 and 10.6 with Xcode 4.2

2013-01-31 Thread Ned Deily
Changes by Ned Deily : -- status: pending -> closed ___ Python tracker <http://bugs.python.org/issue13590> ___ ___ Python-bugs-list mailing list Unsubscri

[issue16256] permissions wrong on Mac doc dir

2013-02-01 Thread Ned Deily
Ned Deily added the comment: Thanks for the report and the patch. Committed for 2.7.4, 3.2.4, and 3.3.1. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.2, Python 3.3, Python 3.4 ___ Pytho

[issue15587] IDLE is pixelated on the Macbook Pro with Retina Display

2013-02-01 Thread Ned Deily
Ned Deily added the comment: I've updated the plists for both IDLE.app and the framework Python.app to enable the high-resolution rendering. That should affect IDLE.app and bin/idle and any other Tkinter-based program, as long as they all are being run from a framework build of Python

[issue15116] remove out-of-date Mac application scripting documentation

2013-02-02 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.4 ___ Python tracker <http://bugs.python.or

[issue16698] test_posix.test_getgroups fails on some systems

2013-02-02 Thread Ned Deily
Ned Deily added the comment: The problem is as documented for issue10433: http://docs.python.org/2/library/os.html#os.getgroups Here's a patch that skips the failing test when Python is built on OS X with a deployment target less than 10.6. Currently on releases prior to 3.3.0, the

[issue16698] test_posix.test_getgroups fails on some systems

2013-02-02 Thread Ned Deily
Ned Deily added the comment: It seems to work on 3.x as well. Since it is minimally invasive and should help to clean up the OS X buildbots, I'm going to push the fix now and keep an eye on the buildbots. -- stage: patch review -> commi

[issue16698] test_posix.test_getgroups fails on some systems

2013-02-02 Thread Ned Deily
Ned Deily added the comment: The buildbots look happier: closing. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue17111] test_surrogates of test_fileio fails sometimes on OS X 10.4

2013-02-03 Thread Ned Deily
New submission from Ned Deily: Seen on "X86 Tiger 2.7" buildbot (http://buildbot.python.org/all/builders/x86%20Tiger%202.7) test_surrogates (test.test_fileio.OtherFileTests) ... test test_fileio failed -- Traceback (most recent call last): File "/Users/db3l/buildarea/2.7.bo

[issue17112] Some doctest-based tests fail when run with python -OO

2013-02-03 Thread Ned Deily
New submission from Ned Deily: Seen on the AMD64 Mountain Lion Optimized [SB] 2.7 buildbot (http://buildbot.python.org/all/builders/AMD64%20Mountain%20Lion%20Optimized%20%5BSB%5D%202.7): test test_doctest crashed -- : filter ('backquote not supported', SyntaxWarning) did not catch a

[issue15298] _sysconfigdata is generated in srcdir, not builddir

2013-02-04 Thread Ned Deily
Ned Deily added the comment: On OS X, Trent's fixes solved the bootstrap issue and _sysconfigdata.py is now created in buildir. Closing. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python

[issue17128] OS X system openssl deprecated - installer should build local libssl

2013-02-04 Thread Ned Deily
New submission from Ned Deily: Apple has deprecated use of openssl in OS X due to its unstable API between versions: "If your app depends on OpenSSL, you should compile OpenSSL yourself and statically link a known version of OpenSSL into your app" https://developer.apple.com/l

[issue17128] OS X system openssl deprecated - installer should build local libssl

2013-02-04 Thread Ned Deily
Ned Deily added the comment: Yes, as we've discussed, using the Apple Crypto APIs would be nice longer-term assuming the compatibility issues can be managed: the set of available APIs appear to have been evolving over the past several OS X releases. But moving away from openssl seems o

[issue17128] OS X system openssl deprecated - installer should build local libssl

2013-02-04 Thread Ned Deily
Ned Deily added the comment: Somewhat coincidentally, Issue17129 addresses the topic of certificate management across multiple platforms. -- ___ Python tracker <http://bugs.python.org/issue17

[issue17129] Include CA bundle and provide access to system's CA

2013-02-04 Thread Ned Deily
Ned Deily added the comment: FYI, at the moment, the PSF OS X installers dynamically link with the operating system supplied libssl and use its CA management policies. Issue17128 proposes changing that because Apple has deprecated the use of the system openssl in OS X. -- nosy

[issue17136] ctypes tests fail with clang on non-OS X

2013-02-05 Thread Ned Deily
Changes by Ned Deily : -- nosy: +meador.inge, ronaldoussoren ___ Python tracker <http://bugs.python.org/issue17136> ___ ___ Python-bugs-list mailing list Unsub

[issue17128] OS X system openssl deprecated - installer should build local libssl

2013-02-08 Thread Ned Deily
Ned Deily added the comment: After spending some time on this, I'm downgrading this from release blocker status. First, no one has yet identified any immediate need for openssl 1.0.x features to support possible PyPI enhancements, which was my original concern. Second, since the op

[issue17160] test_urllib2net fails

2013-02-08 Thread Ned Deily
Ned Deily added the comment: The test is failing because of a restructuring of the docs.python.org website. The test was changed on 2012-10-28 to use the new URL (923ca6d73bad and friends). That change will be in the next set of maintenance releases including 2.7.4 real soon now

[issue17161] make install misses the man and the static library

2013-02-08 Thread Ned Deily
Ned Deily added the comment: It would be helpful in the future if you would open separate issues for each problem you report. To address your points: 1) For unix-y builds, the static library along with other files needed for embedding Python are installed in the standard Python library

[issue17161] make install misses the man and the static library

2013-02-08 Thread Ned Deily
Ned Deily added the comment: Here's a patch for 2.7 that separates the "maninstall" target into a "altmaninstall" target (which installs just the python2.7 man page as before) and a "maninstall" target (which adds symlinks from "python2&qu

[issue17161] make install misses the man and the static library

2013-02-08 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file29010/issue17161_32.patch ___ Python tracker <http://bugs.python.org/issue17161> ___ ___ Python-bugs-list m

[issue17161] make install misses the man and the static library

2013-02-08 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file29011/issue17161_33.patch ___ Python tracker <http://bugs.python.org/issue17161> ___ ___ Python-bugs-list m

[issue17161] make install misses the man and the static library

2013-02-08 Thread Ned Deily
Ned Deily added the comment: "do we install python as python2?" Yes, PEP 394 support was added in 2.7.3 (issue12627). -- ___ Python tracker <http://bugs.python.o

[issue17161] make install misses the man and the static library

2013-02-08 Thread Ned Deily
Ned Deily added the comment: As of 2.7.4, 3.2.4, 3.3.1 and 3.4.0, make install will now install the missing symlinks for the missing man pages, python/python2 or python3. -- assignee: -> ned.deily resolution: -> fixed stage: patch review -> committed/rejected status: open

[issue17167] python man page contains $Date$ in page footer

2013-02-09 Thread Ned Deily
New submission from Ned Deily: The center footer in the source for the python man page, specifically the .th macro in Misc/python.man, contains an unexpanded $Date$ left over from the days of svn keyword expansions. Since hg does not support such expansions, either the source should be

[issue17167] python man page contains $Date$ in page footer

2013-02-10 Thread Ned Deily
Ned Deily added the comment: The keyword extension would have to be added by everyone to their existing .hgrc files and the Mercurial developers discourage its use ("This is considered a feature of last resort."). Better to eliminate the keyword in the source. There were others

[issue17111] test_surrogates of test_fileio fails sometimes on OS X 10.4

2013-02-10 Thread Ned Deily
Ned Deily added the comment: After writing the simplest possible test of open(2) in C to eliminate anything in Python, I finally established that the seemingly random behavior of the test is in fact caused by a rather odd bug in OS X 10.4. The filename being used in the test is intended to

[issue17111] test_surrogates of test_fileio fails sometimes on OS X 10.4

2013-02-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file28937/issue_X_test_fileio.patch ___ Python tracker <http://bugs.python.org/issue17111> ___ ___ Pytho

[issue17111] test_surrogates of test_fileio fails sometimes on OS X 10.4

2013-02-11 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue17196] crash

2013-02-12 Thread Ned Deily
Ned Deily added the comment: How exactly are you invoking Python? From a terminal command line? What messages do you see when you type: /usr/local/bin/python3.3 Or from IDLE? If so, try invoking IDLE from a terminal: /usr/local/bin/idle3.3 -- nosy: +ned.deily

[issue17196] crash

2013-02-12 Thread Ned Deily
Ned Deily added the comment: "But even though python is now open, the icon on the dock is different and none of my previous python files will open. When i try to open them, the IDLE icon im used to seeing bounces a few times and then disappears while the other python IDLE icon that st

[issue17196] crash

2013-02-12 Thread Ned Deily
Ned Deily added the comment: If moving .idlerc fixed the problem, undoubtedly one of the IDLE config files had a corrupted value. There have been some fixes since 3.3.0 to make that part of IDLE more robust. If you want to pursue the issue, you can reopen this issue and upload the files

[issue18987] distutils.utils.get_platform() for 32-bit Python on a 64-bit machine

2013-09-13 Thread Ned Deily
Ned Deily added the comment: A compatibility issue here is that the value provided by get_platform() is also used outside of Distutils, in particular by pkg_resources (provided by setuptools) and by pip, in both cases to help determine whether a binary distribution of an extension module is

[issue19019] Investigate using Apple clang for building OS X installers

2013-09-14 Thread Ned Deily
New submission from Ned Deily: On the python-dev mailing list, Raymond Hettinger asks: > I was exercising the alpha two release of 3.4 and noticed that > it is still being built under GCC 4.2.1. > > Is there any reason we have to use an old compiler? Yes, kinda. It's beca

[issue19033] Python 3 won't go on PC-BSD 9.1

2013-09-16 Thread Ned Deily
Changes by Ned Deily : -- status: open -> closed type: behavior -> ___ Python tracker <http://bugs.python.org/issue19033> ___ ___ Python-bugs-list

[issue19033] Python 3 won't go on PC-BSD 9.1

2013-09-16 Thread Ned Deily
Ned Deily added the comment: http://www.python.org/download/ http://www.freebsd.org/cgi/ports.cgi?query=python3&stype=all&sektion=all -- nosy: +ned.deily resolution: -> out of date stage: -> committed/rejected ___ Python

[issue18050] embedded interpreter or virtualenv fails with "ImportError: cannot import name MAXREPEAT"

2013-09-16 Thread Ned Deily
Ned Deily added the comment: The patch LGTM. And I agree that the fix is not needed for 3.4. Thanks, Serhiy. I verified that it does solve the "embedded" problem (case 1 above) when using embedded versions of all previous releases of 2.7.x (except 2.7.0) and 3.3.x. For the record,

[issue18050] embedded interpreter or virtualenv fails with "ImportError: cannot import name MAXREPEAT"

2013-09-16 Thread Ned Deily
Ned Deily added the comment: To answer your earlier question, there are other inter-version incompatibilities in some of the non-static standard library modules such that test_re cannot be run without errors. However, applying the patch at least allows the embedded interpreter to not crash

[issue19019] Investigate using Apple clang for building OS X installers

2013-09-18 Thread Ned Deily
Ned Deily added the comment: Thanks, Skip. At the moment, finding platforms for building and testing is not a problem: I have at hand running versions of the latest releases for 10.3 onwards. :) (Buildbots for automated testing are another issue, though. We have a critical need for buildbots

[issue19019] Investigate using Apple clang for building OS X installers

2013-09-18 Thread Ned Deily
Ned Deily added the comment: Snakebite did provide some additional OS X buildbots for a while but, AFAIK, they have been offline for some months now. -- ___ Python tracker <http://bugs.python.org/issue19

[issue19044] getaddrinfo raises near-useless exception

2013-09-18 Thread Ned Deily
Ned Deily added the comment: This looks like a platform bug. What platform was this running on? A web search turns up other reports of the system getaddrinfo() returning errno = 0 due to a glibc bug, for example, https://bugzilla.redhat.com/show_bug.cgi?id=958652. -- nosy

[issue19045] Make on Solaris 11 x64 with OracleStudio12.3 failed

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

[issue19054] Descriptors howto

2013-09-19 Thread Ned Deily
Changes by Ned Deily : -- nosy: +rhettinger versions: -Python 2.6, Python 3.1, Python 3.2 ___ Python tracker <http://bugs.python.org/issue19054> ___ ___ Pytho

[issue19045] Make on Solaris 11 x64 with OracleStudio12.3 failed

2013-09-20 Thread Ned Deily
Changes by Ned Deily : -- nosy: +jcea ___ Python tracker <http://bugs.python.org/issue19045> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue19056] Windows 7, script exec not working without explicit cal of python.exe

2013-09-20 Thread Ned Deily
Ned Deily added the comment: You may have a mismatch with two different versions of Python 2.7 installed. Issue18050 documents the basic problem: a change introduced in Python 2.7.4 causes problems if a pre-2.7.4 interpreter executable is launched with a 2.7.4 or later Python standard

[issue19059] test_posix failure on OS X snow leopord buildbot

2013-09-20 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue19059> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19059] test_posix failure on OS X snow leopord buildbot

2013-09-20 Thread Ned Deily
Ned Deily added the comment: >From irc, I believe RDM has changed the buildbot to run under a group that the >user is a member of ("staff") and so I think this issue can be closed. David? -- resolution: -> out of date stage: -> committed/rejected s

[issue19085] Add tkinter basic options tests

2013-09-24 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue19085> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19110] PEP-0 history link is broken

2013-09-28 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. The PEP 0 page now no longer contains a link: since it is automatically generated, there is no corresponding file for it in the peps repo. -- nosy: +ned.deily stage: -> committed/rejec

[issue19128] duplicate test name in Mac/Tools/Doc/setup.py

2013-09-29 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed type: behavior -> ___ Python tracker <http://bugs.python

[issue19147] pydoc3 fcntl.flock documentation gives wrong man page section for flock

2013-10-02 Thread Ned Deily
Ned Deily added the comment: Thanks for the report! -- nosy: +ned.deily resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.4 -Python 2.6 ___ Python tracker <http://bugs.python.or

[issue19141] Windows Launcher fails to respect PATH

2013-10-02 Thread Ned Deily
Changes by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker <http://bugs.python.org/issue19141> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19149] python bug report

2013-10-02 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> python bug report ___ Python tracker <http://bugs.python

[issue19150] IDLE shell fails: "ModifiedInterpreter instance has no attribute 'interp'"

2013-10-02 Thread Ned Deily
Ned Deily added the comment: Can you give a step-by-step sequence of commands to reproduce the problem? One thing that looks somewhat suspicious is that there seem to be multiple IDLE "*Python Shell" windows open. Normally there should only be one. -- nosy: +ned.deily tit

[issue19150] IDLE shell fails: "ModifiedInterpreter instance has no attribute 'interp'"

2013-10-02 Thread Ned Deily
Ned Deily added the comment: That still doesn't explain the problem. How are you trying to "compile" the program? For example, one way would be to use your mouse to select the "Run" menu item and then the "Run Module" option. Or use the F5 function key sh

[issue19226] distutils/command/upload.py show response gives: TypeError: sequence item 1: expected str instance, bytes found

2013-10-11 Thread Ned Deily
Ned Deily added the comment: This problem has been reported previously as Issue17354, a duplicate of Issue12853 which is still open at the moment. -- nosy: +ned.deily resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> global nam

[issue12853] global name 'r' is not defined in upload.py

2013-10-11 Thread Ned Deily
Changes by Ned Deily : -- versions: +Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue12853> ___ ___ Python-bugs-list mailing list Unsub

[issue18458] interactive interpreter crashes and test_readline fails with newer versions of libedit

2013-10-12 Thread Ned Deily
Ned Deily added the comment: Backported to 2.7 (for 2.7.6) and 3.3 (for 3.3.3) as well. The current test_readline already covers this case. -- keywords: -needs review resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed title: libedit histo

[issue19238] Misleading explanation of fill and align in format_spec

2013-10-12 Thread Ned Deily
Changes by Ned Deily : -- nosy: +eric.smith ___ Python tracker <http://bugs.python.org/issue19238> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4965] Can doc index of html version be separately scrollable?

2013-10-12 Thread Ned Deily
Ned Deily added the comment: The patch seems to work well with both Safari 6.0.5 and Firefox 25.0 on OS X 10.8. Nice improvement. -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue4

[issue19027] undefined symbol: _PyParser_Grammar

2013-10-13 Thread Ned Deily
Changes by Ned Deily : -- components: +Build nosy: +ned.deily versions: +Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue19027> ___ ___

[issue19027] undefined symbol: _PyParser_Grammar

2013-10-13 Thread Ned Deily
Ned Deily added the comment: It looks like this was caused by the changes for Issue14321 to not run pgen for cross builds. -- nosy: +doko ___ Python tracker <http://bugs.python.org/issue19

[issue19027] undefined symbol: _PyParser_Grammar

2013-10-13 Thread Ned Deily
Ned Deily added the comment: BTW, this can be worked around (for non cross-builds at least) by running "make touch" on the source directory, e.g.: make -C python/src -f python/build/Makefile touch But it should be fixed. Doko? --

[issue18919] Unify audio modules tests

2013-10-14 Thread Ned Deily
Ned Deily added the comment: The new tests fail when run from an installed Python. You also need to add all of the new test directories to LIBSUBDIRS for the libinstall target in Makefile.pre.in. -- nosy: +ned.deily ___ Python tracker <h

[issue19085] Add tkinter basic options tests

2013-10-15 Thread Ned Deily
Ned Deily added the comment: With Aqua Cocoa Tcl/Tk 8.5.14 or 8.6.0 (using ActiveState's 8.5.14 or 8.6.0) on OS X 10.8.5, running test_ttk_guionly: == ERROR: test_class (tkinter.test.test_ttk.test_widgets.Scrollba

[issue19262] Add asyncio (tulip, PEP 3156) to stdlib

2013-10-16 Thread Ned Deily
Ned Deily added the comment: 1) The test case decorator perhaps: @unittest.skipIf(sys.platform == "win32", "Does not apply to Windows") -- nosy: +ned.deily ___ Python tracker <http://bug

[issue19262] Add asyncio (tulip, PEP 3156) to stdlib

2013-10-16 Thread Ned Deily
Ned Deily added the comment: 2) See class saved_test_environment in regrtest.py. I wouldn't worry too much about it initially but it should be looked at and tidied up before release. -- ___ Python tracker <http://bugs.python.org/is

[issue19273] Update PCbuild/readme.txt

2013-10-16 Thread Ned Deily
Changes by Ned Deily : -- nosy: +brian.curtin, christian.heimes, loewis, tim.golden ___ Python tracker <http://bugs.python.org/issue19273> ___ ___ Python-bug

[issue19275] test_site is failing on AMD64 Snow Leopard

2013-10-17 Thread Ned Deily
Changes by Ned Deily : -- nosy: +christian.heimes ___ Python tracker <http://bugs.python.org/issue19275> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19275] test_site is failing on AMD64 Snow Leopard

2013-10-17 Thread Ned Deily
Ned Deily added the comment: Thanks for the observation, Esa. The typo is now fixed and the test is no longer failing on OS X. -- nosy: +ned.deily resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python track

[issue969718] BASECFLAGS are not passed to module build line

2013-10-18 Thread Ned Deily
Ned Deily added the comment: Since I just noticed this and haven't seen it mentioned already: for the record, the Python Makefile for current versions is affected by this issue. The "sharedmods" target, which calls setup.py to build the standard library shared modules, explici

[issue969718] BASECFLAGS are not passed to module build line

2013-10-19 Thread Ned Deily
Ned Deily added the comment: Arfrever, your proposal is certainly one of many possible solutions and one that would be appropriate if we were designing the Python configure, Makefile, and Distutils components from scratch or looking at major changes to Distutils. But we're not at this

[issue19294] test_asyncio fails intermittently on OS X 10.4

2013-10-19 Thread Ned Deily
New submission from Ned Deily: Since asyncio was checked in, there have been a couple of similar buildbot failures on the OS X 10.4 (Tiger) buildbot sandwiched around a successful run. I also saw a similar failure on a 10.4 system I have. So far, the OS X 10.6 (Snow Leopard) buildbot has

[issue1772673] Replacing char* with const char*

2013-10-19 Thread Ned Deily
Ned Deily added the comment: Compile errors on OS X 10.8 with clang: cc -Wno-unused-result -Werror=declaration-after-statement -g -O0 -Wall -Wstrict-prototypes -I. -IInclude -I../../source/Include-DPy_BUILD_CORE -c ../../source/Modules/posixmodule.c -o Modules/posixmodule.o In file

[issue19304] Typo in statistics.rst

2013-10-19 Thread Ned Deily
Ned Deily added the comment: Thanks for the patch. -- nosy: +ned.deily resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue19303] Typo in devguide - coverage

2013-10-19 Thread Ned Deily
Ned Deily added the comment: Thanks for the patch. -- nosy: +ned.deily resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue15663] Investigate providing Tcl/Tk 8.5 with OS X installers

2013-10-19 Thread Ned Deily
Ned Deily added the comment: I guess the one remaining question about this issue is whether it should be backported to 2.7.x and/or 3.3.x. The implementation depends on the build changes implemented in Issue1584 to provide options to override default search paths for Tcl and Tk so that would

[issue19308] Tools/gdb/libpython.py does not support GDB linked against Python 3

2013-10-20 Thread Ned Deily
Changes by Ned Deily : -- nosy: +dmalcolm ___ Python tracker <http://bugs.python.org/issue19308> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18650] intermittent test_pydoc failure on 3.4.0a1

2013-10-20 Thread Ned Deily
Ned Deily added the comment: Still intermittently failing on 3.4.0a4 when running the entire test suite. -- ___ Python tracker <http://bugs.python.org/issue18

[issue18702] Report skipped tests as skipped

2013-10-20 Thread Ned Deily
Ned Deily added the comment: I took a quick look at the revised patch. Clearly, it's too big to review at a detailed level. I tried the approach of running two complete verbose regrtest runs (-m test -v -uall), before and after the patch, and diffing the results in a "smart

[issue19322] Python crashes on re.search in new regex module.

2013-10-20 Thread Ned Deily
Ned Deily added the comment: The regex module is a third-party project and is not part of the Python standard library. I suggest you open an issue on the issue tracker for the project and include more detailed information about the problem: https://code.google.com/p/mrab-regex-hg/ https

[issue19325] _osx_support imports many modules

2013-10-21 Thread Ned Deily
Changes by Ned Deily : -- assignee: ronaldoussoren -> ned.deily nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue19325> ___ ___ Python-bugs-lis

[issue19317] ctypes.util.find_library should examine binary's RPATH on Solaris

2013-10-21 Thread Ned Deily
Changes by Ned Deily : -- nosy: +jcea ___ Python tracker <http://bugs.python.org/issue19317> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue19294] test_asyncio fails intermittently on OS X 10.4

2013-10-21 Thread Ned Deily
Ned Deily added the comment: Success! (I think.) On my elderly 10.4 machine, as of f33cc4a175a4: tag: tip user:Guido van Rossum date:Mon Oct 21 20:57:25 2013 -0700 files: Lib/test/test_asyncio/test_events.py description: Unsilence several asyncio AIX tests that no

[issue19325] _osx_support imports many modules

2013-10-22 Thread Ned Deily
Ned Deily added the comment: Yes, there are various tricks to be done. I have another solution in mind that should eliminate the use re altogether for most cases. (BTW, _osx_support was implemented to centralize functions in anticipation of the introduction of distutils2/packaging in Python

[issue19294] test_asyncio fails intermittently on OS X 10.4

2013-10-22 Thread Ned Deily
Ned Deily added the comment: I agree. And there appear to have been no test_asyncio failures on the buildbot since the checkins -> closing. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tr

[issue19349] Not so correct exception message when running venv

2013-10-22 Thread Ned Deily
Changes by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker <http://bugs.python.org/issue19349> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19366] Segfault in REPL due to escaped tab.

2013-10-23 Thread Ned Deily
Ned Deily added the comment: This is a duplicate of Issue18458. The problem is due to an incompatible update to the GNU readline compatibility layer of the editline shared library (libedit) in OS X 10.9. The fix for this will be in the upcoming Python 2.7.6 and 3.3.3 maintenance releases

<    45   46   47   48   49   50   51   52   53   54   >