[issue14958] IDLE 3 and PEP414 - highlighting unicode literals

2012-05-29 Thread Ned Deily
Ned Deily added the comment: It turns out that the previous and current versions of IDLE syntax highlighting did not recognize literals with valid two-character prefixes, like "ur" or "br". Besides restoring "ur", 3.3 also added "rb" to the exi

[issue14958] IDLE 3 and PEP414 - highlighting unicode literals

2012-05-29 Thread Ned Deily
Changes by Ned Deily : -- versions: -Python 3.2 ___ Python tracker <http://bugs.python.org/issue14958> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14958] IDLE 3 and PEP414 - highlighting unicode literals

2012-05-29 Thread Ned Deily
Ned Deily added the comment: It could be. But perhaps its absence will be another incentive to move to Python 3.3. -- ___ Python tracker <http://bugs.python.org/issue14

[issue14499] Extension module builds fail with Xcode 4.3 on OS X 10.7 due to SDK move

2012-05-30 Thread Ned Deily
Ned Deily added the comment: I've been working on this and it does need to be thoroughly fixed. There are two different aspects to it: (1) being able to build Python using any of the supported development environment options; and (2) support in Distutils and packaging to build exte

[issue14962] When changing IDLE configuration all text in shell window loses highlighting

2012-05-31 Thread Ned Deily
Ned Deily added the comment: LGTM, thanks. Applied for release in 2.7.4, 3.2.4, and 3.3.0. -- nosy: +ned.deily resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 2.7 ___ Python track

[issue14959] ttk.Scrollbar in Notebook widget freezes

2012-05-31 Thread Ned Deily
Ned Deily added the comment: Another data point: I just tried the same test using a Python 3.2.3 linked with an X11 Tk 8.5 (MacPorts) rather than the ActiveState Cocoa Tk 8.5.11 (python.org Python). I was not able to get the test to fail with X11 Tk so that tends to support the idea that

[issue14981] 3.3.0a4 compilation fails von MacOS Lion /10.7.4

2012-06-01 Thread Ned Deily
Ned Deily added the comment: This is a known issue with using Apple's llvm-gcc compiler. Make sure you've installed either the latest version of Xcode for OS X 10.7 (currently Xcode 4.3.x) and install the optional Command Line Tools component (Xcode -> Preferences -> Downloa

[issue13241] llvm-gcc-4.2 miscompiles Python (XCode 4.1 on Mac OS 10.7)

2012-06-01 Thread Ned Deily
Ned Deily added the comment: Hynek: Thanks for the offer; I've got it. I'll have a comprehensive update to support the new multiple dev environments for 10.6 and beyond prior to b1 (and for 2.7.x and 3.2.x). -- ___ Python trac

[issue14986] print() fails on latin1 characters on OSX

2012-06-02 Thread Ned Deily
Ned Deily added the comment: mac_roman is an obsolete encoding from Mac OS 9 days; it is seldom seen on modern OS X systems. But it is often the fallback encoding set in ~/.CFUserTextEncoding if the LANG or a LC_* environment variable is not set (see, for example, http://superuser.com

[issue14986] print() fails on latin1 characters on OSX

2012-06-02 Thread Ned Deily
Ned Deily added the comment: The character in question is not the problem and the code snippet you provide looks fine. The problem is almost certainly that you are running the code in an execution environment where the LANG environment variable is either not set or is set to an encoding

[issue14986] print() fails on latin1 characters on OSX

2012-06-02 Thread Ned Deily
Ned Deily added the comment: I'm neither a PyDev nor an Eclipse user but there should be some way to set environment variables in it. Undoubtedly, Eclipse is launched as an app so a shell is not involved and shell profile files are not processed. However, the "Environment"

[issue14959] ttk.Scrollbar in Notebook widget freezes

2012-06-02 Thread Ned Deily
Ned Deily added the comment: One final data point: I was unable to reproduce the failure when using a Python 3.2.3 when linked with a current ActiveState Tcl/Tk 8.4, which uses an older Aqua Carbon Tk. The python.org 32-bit-only Pythons use Tcl/Tk 8.4 like this; see http://www.python.org

[issue14987] inspect missing warnings import

2012-06-02 Thread Ned Deily
Changes by Ned Deily : -- nosy: +brett.cannon ___ Python tracker <http://bugs.python.org/issue14987> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14996] pthon 3.2.3 freezes when saving a .py program

2012-06-03 Thread Ned Deily
Ned Deily added the comment: We need more information to be able to help. What platform and OS version are you running on? Where did you install Python 3.2.3 from? Exactly what happens when you try to save a file, i.e. are you using a mouse or a keyboard accelerator, what messages do you

[issue14996] Python 3.2.3 freezes when saving a .py program

2012-06-04 Thread Ned Deily
Ned Deily added the comment: It is still difficult to understand what problem you are seeing as others are using IDLE from the 3.2.3 installers on Windows 7. There is at least one open issue in this area on Windows: http://bugs.python.org/issue12988. Does that describe what you are seeing

[issue14996] Python 3.2.3 freezes when saving a .py program

2012-06-04 Thread Ned Deily
Ned Deily added the comment: Also, you could try temporarily renaming the .idlerc folder in your User folder; this is where IDLE stores several configuration files which can be a cause of problems if they have incorrect values. And you could also try to run IDLE from the Python command line

[issue14997] Syntax Error in Python Version Number

2012-06-04 Thread Ned Deily
Ned Deily added the comment: Try launching Python 2.7 -> Python (command line), then in the interactive interpreter enter: import idlelib.PyShell idlelib.PyShell.main() Additional error messages may show up in the command line window. But also try renaming or deleting the .idl

[issue14996] Python 3.2.3 freezes when saving a .py program

2012-06-04 Thread Ned Deily
Ned Deily added the comment: Windows experts: any suggestions here? -- nosy: +brian.curtin, loewis, terry.reedy ___ Python tracker <http://bugs.python.org/issue14

[issue14996] IDLE 3.2.3 crashes saving a .py file to certain folders on Windows 7

2012-06-04 Thread Ned Deily
Changes by Ned Deily : -- title: Python 3.2.3 freezes when saving a .py program -> IDLE 3.2.3 crashes saving a .py file to certain folders on Windows 7 ___ Python tracker <http://bugs.python.org/issu

[issue14996] IDLE 3.2.3 crashes saving a .py file to certain folders on Windows 7

2012-06-04 Thread Ned Deily
Ned Deily added the comment: Terry, I believe Maureen was confirming that this appeared to be the same problem as documented in Issue12988. So does anyone have any idea what apparently causes this behavior on some systems and not others

[issue6203] locale documentation doesn't mention that LC_CTYPE is changed at startup

2012-06-05 Thread Ned Deily
Ned Deily added the comment: LGTM -- ___ Python tracker <http://bugs.python.org/issue6203> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue14997] IDLE tries to run shell window if line is completed with F5 rather than Enter

2012-06-05 Thread Ned Deily
Ned Deily added the comment: Thanks for the additional information; it's now clear what's going on. IDLE has two kinds of windows where code can be entered. When you launch IDLE, by default it opens with its shell window. This window is similar to running the Python inte

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25872/ship1.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25873/ship2.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25874/ship3.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25876/ship5.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25875/ship4.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25877/ship6.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25878/ship7.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25879/ship8.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25880/ship9.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25881/ship10.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25882/ship11.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25883/ship12.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25884/ship13.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25885/ship14.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25886/ship15.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25887/ship16.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25888/ship17.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25889/ship18.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25890/ship19.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25891/ship20.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25892/ship21.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25893/ship22.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25894/ship23.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25895/ship24.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25896/ship25.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25897/ship26.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25898/ship27.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25899/ship28.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25900/ship29.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25901/ship30.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25902/ship31.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25903/ship32.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25904/ship33.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25905/ship34.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25906/ship35.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25907/ship36.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25908/ship37.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25909/ship38.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25910/ship39.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25911/ship40.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25912/ship41.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25913/ship42.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25914/ship43.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25915/ship44.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25916/ship45.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25917/ship46.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25918/ship47.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25919/ship48.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25920/ship49.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25921/ship50.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25922/ship51.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25923/ship52.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25924/ship53.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25925/ship54.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25926/ship55.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25927/ship56.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25928/ship57.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25929/ship58.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25930/ship59.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25931/ship60.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file25932/ship61.html ___ Python tracker <http://bugs.python.org/issue1009> ___ ___ Python-bugs-list mailin

[issue15048] Manually Installed Python Includes System Wide Paths

2012-06-11 Thread Ned Deily
Ned Deily added the comment: I have to admit that I'm not keen on this feature for the reasons James cited. And I think the example of the shared user site directory is not a good analogy. In that case, you, as a user, have more control over the presence and contents of the directory

[issue15048] Manually Installed Python Includes System Wide Paths

2012-06-11 Thread Ned Deily
Ned Deily added the comment: A few more thoughts. The original impetus for this feature was Issue4865. The use case there seem to be from users of Google App Engine back when it was released using Python 2.5. It seems to me that the use of dmg installers for Python packages has diminished

[issue15057] Potential Bug in mpd_qdivint and mpd_qrem

2012-06-13 Thread Ned Deily
Changes by Ned Deily : -- nosy: +skrah ___ Python tracker <http://bugs.python.org/issue15057> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15066] make install error: ImportError: No module named _struct

2012-06-14 Thread Ned Deily
Ned Deily added the comment: I have no experience with opensuse but, from a general unix install install view, the most obvious cause of that message would be a build failure of the _struct extension. Check the log file for messages with _struct in it. You could also try to check the paths

[issue15074] Strange behaviour of python cmd module. (Ignores slash)

2012-06-15 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> invalid status: open -> closed ___ Python tracker <http://bugs.python.org/issue15074> ___ ___ Python-bugs-list

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

2012-06-19 Thread Ned Deily
Ned Deily added the comment: In progress; fixes for this and the other Xcode4-related issues will be in for 3.3.0b1. -- ___ Python tracker <http://bugs.python.org/issue13

[issue14225] _cursesmodule compile error in OS X 32-bit-only installer build

2012-06-19 Thread Ned Deily
Ned Deily added the comment: It was still valid as of 3.3.0a4. -- ___ Python tracker <http://bugs.python.org/issue14225> ___ ___ Python-bugs-list mailin

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

2012-06-20 Thread Ned Deily
Ned Deily added the comment: The entire "Using Macintosh" section of the documentation set is in need of an update. I plan to have that done for 3.3 release and the next releases of 3.2.x and 2.7.x. The 2.6 and 3.1 releases are in security fix mode only, prior to their retireme

[issue14225] _cursesmodule compile error in OS X 32-bit-only installer build

2012-06-21 Thread Ned Deily
Ned Deily added the comment: It turns out that the Unicode support for curses did not build correctly on OS X at all. There were two issues: 1. On OS X, unlike many systems, does not supply separate libncurses and libncursesw in /usr/lib; same for libpanel/libpanelw. So the tests in

[issue12567] curses implementation of Unicode is wrong in Python 3

2012-06-21 Thread Ned Deily
Ned Deily added the comment: It turns out that the Unicode support introduced by this issue didn't build correctly on OS X, either silently failing to build (explaining the problem seen by Nicholas) or causing a compile error (as seen in Issue14225). This should be working OK (as of 3.

[issue15037] test_curses fails with OverflowError

2012-06-21 Thread Ned Deily
Ned Deily added the comment: I just ran into this problem on another platform. I believe the problem is due to a sign-extension bug in the ncurses library unget_wch function (see link below). It was apparently fixed in nurses 5.8; I've tested with the current ncurses 5.9 and test_nc

[issue14225] _cursesmodule compile error in OS X 32-bit-only installer build

2012-06-21 Thread Ned Deily
Ned Deily added the comment: P.S. All is not perfect. I initially missed re-running test_curses with the system ncurses library on OS X where ncurses is at 5.4 or with the 32-bit-installer which builds ncurses 5.5. When I did, test_curses failed as described in Issue15037. test_curses

[issue15037] curses.unget_wch and test_curses fail when linked with ncurses 5.7 and earlier

2012-06-21 Thread Ned Deily
Ned Deily added the comment: Thanks for the testing. Georg, haypo: I think a call should be made on what, if anything, to do about this prior to 3.3.0-final. It seems that there are still OS distributions out there with older versions of ncurses. Is documenting this bug sufficient? If so

[issue12567] curses implementation of Unicode is wrong in Python 3

2012-06-21 Thread Ned Deily
Ned Deily added the comment: See also Issue15037 which documents a broken curses.unget_wch and, hence, test_curses when Python is built with ncurses 5.7 or earlier. -- ___ Python tracker <http://bugs.python.org/issue12

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

2012-06-23 Thread Ned Deily
Ned Deily added the comment: Thanks, Ronald. Version 3 addresses various issues, including adding a search of $PATH for clang since xcrun is not useful in the case where the user has installed a standalone Command Line Tools package or has installed a Command Line Tools component from

[issue15175] pydoc -k zip throws segmentation fault

2012-06-24 Thread Ned Deily
Ned Deily added the comment: Which version of Python 2.7.x are you running? If it is less than Python 2.7.3, this is likely a duplicate of Issue7425, the fix for which improved the robustness of pydoc -k as of 2.7.3. -- nosy: +ned.deily

[issue13950] rm commented-out code

2012-06-25 Thread Ned Deily
Changes by Ned Deily : -- Removed message: http://bugs.python.org/msg163958 ___ Python tracker <http://bugs.python.org/issue13950> ___ ___ Python-bugs-list mailin

<    39   40   41   42   43   44   45   46   47   48   >