[ python-Bugs-1557983 ] xlc 6 does not like bufferobject.c line22
Bugs item #1557983, was opened at 2006-09-13 15:32
Message generated for change (Comment added) made by pruebauno
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1557983&group_id=5470
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: Python 2.5
>Status: Closed
Resolution: None
Priority: 5
Submitted By: prueba uno (pruebauno)
Assigned to: Nobody/Anonymous (nobody)
Summary: xlc 6 does not like bufferobject.c line22
Initial Comment:
The VisualAge 6 Compiler on AIX complains about the
extra comma on line 22 of bufferobject. Doing the
following change keeps the compiler happy.
enum buffer_t {
READ_BUFFER,
WRITE_BUFFER,
CHAR_BUFFER,
-ANY_BUFFER,
};
enum buffer_t {
READ_BUFFER,
WRITE_BUFFER,
CHAR_BUFFER,
+ANY_BUFFER
};
--
>Comment By: prueba uno (pruebauno)
Date: 2006-09-14 13:22
Message:
Logged In: YES
user_id=30777
All right, I guess I have to complain to IBM then :-)
--
Comment By: Sjoerd Mullender (sjoerd)
Date: 2006-09-13 15:49
Message:
Logged In: YES
user_id=43607
That's a bug in the compiler, not in Python. The C standard
has:
enum-specifier:
enum identifieropt { enumerator-list }
enum identifieropt { enumerator-list , }
enum identifier
enumerator-list:
enumerator
enumerator-list , enumerator
enumerator:
enumeration-constant
enumeration-constant = constant-expression
From the first production you can see that the comma at the
end is allowed. This has been true since at least 1980.
--
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1557983&group_id=5470
___
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1558802 ] Tru64 make install failure
Bugs item #1558802, was opened at 2006-09-14 10:51 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1558802&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Installation Group: Python 2.5 Status: Open Resolution: None Priority: 5 Submitted By: Ralf W. Grosse-Kunstleve (rwgk) Assigned to: Nobody/Anonymous (nobody) Summary: Tru64 make install failure Initial Comment: "make install" of Python 2.5c2 fails under Tru64 Unix V5.1. The failure is fixed by the simple patch below. I.e., simply remove two lines from Makefile.pre.in. Apparently the native make doesn't support comments where commands are expected. diff -r -u Python-2.5c2/Makefile.pre.in Python-2.5c2_cci/Makefile.pre.in --- Python-2.5c2/Makefile.pre.in2006-07-30 09:20:10.0 -0700 +++ Python-2.5c2_cci/Makefile.pre.in2006-09-14 10:17:12.0 -0700 @@ -850,8 +850,6 @@ $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh - # Substitution happens here, as the completely-expanded BINDIR - # is not available in configure sed -e "s,@EXENAME@,$(BINDIR)/python$(VERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(VERSION)-config rm python-config -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1558802&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1542949 ] idle in python 2.5c1 freezes on macos 10.3.9
Bugs item #1542949, was opened at 2006-08-18 21:51 Message generated for change (Comment added) made by dstrozzi You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1542949&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: IDLE Group: Python 2.5 Status: Open Resolution: None Priority: 6 Submitted By: David Strozzi (dstrozzi) Assigned to: Ronald Oussoren (ronaldoussoren) Summary: idle in python 2.5c1 freezes on macos 10.3.9 Initial Comment: Hi, I installed python 2.5b3 on a powerbook ppc laptop running macos 10.3.9 a few days ago. python and idle worked. Now I installed 2.5c1. python works fine from a terminal. When I start idle, it loads, puts up its menu bar, opens a shell window, displays usual startup info, and gives me a prompt. But, I can't type or get a cursor. Whenever I move the mouse over the idle window or menu bar, I get a spinning color wheel and can't do anything. I deleted the whole /library/python tree, reinstalled 2.5c1, and exactly the same thing happened. Oh, and I rebooted :) Not sure what is happening, or how to diagnose. -- >Comment By: David Strozzi (dstrozzi) Date: 2006-09-14 17:03 Message: Logged In: YES user_id=1056922 I just installed python 2.5 rc 2, and IDLE works! On the same 10.3.9 laptop which prompted me to post this bug. I guess the other who had problems should try rc2, and may this bug had been laid to rest. Thanks to whomever fixed it. -- Comment By: diggableme (diggableme) Date: 2006-09-09 13:18 Message: Logged In: YES user_id=1594326 I am a new user that is experiencing the same exact problem. I have OSX.3.9 and everytime I start IDLE, it freezes and the colorwheel somes up. When I view the console output, there are no errors or alert messages. I have also tried uninstalling and re-installing from the beginning with the same result. I have been using the instructions given at this site: http://www.python.org/download/mac/ desp I'm very interested to see if there is in fact a resolution to this problem. I'm at my wit's end. -dig -- Comment By: Ronald Oussoren (ronaldoussoren) Date: 2006-08-28 12:59 Message: Logged In: YES user_id=580910 I've created a new installer from the head of the release25-maint branch and that works correctly. I'm keeping this issue open because I want to investigate why 2.5c1 doesn't work while the current head of the 2.5 branch does work. -- Comment By: David Strozzi (dstrozzi) Date: 2006-08-28 11:48 Message: Logged In: YES user_id=1056922 Well, if there's anything I can do as a 10.3.9 user to test this, let me know. Too busy to delve into the python source code though... -- Comment By: Ronald Oussoren (ronaldoussoren) Date: 2006-08-28 11:22 Message: Logged In: YES user_id=580910 I can reproduce this on 10.3.9: IDLE starts and opens the interactive window, but then completely blocks (spinning cursor). If I start IDLE from the commandline (/Applications/MacPython\ 2.5/ IDLE.app/Contents/MacOS/IDLE) I get a message about 'console' not being a valid command name. That requires further looking into, but is a red herring for this particular problem, removing the Tk-console hiding code in macosxSupport.py results in the same behaviour, without any further output on the console as well. Upgrading aquatk to the latest version (8.4.10.0) on tcltkaqua.sf.net didn't help, IDLE still hangs (Duh, that's because there's a /System/Library/ Frameworks/Tk.framework, which means a user install won't be used for IDLE). The problem is also unrelated to my IDLE.app work, the same problem occurs when starting $prefix/lib/python2.5/idlelib/idle.py. According to gdb the IDLE process is handing in a semaphore call inside the Tcl mainloop. Time to get into serious debugging mode I guess :-( BTW. IDLE does work correctly on a 10.4.7 system. -- Comment By: Kurt B. Kaiser (kbk) Date: 2006-08-28 09:59 Message: Logged In: YES user_id=149084 Maybe priority should be higher? Hopefully Ronald has time to look at this; I don't have access to a Mac. -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1542949&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1542949 ] idle in python 2.5c1 freezes on macos 10.3.9
Bugs item #1542949, was opened at 2006-08-19 03:51 Message generated for change (Comment added) made by ronaldoussoren You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1542949&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: IDLE Group: Python 2.5 Status: Open Resolution: None Priority: 6 Submitted By: David Strozzi (dstrozzi) Assigned to: Ronald Oussoren (ronaldoussoren) Summary: idle in python 2.5c1 freezes on macos 10.3.9 Initial Comment: Hi, I installed python 2.5b3 on a powerbook ppc laptop running macos 10.3.9 a few days ago. python and idle worked. Now I installed 2.5c1. python works fine from a terminal. When I start idle, it loads, puts up its menu bar, opens a shell window, displays usual startup info, and gives me a prompt. But, I can't type or get a cursor. Whenever I move the mouse over the idle window or menu bar, I get a spinning color wheel and can't do anything. I deleted the whole /library/python tree, reinstalled 2.5c1, and exactly the same thing happened. Oh, and I rebooted :) Not sure what is happening, or how to diagnose. -- >Comment By: Ronald Oussoren (ronaldoussoren) Date: 2006-09-14 23:10 Message: Logged In: YES user_id=580910 The scary bit is that the bug was "fixed" due to unclear differences between the build environment used for 2.5c1 and 2.5c2. I'll be building 2.5final as well, so expect this will stay fixed but I'm not entirely happy due to not knowing what caused the failure in the first place. It looks like 2.5c1 was build with a slighly different version of GCC (although both machines has Xcode 2.3 installed). BTW. The issue still exists for 2.4.x, I hope to work on the 2.4 branch this weekend. -- Comment By: David Strozzi (dstrozzi) Date: 2006-09-14 23:03 Message: Logged In: YES user_id=1056922 I just installed python 2.5 rc 2, and IDLE works! On the same 10.3.9 laptop which prompted me to post this bug. I guess the other who had problems should try rc2, and may this bug had been laid to rest. Thanks to whomever fixed it. -- Comment By: diggableme (diggableme) Date: 2006-09-09 19:18 Message: Logged In: YES user_id=1594326 I am a new user that is experiencing the same exact problem. I have OSX.3.9 and everytime I start IDLE, it freezes and the colorwheel somes up. When I view the console output, there are no errors or alert messages. I have also tried uninstalling and re-installing from the beginning with the same result. I have been using the instructions given at this site: http://www.python.org/download/mac/ desp I'm very interested to see if there is in fact a resolution to this problem. I'm at my wit's end. -dig -- Comment By: Ronald Oussoren (ronaldoussoren) Date: 2006-08-28 18:59 Message: Logged In: YES user_id=580910 I've created a new installer from the head of the release25-maint branch and that works correctly. I'm keeping this issue open because I want to investigate why 2.5c1 doesn't work while the current head of the 2.5 branch does work. -- Comment By: David Strozzi (dstrozzi) Date: 2006-08-28 17:48 Message: Logged In: YES user_id=1056922 Well, if there's anything I can do as a 10.3.9 user to test this, let me know. Too busy to delve into the python source code though... -- Comment By: Ronald Oussoren (ronaldoussoren) Date: 2006-08-28 17:22 Message: Logged In: YES user_id=580910 I can reproduce this on 10.3.9: IDLE starts and opens the interactive window, but then completely blocks (spinning cursor). If I start IDLE from the commandline (/Applications/MacPython\ 2.5/ IDLE.app/Contents/MacOS/IDLE) I get a message about 'console' not being a valid command name. That requires further looking into, but is a red herring for this particular problem, removing the Tk-console hiding code in macosxSupport.py results in the same behaviour, without any further output on the console as well. Upgrading aquatk to the latest version (8.4.10.0) on tcltkaqua.sf.net didn't help, IDLE still hangs (Duh, that's because there's a /System/Library/ Frameworks/Tk.framework, which means a user install won't be used for IDLE). The problem is also unrelated to my IDLE.app work, the same problem occurs when starting $prefix/lib/python2.5/idlelib/idle.py. According to gdb the IDLE process is handing in a semaphore call inside the Tcl mainloop. Time to get into serious debugging mode I guess :-( BTW. IDLE does work correctly on a 10
[ python-Bugs-1552935 ] Pythonw doesn't get rebuilt if version number changes
Bugs item #1552935, was opened at 2006-09-05 21:37 Message generated for change (Comment added) made by ronaldoussoren You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1552935&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Macintosh >Group: Python 2.6 Status: Open >Resolution: Accepted Priority: 5 Submitted By: Jack Jansen (jackjansen) Assigned to: Ronald Oussoren (ronaldoussoren) Summary: Pythonw doesn't get rebuilt if version number changes Initial Comment: If the Python version number changes (as it did this week) Mac/pythonw should get rebuilt so it fires up the correct real Python executable. -- >Comment By: Ronald Oussoren (ronaldoussoren) Date: 2006-09-14 23:16 Message: Logged In: YES user_id=580910 pythonw should depend on the Makefile and the Makefile should be automaticly rebuild when config.status changes (just like the toplevel Makefile). I'll check in a patch this weekend, I need to test before I do the checkin. -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1552935&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1558983 ] 2.5c2 macosx installer aborts during "GUI Applications"
Bugs item #1558983, was opened at 2006-09-14 19:45 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1558983&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Macintosh Group: Python 2.5 Status: Open Resolution: None Priority: 5 Submitted By: Evan (evanpowers) Assigned to: Jack Jansen (jackjansen) Summary: 2.5c2 macosx installer aborts during "GUI Applications" Initial Comment: When I run the installer in python-2.5c2-macosx2006-09-12.dmg, it continues until the "GUI Applications" phase, during which it fails saying "There were errors installing the software. Please try installing again". (Which doesn't work.) I noticed that at the same moment it does this, Console.app's console.log window adds the following line: 2006-09-14 19:12:21.568 Installer[1884] Exception raised during posting of notification. Ignored. exception: Some files for PythonApplications-2.5 may not have been written correctly. (code 1) I've also determined that if I try installing again, but this time click Customize on the Installation Type screen, then uncheck "GUI Applications 2.1MB", the installation proceeds successfully. I'm running OS X 10.3.9 on PowerPC. -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1558983&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1558983 ] 2.5c2 macosx installer aborts during "GUI Applications"
Bugs item #1558983, was opened at 2006-09-14 16:45 Message generated for change (Comment added) made by nnorwitz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1558983&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Macintosh Group: Python 2.5 Status: Open Resolution: None Priority: 5 Submitted By: Evan (evanpowers) >Assigned to: Anthony Baxter (anthonybaxter) Summary: 2.5c2 macosx installer aborts during "GUI Applications" Initial Comment: When I run the installer in python-2.5c2-macosx2006-09-12.dmg, it continues until the "GUI Applications" phase, during which it fails saying "There were errors installing the software. Please try installing again". (Which doesn't work.) I noticed that at the same moment it does this, Console.app's console.log window adds the following line: 2006-09-14 19:12:21.568 Installer[1884] Exception raised during posting of notification. Ignored. exception: Some files for PythonApplications-2.5 may not have been written correctly. (code 1) I've also determined that if I try installing again, but this time click Customize on the Installation Type screen, then uncheck "GUI Applications 2.1MB", the installation proceeds successfully. I'm running OS X 10.3.9 on PowerPC. -- >Comment By: Neal Norwitz (nnorwitz) Date: 2006-09-14 21:29 Message: Logged In: YES user_id=33168 Assigning to Anthony so he sees this. -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1558983&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1558983 ] 2.5c2 macosx installer aborts during "GUI Applications"
Bugs item #1558983, was opened at 2006-09-14 16:45 Message generated for change (Comment added) made by nnorwitz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1558983&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Macintosh Group: Python 2.5 Status: Open Resolution: None Priority: 5 Submitted By: Evan (evanpowers) >Assigned to: Ronald Oussoren (ronaldoussoren) Summary: 2.5c2 macosx installer aborts during "GUI Applications" Initial Comment: When I run the installer in python-2.5c2-macosx2006-09-12.dmg, it continues until the "GUI Applications" phase, during which it fails saying "There were errors installing the software. Please try installing again". (Which doesn't work.) I noticed that at the same moment it does this, Console.app's console.log window adds the following line: 2006-09-14 19:12:21.568 Installer[1884] Exception raised during posting of notification. Ignored. exception: Some files for PythonApplications-2.5 may not have been written correctly. (code 1) I've also determined that if I try installing again, but this time click Customize on the Installation Type screen, then uncheck "GUI Applications 2.1MB", the installation proceeds successfully. I'm running OS X 10.3.9 on PowerPC. -- >Comment By: Neal Norwitz (nnorwitz) Date: 2006-09-14 21:29 Message: Logged In: YES user_id=33168 Assigning to Ronald so he sees this. -- Comment By: Neal Norwitz (nnorwitz) Date: 2006-09-14 21:29 Message: Logged In: YES user_id=33168 Assigning to Anthony so he sees this. -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1558983&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[ python-Bugs-1558802 ] Tru64 make install failure
Bugs item #1558802, was opened at 2006-09-14 10:51 Message generated for change (Comment added) made by nnorwitz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1558802&group_id=5470 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Installation Group: Python 2.5 Status: Open Resolution: None Priority: 5 Submitted By: Ralf W. Grosse-Kunstleve (rwgk) >Assigned to: Anthony Baxter (anthonybaxter) Summary: Tru64 make install failure Initial Comment: "make install" of Python 2.5c2 fails under Tru64 Unix V5.1. The failure is fixed by the simple patch below. I.e., simply remove two lines from Makefile.pre.in. Apparently the native make doesn't support comments where commands are expected. diff -r -u Python-2.5c2/Makefile.pre.in Python-2.5c2_cci/Makefile.pre.in --- Python-2.5c2/Makefile.pre.in2006-07-30 09:20:10.0 -0700 +++ Python-2.5c2_cci/Makefile.pre.in2006-09-14 10:17:12.0 -0700 @@ -850,8 +850,6 @@ $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh - # Substitution happens here, as the completely-expanded BINDIR - # is not available in configure sed -e "s,@EXENAME@,$(BINDIR)/python$(VERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(VERSION)-config rm python-config -- >Comment By: Neal Norwitz (nnorwitz) Date: 2006-09-14 21:30 Message: Logged In: YES user_id=33168 Assigning to Anthony so he sees this. -- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1558802&group_id=5470 ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
