[issue5954] PyFrame_GetLineNumber

2009-05-07 Thread Jeffrey Yasskin
New submission from Jeffrey Yasskin jyass...@gmail.com: Most uses of PyCode_Addr2Line (http://www.google.com/codesearch?q=PyCode_Addr2Line) are just trying to get the line number of a specified frame, but there's no way to do that directly. Forcing people to go through the code object makes them

[issue1731717] race condition in subprocess module

2009-05-07 Thread djc
Changes by djc dirk...@ochtman.nl: -- nosy: +djc ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1731717 ___ ___ Python-bugs-list mailing list

[issue5846] Deprecate obsolete functions in unittest

2009-05-07 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: I'm sure Gerhard wouldn't say no to changing the sqlite3 test prefix to test_... -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5846 ___

[issue3992] removed custom log from distutils

2009-05-07 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: I still don't see the need to : - rename Log to Logger - remove DEBUG, INFO, WARN, ERROR, FATAL from the module In the next version of python we will have to keep them in any case and add a deprecation warning because third party tools

[issue5918] test_parser crashes when run after some other tests

2009-05-07 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: It's actually an array bounds read error in parsermodule.c::validate_try. Purify detects it, if you disable pymalloc; distutils is innocent. Patch attached. -- keywords: +patch nosy: +amaury.forgeotdarc Added file:

[issue5952] AttributeError exception in urllib.urlopen

2009-05-07 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Sorry, we need more information to diagnose the problem. What did you try? Can you provide a minimal example? Does this reproduce with newer python versions? 2.4 is quite an old version and will not be corrected. -- nosy:

[issue5955] aifc: close() does not close the underlying file

2009-05-07 Thread Amaury Forgeot d'Arc
New submission from Amaury Forgeot d'Arc amaur...@gmail.com: Seen on Windows buildbot: 'test_aifc' left behind file '@test' and it couldn't be removed: [Error 32] The process cannot access the file because it is being used by another process: '@test' This is because Aifc_read.close() does not

[issue5442] [3.1alpha1, 2, beta1] test_importlib fails on Mac OSX 10.5.6

2009-05-07 Thread Ismail Donmez
Ismail Donmez ism...@namtrac.org added the comment: Fails in beta1. -- title: [3.1alpha1,2] test_importlib fails on Mac OSX 10.5.6 - [3.1alpha1,2,beta1] test_importlib fails on Mac OSX 10.5.6 ___ Python tracker rep...@bugs.python.org

[issue5941] customize_compiler broken

2009-05-07 Thread Cournapeau David
Cournapeau David da...@ar.media.kyoto-u.ac.jp added the comment: Ok, here is a patch which fixes the issue while retaining the AR customization. Here is what it does: - configure defines both AR and ARFLAGS in the configure script, and those are used in the Makefile - ARFLAGS is used instead

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Ismail Donmez
Ismail Donmez ism...@namtrac.org added the comment: Still fails in 3.1 beta1. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5798 ___ ___

[issue5955] aifc: close() does not close the underlying file

2009-05-07 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Fixed in r72422. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5955 ___

[issue5955] aifc: close() does not close the underlying file

2009-05-07 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Sorry, but the problem still exists. self._file is a chunk.Chunk object, and its close() method does nothing. Adding self.file = None at the end of chunk.Chunk.close() helps, even if this relies on reference counting to close the file.

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: I tried to track this down, but ran out of time. Here's the little that I discovered; maybe someone else with access to OS X (which I have) and an understanding of poll (which I lack) can build on this. The failure has to do with

[issue5951] email.message : get_payload args's documentation is confusing

2009-05-07 Thread Loic Jaquemet
Loic Jaquemet loic.jaquemet+pyt...@gmail.com added the comment: Ok, I understand. Thx + - I need to learn python :/ -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5951 ___

[issue5951] email.message : get_payload args's documentation is confusing

2009-05-07 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: No fault of yours, it's a real doc bug. I've been programming in python since 1997 or so, and I had to read the source code to figure it out when I went to use get_payload a couple months ago. That's why your bug report caught my eye.

[issue3992] removed custom log from distutils

2009-05-07 Thread Antonio Cavallo
Antonio Cavallo a.cava...@cavallinux.eu added the comment: Hi Tarek, there is a new patch. - Logger is now back to Log - put back INFO/DEBUG etc. - Wrapped the code inside a try/except I removed the _global_logger/logger variables, because they're superfluous: so the cound of the

[issue3992] removed custom log from distutils

2009-05-07 Thread Antonio Cavallo
Changes by Antonio Cavallo a.cava...@cavallinux.eu: Removed file: http://bugs.python.org/file13908/issue3992.remove-custom-log.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3992 ___

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: r56632 looks relevant: When running asynchat tests on OS X (darwin), the test client now overrides asyncore.dispatcher.handle_expt to do nothing, since select.poll gives a POLLHUP error at the completion of these tests. Added timeout count

[issue5955] aifc: close() does not close the underlying file

2009-05-07 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Fixed in r72425. -- components: +Library (Lib) priority: - normal resolution: - fixed stage: - committed/rejected type: - behavior ___ Python tracker rep...@bugs.python.org

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Jean Brouwers
Jean Brouwers mrje...@gmail.com added the comment: Here is a (new?) failure of test_asynchat with Python 3.1b1 on MacOS X 10.4.11 (Intel). % make test test test_asynchat produced unexpected output: ** *** lines 2-16 of

[issue5956] test_distutils fails for Python 3.1b1 on MacOS X

2009-05-07 Thread Jean Brouwers
New submission from Jean Brouwers mrje...@gmail.com: % make test test_distutils test test_distutils failed -- Traceback (most recent call last): File ../Python-3.1b1/Lib/distutils/tests/test_bdist_wininst.py, line 23, in test_get_exe_bytes exe_file = cmd.get_exe_bytes() File

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: See also issue 1161031, especially Giampaolo's suggestion near the end. Seems like it might be relevant. I was the one who merged Josiah's trunk fix into othe other branches, to get things back into sync, but I don't claim to understand

[issue5909] Segfault in typeobject.c

2009-05-07 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: This is a bug in pygobject, which has been already corrected btw: http://git.gnome.org./cgit/pygobject/commit/?id=84706c9a73ad8b2e1dbd3eada09e4425a01d4d05 The corrupted base object is actually an old-style class... [the gdb trace

[issue5957] Possible mistake regarding writeback in documentation of shelve.open()

2009-05-07 Thread Mitchell Model
New submission from Mitchell Model m...@acm.org: The documentation of shelve.open() states (paragraph 3) that By default, mutations to persistent-dictionary mutable entries are not automatically written back. It then goes on to describe what happens if the writeback parameter is True, which

[issue5958] Typo in documentation of shelve.sync

2009-05-07 Thread Mitchell Model
New submission from Mitchell Model m...@acm.org: In the documentation of shelve.sync, 'shelf' is mispelled 'Shelf' -- both the word and case are wrong. -- assignee: georg.brandl components: Documentation messages: 87382 nosy: MLModel, georg.brandl severity: normal status: open title:

[issue5952] AttributeError exception in urllib.urlopen

2009-05-07 Thread Sergey Prigogin
Sergey Prigogin sprigo...@google.com added the comment: The problem is pretty obvious from the code. URLopener.open_http contains the following code: if data is not None: h.send(data) errcode, errmsg, headers = h.getreply() fp = h.getfile() if

[issue5957] Possible mistake regarding writeback in documentation of shelve.open()

2009-05-07 Thread Mitchell Model
Mitchell Model m...@acm.org added the comment: OK, I've figured out from the comments in the example later on in the shelf documentation what the paragraph is supposed to mean. I still think it should be stated clearly. The distinction to be made is that modifications to the dictionary

[issue5959] PyCode_NewEmpty

2009-05-07 Thread Jeffrey Yasskin
New submission from Jeffrey Yasskin jyass...@gmail.com: Most uses of PyCode_New found by http://www.google.com/codesearch?q=PyCode_New are trying to build an empty code object, usually to put it in a dummy frame object. This patch adds a PyCode_NewEmpty wrapper which lets the user specify just

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Josiah Carlson
Josiah Carlson josiahcarl...@users.sourceforge.net added the comment: Looking at trunk, it seems like one reasonable option is to swap the order of handle_close() and handle_expt_event() testing and calls. That would keep all reading/writing before handle_close(), which should be correct.

[issue5960] Windows Installer Error 1722 when opting for compilation at install time - once again

2009-05-07 Thread Eric Devolder
New submission from Eric Devolder eric.devol...@gmail.com: Hi, Same problem as issue 4407, but on release 3.1b1 this time. Guessing the same cure would apply... for reference, here is the updated text, taken from event viewer: Product: Python 3.1b1 -- Error 1722. There is a problem with

[issue5961] Missing labelside option for Tix option menu (fix included)

2009-05-07 Thread Cary R.
New submission from Cary R. cygc...@yahoo.com: The Tix Optionmenu is documented to support a labelside option that is used to specify where the label should be relative to the selection. I have verified that adding 'labelside' to the static_options when calling the base constructor

[issue5442] [3.1alpha1, 2, beta1] test_importlib fails on Mac OSX 10.5.6

2009-05-07 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: Removed file: http://bugs.python.org/file13622/tester.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5442 ___

[issue5962] Ambiguity about the semantics of sys.exit() and os._exit() in multithreaded program

2009-05-07 Thread Pascal Chambon
New submission from Pascal Chambon chambon.pas...@gmail.com: Hello I once was rather confused, because nothing in the sys and os modules mentionned the behaviours that the exit() and _exit() functions were supposed to have when called inside a non-main thread. I've eventually found in

[issue5442] [3.1alpha1, 2, beta1] test_importlib fails on Mac OSX 10.5.6

2009-05-07 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Bloody OS X and its default case-insensitivity. Ismail, please try the attached patch to double-check this solves the issue ASAP so this doesn't hold up Python 3.1 rc1. -- keywords: +patch priority: low - release blocker stage: - patch

[issue5442] [3.1alpha1, 2, beta1] test_importlib fails on Mac OSX 10.5.6

2009-05-07 Thread Ismail Donmez
Ismail Donmez ism...@namtrac.org added the comment: Tested with: ./python -m test.regrtest -v test_importlib 3 failures: == FAIL: test_case_insensitivity

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Josiah, that solution isn't working for me; it looks as though there's a deeper weirdness: what I'm seeing is that on OS X, in e.g. test_emptyline, we end up calling the readwrite function in asyncore.py with flags = POLLIN | POLLPRI |

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: So the sequence of events seems to be: asyncore.readwrite calls obj.handle_read_event ... which calls obj.handle_read (3rd branch of handle_read_event) ... which is defined in asynchat.py; it calls obj.recv ... (back in asyncore now):

[issue5963] Doc error: integer precision in formats

2009-05-07 Thread Terry J. Reedy
New submission from Terry J. Reedy tjre...@udel.edu: String Services / Format Specification Mini-Language (7.1.3.1 in 3.1) The precision is ignored for integer values. in 3.0.1 and 3.1.b1 and, I presume in 2.6/7 doc should be A precision is not allowed for integer values. (3.0.1) format(10,

[issue5963] Doc error: integer precision in formats

2009-05-07 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: This may be a format error rather than a doc error. Eric? -- nosy: +eric.smith, marketdickinson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5963

[issue5963] Doc error: integer precision in formats

2009-05-07 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Sorry; ignore me. I should have read more carefully, and paid attention to what was going on on python-dev as well. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5963

[issue5963] Doc error: integer precision in formats

2009-05-07 Thread Eric Smith
Eric Smith e...@trueblade.com added the comment: PEP 3101 says it's ignored. I chose to be strict. I don't see the advantage of allowing but ignoring it. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5963

[issue5963] Doc error: integer precision in formats

2009-05-07 Thread Eric Smith
Changes by Eric Smith e...@trueblade.com: -- assignee: georg.brandl - eric.smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5963 ___ ___

[issue5963] Doc error: integer precision in formats

2009-05-07 Thread Eric Smith
Eric Smith e...@trueblade.com added the comment: I updated the docs to say precision is not allowed for integers. -- resolution: - accepted status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5963

[issue5753] CVE-2008-5983 python: untrusted python modules search path

2009-05-07 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: re: gedit I'm by no means an expert (I did not design the original python module extension), we simply copied from vim at the beginning. That said, it seems there are issues if you embed the python interpreter and do not explicitly set

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Josiah Carlson
Josiah Carlson josiahcarl...@users.sourceforge.net added the comment: It would seem that we need to be more defensive in our calls. We need to check to make sure that the socket isn't closed before calling read/write/expt events. -- ___ Python

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-07 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Damn, that patch should have caused those case-sensitivity tests to be skipped. I will dig into this later today and hopefully have another patch to test some time tonight. -- resolution: fixed - title: [3.1alpha1,2,beta1] test_importlib

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Josiah Carlson
Josiah Carlson josiahcarl...@users.sourceforge.net added the comment: Mark, try this: if flags select.POLLIN and (obj.connected or obj.accepting): obj.handle_read_event() if flags select.POLLOUT and obj.connected: obj.handle_write_event() if

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: That fixes test_empty_line (in test_asynchat.py), but now I get a hang in test_close_when_done. By the way, here's an interesting site that goes some way to explaining what to expect from select.poll and EOF.

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Getting rid of the and ... on the handle_read_event didn't make a difference: I still get the hang in test_close_when_done. But if I get rid of the and clause on the handle_write_event branch then all the test_asynchat tests pass. So that

[issue5952] AttributeError exception in urllib.urlopen

2009-05-07 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Thanks for the info. This problem is a duplicate of issue767111, which was corrected two years ago. I suggest you to upgrade to 2.5 at least. -- resolution: - out of date status: open - closed

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Josiah Carlson
Josiah Carlson josiahcarl...@users.sourceforge.net added the comment: I went ahead and plugged my mac in (which reminded me of why I unplugged it in the first place), and I'm able to reproduce your error in the test after my proposed modifications. One thing to remember is that the test is

[issue5941] customize_compiler broken

2009-05-07 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: Fixed in r72445 and r72446 Thanks David ! -- status: open - closed versions: -Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5941

[issue5949] IMAP4_SSL spin because of SSLSocket.suppress_ragged_eofs

2009-05-07 Thread Kevin Watters
Kevin Watters kevinwatt...@gmail.com added the comment: I wasn't sure--the docs for SSLSocket.read (http://docs.python.org/library/ssl.html#ssl.SSLSocket.read) say Reads up to nbytes bytes from the SSL-encrypted channel and returns them. With that up to I wasn't sure that an empty string

[issue3992] removed custom log from distutils

2009-05-07 Thread Tarek Ziadé
Changes by Tarek Ziadé ziade.ta...@gmail.com: Removed file: http://bugs.python.org/file11650/remove-custom-log.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3992 ___

[issue3992] removed custom log from distutils

2009-05-07 Thread Tarek Ziadé
Changes by Tarek Ziadé ziade.ta...@gmail.com: Removed file: http://bugs.python.org/file13260/remove-custom-log-revised.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3992 ___

[issue3992] removed custom log from distutils

2009-05-07 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: I removed the _global_logger/logger variables, because they're superfluous Yes but by adding log instead, and removing log = _global_log.log you are breaking Distutils because its uses log.log Besides, the rest seem OK. I'll work on your

[issue5924] When setting complete PYTHONPATH on Python 3.x, paths in the PYTHONPATH are ignored

2009-05-07 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: After some attempts, it seems that PYTHONPATH is completely ignored if it is longer than 256 characters -- nosy: +amaury.forgeotdarc ___ Python tracker rep...@bugs.python.org

[issue5924] When setting complete PYTHONPATH on Python 3.x, paths in the PYTHONPATH are ignored

2009-05-07 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Confirmed in PC/getpathp.c: size_t r = mbstowcs(wenvpath, _envpath, MAXPATHLEN+1); envpath = wenvpath; if (r == (size_t)-1 || r = MAXPATHLEN) envpath = NULL;

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-07 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: Removed file: http://bugs.python.org/file13914/case_sensitivity_tests.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5442 ___

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-07 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: OK, Ismail, here is another patch. Revert the last one and try this. Looks like I was being stupid by forgetting to remove the 'darwin' platform check. But I also made the check simpler. -- status: open - pending Added file:

[issue3992] removed custom log from distutils

2009-05-07 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: I have reworked your patch a little bit so it works for Distutils. But I still need to digg on the initialization problem to see if we can get rid of the problem : the new logging will not get imported as well during tests so it is not what

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Jean Brouwers
Jean Brouwers mrje...@gmail.com added the comment: I reran the test_synchat.py test after patching to the Lib/asyncore.py and Lib/test/test-asynchat.py files of Python-3.1b1 on MacOS X 10.4.11 (Intel). The test now hangs in ... test_string_producer (__main__.TestAsynchat) ... ok

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Josiah Carlson
Josiah Carlson josiahcarl...@users.sourceforge.net added the comment: As an aside, I was testing against trunk, not 3.1b1 . -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5798 ___

[issue3992] removed custom log from distutils

2009-05-07 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: ok the problem occurs because site.py calls distutils.util.get_platform in addbuilddir. I'll see what we can do in there. -- ___ Python tracker rep...@bugs.python.org

[issue5798] test_asynchat fails on Mac OSX

2009-05-07 Thread Jean Brouwers
Jean Brouwers mrje...@gmail.com added the comment: Understood. On Thu, May 7, 2009 at 5:18 PM, Josiah Carlson rep...@bugs.python.orgwrote: Josiah Carlson josiahcarl...@users.sourceforge.net added the comment: As an aside, I was testing against trunk, not 3.1b1 . --

[issue5964] WeakSet cmp methods

2009-05-07 Thread Robert Schuppenies
New submission from Robert Schuppenies robert.schuppen...@gmail.com: Running this code: import weakref class C: pass ... ws = weakref.WeakSet([C]) if ws == 1: ... print(1) ... gives me the following exception: Traceback (most recent call last): File stdin, line 1, in module

[issue5965] Format Specs: doc 's' and implicit conversions

2009-05-07 Thread Terry J. Reedy
New submission from Terry J. Reedy tjre...@udel.edu: String Services / Format Specification Mini-Language (7.1.3.1 in 3.1) Building on #5963: document type 's' and implicit conversions. Near the top, after A general convention is that an empty format string () produces the same result as if you

[issue5965] Format Specs: doc 's' and implicit conversions

2009-05-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I forgot to include: Error messages for mismatches between specification type and value type currently look like ValueError: Unknown conversion type d They would be *much* clearer written as something like ValueError: Conversion type d is

[issue5963] Doc error: integer precision in formats

2009-05-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Whoops, I believe my suggested replacement. A precision is not allowed for integer values. should really be A precision is not allowed for integer presentation types. or something similar. If you did not change the end of the sentence, please

[issue5924] When setting complete PYTHONPATH on Python 3.x, paths in the PYTHONPATH are ignored

2009-05-07 Thread Suzumizaki
Changes by Suzumizaki suzumiz...@free.japandesign.ne.jp: -- nosy: +Suzumizaki ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5924 ___ ___

[issue4351] [PATCH] Better stacklevel for GzipFile.filename DeprecationWarning

2009-05-07 Thread Philip Jenvey
Philip Jenvey pjen...@users.sourceforge.net added the comment: this and more applied in r72458 -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4351 ___

[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-07 Thread Ismail Donmez
Ismail Donmez ism...@namtrac.org added the comment: Down to 1 failure: FAILED (failures=1) test test_importlib failed -- Traceback (most recent call last): File /Users/cartman/Python- 3.1b1/Lib/importlib/test/source/test_abc_loader.py, line 271, in test_lacking_parent

[issue5809] No such file or directory with framework build under MacOS 10.4.11

2009-05-07 Thread Ned Deily
Ned Deily n...@acm.org added the comment: --enable-framework and --enable-shared are mutually exclusive options. See, for example, the discussion in Issue4472. Use one or the other, not both. As a side comment, I think this error crops up often enough that it would make sense to add a