[issue7900] posix.getgroups() failure on Mac OS X

2010-06-22 Thread Martin v . Löwis
Martin v. Löwis added the comment: Here is a (untested) work-around that won't require undefining _DARWIN_C_SOURCE: After all includes, say #ifdef __APPLE__ int posix_getgroups(int, gid_t []) __asm("_getgroups"); #define getgroups posix_getgroups #endif This should cause linking to the s

[issue9048] no OS X buildbots in the stable list

2010-06-22 Thread Martin v . Löwis
Martin v. Löwis added the comment: Am 22.06.2010 12:40, schrieb Ronald Oussoren: > > Ronald Oussoren added the comment: > > Then why bother providing binaries? How is that related? There was no OSX build slave until very recently, but binaries had been provided for years. I see no reason to st

[issue9016] IDLE won't launch (Win XP)

2010-06-22 Thread Martin v . Löwis
Martin v. Löwis added the comment: > Here's the result of doing what Martin asked (and then launching the > interpreter, to confirm that it's the 2.5.4 version that I installed > on Thursday just before submitting my original bug report). > > C:\PYTHON25 is the first item in the PATH. > C:\Pytho

[issue9018] os.path.normcase(None) does not raise an error on linux and should

2010-06-22 Thread Ezio Melotti
Ezio Melotti added the comment: This problem should be addressed in another issue though. -- ___ Python tracker ___ ___ Python-bugs-li

[issue8893] file.{read,readlines} behaviour on Solaris

2010-06-22 Thread Christophe Kalt
Christophe Kalt added the comment: I haven't had a chance to build Python to check, but from the test output I suspect the problem to be different on FreeBSD. -- Added file: http://bugs.python.org/file17750/unnamed ___ Python tracker

[issue7900] posix.getgroups() failure on Mac OS X

2010-06-22 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Martin's solution works. I don't think we need to worry about non-gcc compilers on OSX. I am attaching a patch with tests where getgroups to id -G comparison test is skipped if id -G shows more than 16 groups. Some of the added tests are skipped for n

[issue7192] webbrowser.get("firefox") does not work on Mac with installed Firefox

2010-06-22 Thread R. David Murray
R. David Murray added the comment: Sorry, I have no idea where that issue number came from. The correct issue is #812089. I just retested, and despite -remote being currently undocumented, it works on my windows VM with a current (3.6) version of firefox, and that the actions (eg: new-windo

[issue812089] webbrowser.open_new() opens in an existing browser window

2010-06-22 Thread R. David Murray
R. David Murray added the comment: Note: the -remote switch actually works on windows firefox (just tested on 3.6). -- nosy: +r.david.murray ___ Python tracker ___

[issue9021] no copy.copy problem description

2010-06-22 Thread Senthil Kumaran
Senthil Kumaran added the comment: > Can you post a link to this tutorial here? Section 9.1 and 9.2 of the docs.python.org/tutorial It may not be as explicit as you might want it to be, but it does sets up background that assignments do not copy the object. --

[issue8893] file.{read,readlines} behaviour on Solaris

2010-06-22 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file17750/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue9046] Python 2.7rc2 doesn't build on Mac OS X 10.4

2010-06-22 Thread Ronald Oussoren
Ronald Oussoren added the comment: I don't agree that there must be an option to fall back to system provided libs. The point of using an SDK is to avoid doing that because you might end up with a binary that won't work on an earlier version of the OS (the OpenSSL one is an example of that).

[issue7192] webbrowser.get("firefox") does not work on Mac with installed Firefox

2010-06-22 Thread Ronald Oussoren
Ronald Oussoren added the comment: I tested on OSX with a current version of FF and it didn't work. -- ___ Python tracker ___ ___ Pyth

<    1   2