[issue7085] strptime problem

2009-11-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: FWIW, I've filed an issue with Apple for this: Radar #7330231 -- ___ Python tracker <http://bugs.python.org/issue7085> ___ ___

[issue3962] single architecture framework build fails on OS X 10.5

2009-11-17 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- status: pending -> closed ___ Python tracker <http://bugs.python.org/issue3962> ___ ___ Python-bugs-list mailing list Unsubscri

[issue5614] Malloc errors in test_io

2009-11-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: Closing the issue as this is not a bug in python (as noted in the comments) and there doesn't seem to be a workaround for avoiding the spurious messages on stderr. -- resolution: -> wont fix status: open -> closed type: crash

[issue7144] imp.load_module in thread causes core dump on OSX 10.6

2009-11-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: The crash is caused by loading any extension that happens to link with CoreFoundation on a secondary thread, unless CoreFoundation was already initialized. The CF framework contains a constructor that explicitly aborts when it is not called on the main

[issue7085] strptime problem

2009-11-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: The crash is caused by loading any extension that happens to link with CoreFoundation on a secondary thread, unless CoreFoundation was already initialized. The CF framework contains a constructor that explicitly aborts when it is not called on the main

[issue7085] strptime problem

2009-11-19 Thread Ronald Oussoren
Ronald Oussoren added the comment: I committed a fix in r76403 (trunk), r76404 (2.6), r76405 (3.2), 76406 (3.1) -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue7144] imp.load_module in thread causes core dump on OSX 10.6

2009-11-19 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've just committed a fix for this issue in all 4 active branches (2.6, 2.7, 3.1 and 3.2) -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python

[issue7180] "pydoc -k" can generate AttributeError on Mac OS X

2009-11-19 Thread Ronald Oussoren
Ronald Oussoren added the comment: The problem occurs in two occassions: 1) python was configured/built without the Carbon bindings (such as the copy that Apple ships) 2) python was build in 64-bit mode In both cases Carbon.File does not have an FSSpec type. Luckily this has already been

[issue7179] Unportable test(1) construct

2009-11-19 Thread Ronald Oussoren
Ronald Oussoren added the comment: Fixed the postflight issue in r76407 (trunk), r76408 (2.6), r76409 (3.2) and r76410 (3.1). -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bug

[issue6393] OS X: python3 from python-3.1.dmg crashes at startup

2009-11-24 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue6393> ___ ___ Python-bugs-list mailing list Unsubscri

[issue1653416] print >> f, "Hello" produces no error: normal?

2009-11-24 Thread Ronald Oussoren
Ronald Oussoren added the comment: <http://www.opengroup.org/onlinepubs/9699919799/functions/printf.html> claims fprintf should return a negative value when there is an output error (the same claims is in the manpage of fprintf on OSX 10.6). Neither document refers to the error ind

[issue822005] Carbon.CarbonEvt.ReceiveNextEvent args wrong

2009-11-24 Thread Ronald Oussoren
Ronald Oussoren added the comment: According to <http://developer.apple.com/legacy/mac/library/documentation/Carbon/Concep tual/Carbon_Event_Manager/CarbonEvents.pdf> this issue is valid. However, I won't work on fixing this because Carbon is deprecated, both the Python bindi

[issue822005] Carbon.CarbonEvt.ReceiveNextEvent args wrong

2009-11-24 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- resolution: -> wont fix versions: +Python 2.6, Python 2.7 ___ Python tracker <http://bugs.python.org/issue822005> ___ ___ Py

[issue1700507] Carbon.Scrap.PutScrapFlavor

2009-11-24 Thread Ronald Oussoren
Ronald Oussoren added the comment: Lowering the priority to low because this is a bug in a deprecated binding for a deprecated Apple framework. I won't work on a fix, although I am willing to review and apply a patch when someone provides one. -- nosy: +ronaldoussoren pri

[issue4057] Popen(..., cwd=...) does not set PWD environment variable

2009-11-26 Thread Ronald Oussoren
Ronald Oussoren added the comment: In most shells $PWD is a magic variable that is maintained by the shell itself. IMHO python has no reason to mess with variables that happen to be defined by some shells. If subprocess were to set $PWD, os.setuid should set $UID, and there may be other

[issue4057] Popen(..., cwd=...) does not set PWD environment variable

2009-11-26 Thread Ronald Oussoren
Ronald Oussoren added the comment: On 26 Nov, 2009, at 19:27, Geoffrey Bache wrote: > > Geoffrey Bache added the comment: > > I can see your point, though I think particularly in this case it's > (unfortunately) fairly common that scripts on POSIX platforms read $PWD

[issue7401] os.write and os.close on pipe from separate threads hangs on Mac OS X

2009-11-27 Thread Ronald Oussoren
Ronald Oussoren added the comment: I agree with martin, this is probably an OS bug. BTW. I can confirm that the issue occurs on OSX 10.6 as well (using the binary 2.6.4 installer on the python.org website). I might get around to writing a C equivalent of the script in the future, but

[issue7401] os.write and os.close on pipe from separate threads hangs on Mac OS X

2009-11-27 Thread Ronald Oussoren
Ronald Oussoren added the comment: Hugh, for us as Python maintainers there is a distinction between issues with the Python implementation itself and those outside of Python. The former we can solve, the latter not. At best we can work around issues in the environment (I've rec

[issue7401] os.write and os.close on pipe from separate threads hangs on Mac OS X

2009-11-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Hugh: Do you have an ADC account (either free or payed)? If you do you can file bugs at http://bugreport.apple.com/. If you don't I can file the bug for you. -- ___ Python tracker <http://bugs.py

[issue7416] select module compile errors breaks OS X multi-architecture builds

2009-12-01 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm currently testing a patch that adds the required SIZEOF_ macros to pymacconfig.h, simular to how SIZEOF_LONG and SIZEOF_VOIDP are handled. I expect to commit a fix later today to the 2.7 and 3.2 branches. The new SIZEOF_ macros are only needed fo

[issue7416] select module compile errors breaks OS X multi-architecture builds

2009-12-01 Thread Ronald Oussoren
Ronald Oussoren added the comment: Hugh: why did you remove the .c file? I'd prefer to keep the .c file in the python tracker as, just in case someone else runs into the same issue and starts debugging the issue. -- ___ Python tracker

[issue7401] os.write and os.close on pipe from separate threads hangs on Mac OS X

2009-12-01 Thread Ronald Oussoren
Ronald Oussoren added the comment: Hugh: never mind There is a workaround for this issue: use socketpair(2) instead of pipe(2). I haven't thought enough about the consequences yet to have an firm opinion on implementing os.pipe using socketpair(2) on OSX. My gut feeling is th

[issue7416] select module compile errors breaks OS X multi-architecture builds

2009-12-01 Thread Ronald Oussoren
Ronald Oussoren added the comment: Fixed in r76623 (trunk) and r76624 (3.2). (The commit message mentions another issue, that's a copy-paste error on my end) -- resolution: -> fixed stage: -> committed/rejected status: open -> closed

[issue2441] Mac build_install.py script fetches unavailable SQLite version

2009-12-03 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: glyph -> ronaldoussoren nosy: +ronaldoussoren ___ Python tracker <http://bugs.python.org/issue2441> ___ ___ Python-

[issue7452] Invalid mnemonic 'fnstcw'

2009-12-08 Thread Ronald Oussoren
Ronald Oussoren added the comment: Could you also post the generated pyconfig.h? -- ___ Python tracker <http://bugs.python.org/issue7452> ___ ___ Python-bug

[issue7437] OS X 2.6.4 installer fails on 10.3 with two corrupted file names, ignored on 10.4

2009-12-08 Thread Ronald Oussoren
Ronald Oussoren added the comment: The problem shouldn't be present in 3.1 and 2.7, both trees no longer contain the ancient documentation files. IMHO the best fix is to remove Mac/Resources/app/Resources/English.lproj/Documentation/ide/ (and the link to ide/index.html in .../Document

[issue7452] Invalid mnemonic 'fnstcw'

2009-12-08 Thread Ronald Oussoren
Ronald Oussoren added the comment: This is due to a block starting at '#ifdef HAVE_GCC_ASM_FOR_X87' in Python/pymath.c. A simple patch to pymacconfig.h fixes the issue, I'll commit it once I've fully tested the result. -- __

[issue7452] Invalid mnemonic 'fnstcw'

2009-12-08 Thread Ronald Oussoren
Ronald Oussoren added the comment: Fixed in r76712 (trunk), r76713 (3.2), r76714 (3.1). The python3 branches contained about half of the fix, I merged the trunk version into python3 anyway to keep all 3 branches in sync. The issue does not affect the 2.6 branch. -- resolution

[issue7437] OS X 2.6.4 installer fails on 10.3 with two corrupted file names, ignored on 10.4

2009-12-08 Thread Ronald Oussoren
Ronald Oussoren added the comment: This should be fixed in r76715, I've removed the documentation that caused the installer issues in the first place. -- resolution: -> fixed stage: -> test needed status: open -> pending type

[issue6800] os.exec* raises "OSError: [Errno 45] Operation not supported" in a multithreaded application

2009-12-08 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: ronaldoussoren -> ___ Python tracker <http://bugs.python.org/issue6800> ___ ___ Python-bugs-list mailing list Un

[issue3432] Mac, 2.6 framework install error

2009-12-08 Thread Ronald Oussoren
Ronald Oussoren added the comment: Is this issue still relevant? I cannot reproduce this on my machines. -- nosy: +ronaldoussoren ___ Python tracker <http://bugs.python.org/issue3

[issue7190] Problems running threaded Tkinter program under OS X IDLE

2009-12-08 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- status: pending -> closed ___ Python tracker <http://bugs.python.org/issue7190> ___ ___ Python-bugs-list mailing list Unsubscri

[issue7184] build failures on Snow Leopard

2009-12-08 Thread Ronald Oussoren
Ronald Oussoren added the comment: richard: could you please elaborate on what you think is wrong? readline doesn't get build because OSX' libedit isn't good enough for the readline module in 2.6, this is fixed in 2.7. On my machine the other ones do get build, althoug

[issue7452] Invalid mnemonic 'fnstcw'

2009-12-08 Thread Ronald Oussoren
Ronald Oussoren added the comment: Ned: which version of Python do you build? The issue was only in the trunk (2.7), the other branches were fine (although the code in 3.1 and 3.2 was suboptimal). BTW. The issue affected universal builds on all OSX versions. The trunk should be fine now as

[issue7452] Invalid mnemonic 'fnstcw'

2009-12-09 Thread Ronald Oussoren
Ronald Oussoren added the comment: Ned: the best way to ensure universal builds don't get broken is through the buildbots. AFAIK there are no buildbots that create universal binaries at the moment. Sadly enough I don't have the resources to provide one. Mark: Mac/README expla

[issue7452] Invalid mnemonic 'fnstcw'

2009-12-09 Thread Ronald Oussoren
Ronald Oussoren added the comment: BTW. Am I correct when I state that this issue has been fixed and can be closed? -- ___ Python tracker <http://bugs.python.org/issue7

[issue6834] use different mechanism for pythonw on osx

2009-12-09 Thread Ronald Oussoren
Ronald Oussoren added the comment: FWIW: I now have a 2.7 tree with the new pythonw on my machine, open issues are: * Ensure IDLE.app gets build in such a way that the GUI works for all supported universal binaries (including a 4-way build on 10.5, where the system Tk doesn't work

[issue7154] urllib.request system proxy configuration lookup broken for OS X in Python 3

2009-12-09 Thread Ronald Oussoren
Ronald Oussoren added the comment: I agree that _scproxy should be ported to the 3.x trees. Such a port should be fairly straightforward, but is harder than just copying files over due to the str/unicode changes in the 3.x tree. -- ___ Python

[issue1123727] gensuitemodule.processfile fails

2009-12-09 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- priority: normal -> low ___ Python tracker <http://bugs.python.org/issue1123727> ___ ___ Python-bugs-list mailing list Unsubscri

[issue3363] python version incorrectly reported in crash reports on Mac OS X 10.4.11 PPC

2009-12-10 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: -> ronaldoussoren nosy: +ronaldoussoren ___ Python tracker <http://bugs.python.org/issue3363> ___ ___ Python-bugs-lis

[issue7468] PyErr_Format documentation doesn't mention all format codes

2009-12-10 Thread Ronald Oussoren
New submission from Ronald Oussoren : I haven't checked the 3.1, 2.7 and 2.6 documentation, but at least for 3.2 the documentation of PyErr_Format lists a very small number of supported format characters compared to PyUnicode_FromFormat even though PyErr_Format calls PyUnicode_FromForma

[issue7473] x84_64 arch Missing from 2.6.4 Mac universal binaries - Cripples building embedded 64-bit

2009-12-11 Thread Ronald Oussoren
Ronald Oussoren added the comment: I don't agree that the current binaries are only useful for Tiger and earlier, the binaries work just fine on Leopard and Snow Leopard as well. FWIW. I'm planning to provide a 3-way universal binary, or even just intel (i386, x86_64) for Python 2

[issue7473] Compile error when building a 3-way universal framework when a 2-way universal framework is present

2009-12-11 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- resolution: -> accepted stage: -> needs patch title: x84_64 arch Missing from 2.6.4 Mac universal binaries - Cripples building embedded 64-bit -> Compile error when building a 3-way universal framework when a 2-way universal framework i

[issue7452] Invalid mnemonic 'fnstcw'

2009-12-11 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue7452> ___ ___ Python-bugs-list mailing list Unsubscri

[issue1123727] gensuitemodule.processfile fails

2009-12-13 Thread Ronald Oussoren
Ronald Oussoren added the comment: This issue is for deprecated Carbon module that has a well-maintained alternative outside of the stdlib. -- resolution: -> wont fix stage: test needed -> committed/rejected status: open -> closed _

[issue3588] sysconfig variable LINKFORSHARED has wrong value for MacOS X framework build

2009-12-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: What do you use LINKFORSHARED for? As a minor rant: the wholesale export of all settings in the main Makefile through distutils sucks big time. I have no idea whether or not LINKFORSHARED is meant to be a public API, and if it is what it should be used for

[issue3588] sysconfig variable LINKFORSHARED has wrong value for MacOS X framework build

2009-12-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: python-config (or python3-config for python 3.x) is the best way to get this information in recent versions of python (IIRC 2.6 or newer) -- ___ Python tracker <http://bugs.python.org/issue3

[issue3588] sysconfig variable LINKFORSHARED has wrong value for MacOS X framework build

2009-12-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: To be honest: I don't know. Tarek: do you think LINKFORSHARED should contain a value that works outside of Python's build environment? -- ___ Python tracker <http://bugs.python.

[issue7574] PyUnicode_FromFormat broken and not documented for 2.x

2009-12-24 Thread Ronald Oussoren
New submission from Ronald Oussoren : Include/unicodeobject.h includes prototypes for PyUnicode_FromFormat and PyUnicode_FromFormatV in both 2.6 and 2.7, but those functions are not included in the documention. And worse, the implementation contains bugs: the %R format code tries to include

[issue6834] use different mechanism for pythonw on osx

2009-12-24 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've committed the completed patch as r77031 (trunk) and r77032 (py3k) I will not backport to 2.6 and 3.1 because this is not a bugfix. -- resolution: -> accepted stage: needs patch -> committed/rejected status: ope

[issue7541] python-config --ldflags doesn't pick up libpython2.5.a

2009-12-24 Thread Ronald Oussoren
Ronald Oussoren added the comment: Fixed in r77033 (trunk), r77034 (2.6), r77035 (py3k), r77036 (3.1) Development on the 2.5 tree is closed, I will therefore not backport to 2.5. As a workaround you can add -Wl,-search_paths_first to the linker flags to ensure that the libpython.a in the

[issue3363] python version incorrectly reported in crash reports on Mac OS X 10.4.11 PPC

2009-12-24 Thread Ronald Oussoren
Ronald Oussoren added the comment: This is no longer an issue: the Info.plist is now initialized by the build process and includes the correct version number. At the time the bug was files the plist needed to be updated manually and that didn't always happen (or rather, more often tha

[issue7576] Avoid warnings in PyModuleDef_HEAD_INIT

2009-12-25 Thread Ronald Oussoren
New submission from Ronald Oussoren : When running GCC with warnings the compiler can warn about incomplete structure initializers. This gives spurious warnings when initializing a PyModuleDef structure using PyModuleDef_HEAD_INIT The attached patchs changes PyModuleDef_HEAD_INIT to

[issue1700507] Carbon.Scrap.PutScrapFlavor

2009-12-26 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue1700507> ___ ___ Python-bugs-list mailing list Unsubscri

[issue2019] API to clear most free lists

2009-12-26 Thread Ronald Oussoren
Ronald Oussoren added the comment: Is patch this still relevant? The functionality seems to be present in the trunk and py3k. -- nosy: +ronaldoussoren ___ Python tracker <http://bugs.python.org/issue2

[issue3054] test_disutils fails

2009-12-26 Thread Ronald Oussoren
Ronald Oussoren added the comment: This issue is fixed in the 2.7 and 3.2 trees. I'm therefore closing this issue. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.pyt

[issue7577] documention buglet

2009-12-26 Thread Ronald Oussoren
New submission from Ronald Oussoren : The documentation for bf_getbuffer at <http://www.python.org/doc/3.1/c- api/typeobj.html#buffer-object-structures> claims: The signature of getbufferproc is int (PyObject *obj, PyObject *view, int flags). obj is the object to export, view is the Py_

[issue7577] documention buglet for PyBuffer

2009-12-26 Thread Ronald Oussoren
Ronald Oussoren added the comment: Another buffer documentation buglet is the documentation for 'PyBuffer_FillInfo'. The prototype in the documentation is: int PyBuffer_FillInfo(Py_buffer *view, void *buf, Py_ssize_t len, int readonly, int infoflags) The real prototype has an

[issue7580] distutils makefile from python.org installer doesn't work on OS X Snow Leopard

2009-12-27 Thread Ronald Oussoren
Ronald Oussoren added the comment: AFAIK This is already fixed in the repository. I don't have time to verify this right now, but will do so later this week (which is why I'm assigning the issue to myself) -- assignee: tarek -> r

[issue7580] distutils makefile from python.org installer doesn't work on OS X Snow Leopard

2009-12-27 Thread Ronald Oussoren
Ronald Oussoren added the comment: I forgot to mention the workaround for the 3.1 release: reinstall XCode and make sure that you don't do the default install, but select the 10.4u SDK for installation as well. You may then run into linking issues, they only workaround for that is to

[issue7591] test_get_platform fails on 3.1

2009-12-31 Thread Ronald Oussoren
Ronald Oussoren added the comment: I will look at this in the weekend. -- ___ Python tracker <http://bugs.python.org/issue7591> ___ ___ Python-bugs-list mailin

[issue7658] OS X pythonw.c compile error with 10.4 or earlier deployment target: no spawn.h

2010-01-08 Thread Ronald Oussoren
Ronald Oussoren added the comment: Ned: the new functionality is also needed for 2-way univeral binaries, it makes pythonw behave much more as if you execute the real interpreter instead of a stub executable. That posix_spawn doesn't exist sucks, and I'm a bit annoyed with myse

[issue7658] OS X pythonw.c compile error with 10.4 or earlier deployment target: no spawn.h

2010-01-08 Thread Ronald Oussoren
Ronald Oussoren added the comment: BTW. The patch is incorrect in it current form: * The change to LIPO_32BIT_FLAGS is unconditional, the current values are needed to build on modern system, I guess the proposed new value would be needed for building on 10.4? * The patch changes pythonw to

[issue7658] OS X pythonw.c compile error with 10.4 or earlier deployment target: no spawn.h

2010-01-12 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've attached a patch that should fix the build issues with the 10.4 SDK. The patch touches configure.in, run autoconf and autoheader after applying the patch. I haven't tested the patch yet beyond compilation on 10.6 system without the 10.4 S

[issue7679] Warning building 2.7 on OS X 10.6 libintl.h "Present But Cannot Be Compiled"

2010-01-12 Thread Ronald Oussoren
Ronald Oussoren added the comment: As Ned noted you probably have installed GNU gettext in /usr/local and that copy does not contain both intel architectures (i386 and x86_64) There's nothing we can do about that, I have tried to find a way to exclude non-system locations from the de

[issue7658] OS X pythonw.c compile error with 10.4 or earlier deployment target: no spawn.h

2010-01-13 Thread Ronald Oussoren
Ronald Oussoren added the comment: Ned and Sridhar: IMO we need a configure test to detect which argument should be used to extract ppc code (ppc or ppc7400). -- ___ Python tracker <http://bugs.python.org/issue7

[issue3426] os.path.abspath with unicode argument should call os.getcwdu

2010-01-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: abspath is basically dead code in macpath, the module is used to manipulate classic MacOS9-style paths and is no longer used as os.path on any supported platform (it used to be os.path on MacOS9). BTW. the module itself is not dead, OSX still uses OS9-style

[issue706585] Expose FinderInfo in FSCatalogInfo

2009-02-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm closing this as "wont fix" because the Carbon bindings are deprecated and are removed in Python 3.0. -- nosy: +ronaldoussoren resolution: -> wont fix status: open -> closed ___

[issue706592] Crbon.File.FSSpec should accept non-existing pathnames

2009-02-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: Closing as "won't fix" because the Carbon bindings are deprecated, and FSSpec's are even more deprecated (they're even deprecated at the C-level) -- nosy: +ronaldoussoren resolution: -> won

[issue806149] aetools.TalkTo methods can be obscured

2009-02-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: Closing as "won't fix" because the aepack module is deprecated and has various other major issues on little-endian systems. -- nosy: +ronaldoussoren resolution: -> wont fix status: open -> closed _

[issue852150] Can't send Apple Events without WindowServer connection

2009-02-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: Closing as won't fix because the Carbon modules are deprecated. This doesn't actually affect behaviour of the Carbon bindings, other than causing an icon to appear on the dock which is basicly purely cosmetical. -- nosy: +ronaldoussoren

[issue853656] Carbon.CF.CFURLRef should be easier to create

2009-02-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: Carbon.CF is very imcomplete. Use PyObjC instead. -- nosy: +ronaldoussoren resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/is

[issue869649] Quicktime missing funcitonality

2009-02-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: Fixing this isn't worth the trouble. -- nosy: +ronaldoussoren resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.o

[issue878560] Add a console window for Carbon MacPython applets

2009-02-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: Closing as won't fix. The "Make Applet" tool is still present, but rather useless. Use py2app to create application bundles. -- nosy: +ronaldoussoren resolution: -> wont fix status: open -> closed _

[issue974159] Starting a script in OSX within a specific folder

2009-02-17 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: -> ronaldoussoren nosy: +ronaldoussoren ___ Python tracker <http://bugs.python.org/issue974159> ___ ___ Python-

[issue776533] Carbon.Snd module SPB constructor shadowed

2009-02-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've reapplied the hack. I'm closing the issue because we will not regenerate the Carbon bindings as these are deprecated and are no longer present in Python 3.x -- nosy: +ronaldoussoren resolution: later -> fixed status: o

[issue5408] test_osx_env failing

2009-03-02 Thread Ronald Oussoren
Ronald Oussoren added the comment: Is this a standard unix build or a framework build? ___ Python tracker <http://bugs.python.org/issue5408> ___ ___ Python-bugs-list m

[issue5413] urllib ctypes error on Mac OS X Server 10.5

2009-03-03 Thread Ronald Oussoren
Ronald Oussoren added the comment: I don't have time to investigate this right now, I do have access to a 10.5 server box though. With some luck I'll be able to create a patch later today. Looking at the code in urllib I found the most likely reason for the problem: the Python sc

[issue1201569] allow running multiple instances of IDLE

2009-03-04 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- nosy: -ronaldoussoren ___ Python tracker <http://bugs.python.org/issue1201569> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5224] OS X installer: "Update Shell Profile" script is not updated

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: This is now also fixed for the trunk and 2.6 -- status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue5226] OS X installer: Welcome and Readme files are out-of-date

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: Fixed for the trunk and 2.6 as well. -- resolution: accepted -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue3883] Bottom buttons of IDLE Preferences Pane on Mac not wide enough for their text.

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: Fixed for the trunk and 2.6 as well. -- resolution: accepted -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5194] OS X IDLE.app and bin/idle: missing/extra menu options

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've applied a cleaned up version of patch-nad0014-trunk-26.txt to the trunk and 2.6 branch. This completely fixes this issue. -- resolution: accepted -> fixed status: open -> closed ___ Python tra

[issue881824] Add ResolveFinderAliases to macostools module

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm closing this issue as rejected because the macostools module is deprecated. We'll therefore not apply any more feature enhancements. -- nosy: +ronaldoussoren resolution: -> rejected status: o

[issue5408] test_osx_env failing

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: Ned: IMHO your patch is not correct. test_osx_env tests behaviour that's only valid for a framework build, and should therefore only run when testing a framework build. The easiest way to accomplish that is to change the test in test_osx_env.ma

[issue2740] Cmd module doesn't support readline completion on OSX Leopard

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: I intend to close this as won't fix. The issue is caused by Apple's build of Python, the generic Python.org build won't even compile when using libedit. ___ Python tracker <http://bugs.py

[issue4834] Trouble configuring with icc on Mac OS X 10.5

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: Skip: could you please explain which bit of Xcode you didn't install? The compile should work regardless of installing 10.3 SDK support. The code you mention in your report sets MACOSX_DEPLOYMENT_TARGET to 10.3 on 10.3 systems or later, unless you expl

[issue5154] OSX broken poll testing doesn't work

2009-03-04 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- nosy: +ronaldoussoren ___ Python tracker <http://bugs.python.org/issue5154> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5269] OS X Installer: add options to specify universal build type and deployment target

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm +1 on this feature, I haven't looked at the patch yet. -- nosy: +ronaldoussoren ___ Python tracker <http://bugs.python.

[issue5269] OS X Installer: add options to specify universal build type and deployment target

2009-03-04 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: -> ronaldoussoren ___ Python tracker <http://bugs.python.org/issue5269> ___ ___ Python-bugs-list mailing list Un

[issue734115] Packaging without disturbing an existing installation

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: AFAIK this patch is no longer necessary, at least no on OSX. The current binary installer is already build using a separate DESTDIR without having to patch Makefiles. -- nosy: +ronaldoussoren ___ Python tracker

[issue763708] Failures in test_macostools for --enable-unicode=ucs4

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: IMHO fixing this is not worth the trouble, we should just document that the Carbon extensions aren't supported in a UCS4 build (or even explictly detect a UCS4 build in setup.py and not compile the Carbon extensions). -- nosy: +ronaldous

[issue4848] MacPython build script uses Carbon and MacOS modules slated for removal

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: Usage of PyObjC in the build-script should be avoided, as should eating exceptions like you propose. The rationale for not silencing exceptions is that the build script is supposed to enable reproducable builds. I'll probably add a small Cocoa ObjC pr

[issue4848] MacPython build script uses Carbon and MacOS modules slated for removal

2009-03-04 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: -> ronaldoussoren ___ Python tracker <http://bugs.python.org/issue4848> ___ ___ Python-bugs-list mailing list Un

[issue900502] bundlebuilder: some way to add non-py files in packages

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: I intend to close this issue as it is an enhancement proposal for a deprecated module. Py2app (the modern replacement for bundlebuilder) also doesn't support this scenario, although it should be fairly easy to add such support to that cod

[issue1113328] OSATerminology still semi-broken

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: Fixed in the trunk in revision r70178. hhas: it is save to backport this to python 2.6? -- assignee: jackjansen -> ronaldoussoren nosy: +ronaldoussoren resolution: -> accepted ___ Python tracker

[issue5154] OSX broken poll testing doesn't work

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: poll(3) doesn't work for all types of filedescriptors on OSX. Specifically: BUGS The poll() system call currently does not support devices. (That's from the manpage of poll). This is why Apple doesn't expose select.poll in their buil

[issue5408] test_osx_env failing

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: Committed my fix as r70179 (3.x) and r70180 (30-maint). Benjamin: can you confirm this actually fixes the issue with a non- framework build, I don't know if I'll be able to test that before the first 3.1a release. -- resolution: ->

[issue4165] Failure building 64-bit Python on Leopard

2009-03-04 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- status: pending -> closed ___ Python tracker <http://bugs.python.org/issue4165> ___ ___ Python-bugs-list mailing list Unsubscri

[issue4848] MacPython build script uses Carbon and MacOS modules slated for removal

2009-03-04 Thread Ronald Oussoren
Changes by Ronald Oussoren : ___ Python tracker <http://bugs.python.org/issue4848> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/o

<    15   16   17   18   19   20   21   22   23   24   >