[issue13829] exception error
New submission from Dan kamp : Get this error when trying to run Moviegrabber on a mac running v2.7. Crash report below. Process: Python [2444] Path: /System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/C ontents/MacOS/Python Identifier: Python Version: ??? (???) Code Type: X86-64 (Native) Parent Process: Python [2431] Date/Time: 2011-12-21 20:32:41.233 -0500 OS Version: Mac OS X 10.7.2 (11C74) Report Version: 9 Interval Since Last Report: 357638 sec Crashes Since Last Report: 17 Per-App Crashes Since Last Report: 405 Anonymous UUID: 3C387DB7-0AA3-4F34-A100-31D1736D2668 Crashed Thread: 0 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0108 VM Regions Near 0x108: --> __TEXT 00010c5c5000-00010c5c6000 [4K] r-x/rwx SM=COW /System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/C ontents/MacOS/Python Application Specific Information: objc[2429]: garbage collection is OFF Thread 0 Crashed: 0 libdispatch.dylib 0x7fff8b14ace9 _dispatch_wakeup + 108 1 libdispatch.dylib 0x7fff8b14d876 _dispatch_resume_slow + 20 2 com.apple.CoreFoundation0x7fff8af8262c -[NSXPCConnection start] + 92 3 com.apple.CoreFoundation0x7fff8af84ca3 __CFXNotificationCenterSetupConnection + 387 4 com.apple.CoreFoundation0x7fff8af84b11 __CFXNotificationCenterCreate + 273 5 com.apple.CoreFoundation0x7fff8af849ea __CFNotificationCenterGetDistributedCenter_block_invoke_1 + 26 6 libdispatch.dylib 0x7fff8b14d224 dispatch_once_f + 53 7 com.apple.CoreFoundation0x7fff8af73e0a CFNotificationCenterGetDistributedCenter + 74 8 com.apple.CoreFoundation0x7fff8afb2eb8 CFXPreferencesGetSourceForTriplet_block_invoke_1 + 40 9 libdispatch.dylib 0x7fff8b14d224 dispatch_once_f + 53 10 com.apple.CoreFoundation0x7fff8af7fa4a __CFXPreferencesGetSourceForTriplet + 58 11 com.apple.CoreFoundation0x7fff8af8be67 __CFXPreferencesGetSearchListForBundleID + 215 12 com.apple.CoreFoundation0x7fff8af8bd48 ___CFXPreferencesCopyAppValue_block_invoke_1 + 24 13 com.apple.CoreFoundation0x7fff8af8bcea CFPreferencesCopyAppValue + 218 14 com.apple.SystemConfiguration 0x7fff928f388c SCDynamicStoreCopyProxies + 43 15 _scproxy.so 0x00010ceae9ba 0x10ceae000 + 2490 16 org.python.python 0x00010c651b58 PyEval_EvalFrameEx + 13318 17 org.python.python 0x00010c654df7 0x10c5ca000 + 568823 18 org.python.python 0x00010c651e0a PyEval_EvalFrameEx + 14008 19 org.python.python 0x00010c654df7 0x10c5ca000 + 568823 20 org.python.python 0x00010c651e0a PyEval_EvalFrameEx + 14008 21 org.python.python 0x00010c654cd8 PyEval_EvalCodeEx + 1996 22 org.python.python 0x00010c5f2abf 0x10c5ca000 + 166591 23 org.python.python 0x00010c5d1d32 PyObject_Call + 97 24 org.python.python 0x00010c5e06e9 0x10c5ca000 + 91881 25 org.python.python 0x00010c5d1d32 PyObject_Call + 97 26 org.python.python 0x00010c64dc40 PyEval_CallObjectWithKeywords + 180 27 org.python.python 0x00010c5dd489 PyInstance_New + 273 28 org.python.python 0x00010c5d1d32 PyObject_Call + 97 29 org.python.python 0x00010c651f63 PyEval_EvalFrameEx + 14353 30 org.python.python 0x00010c654cd8 PyEval_EvalCodeEx + 1996 31 org.python.python 0x00010c654e6c 0x10c5ca000 + 568940 32 org.python.python 0x00010c651e0a PyEval_EvalFrameEx + 14008 33 org.python.python 0x00010c654cd8 PyEval_EvalCodeEx + 1996 34 org.python.python 0x00010c654e6c 0x10c5ca000 + 568940 35 org.python.python 0x00010c651e0a PyEval_EvalFrameEx + 14008 36 org.python.python 0x00010c654cd8 PyEval_EvalCodeEx + 1996 37 org.python.python 0x00010c5f2abf 0x10c5ca000 + 166591 38 org.python.python 0x00010c5d1d32 PyObject_Call + 97 39 org.python.python 0x00010c6525ec PyEval_EvalFrameEx + 16026 40 org.python.python 0x00010c654df7 0x10c5ca000 + 568823 41 org.python.pyt
[issue13829] exception error
Dan kamp added the comment: On Jan 20, 2012, at 4:20 PM, Brett Cannon wrote: > Can you isolate the cause? There is way too much in that core dump to try to > debug the problem. Without knowing what code in this Moviegrabber app caused > the bug we can't do anything to debug the issue. All I know is that this happens with Moviegrabber and no other app that I am running (5 of them). Attached is the code I am using. This is WAY above what I know how to do but I can tell you that I am running it on a mac with 2.7.1 installed and OSX lion. Attached is the source. Thanks -- status: pending -> open ___ Python tracker <http://bugs.python.org/issue13829> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue13829] exception error
Dan kamp added the comment: I have received this from the macpython listserv it that helps. Would really like to find this issue. >From the traceback, it appears that there is a problem with Python's _scproxy module; that's an internal helper C module that provides an interface to the OS X System Configuration framework to access Internet proxy configurations for the urllib module. You should open an issue for this at bugs.python.org. Please include the original crash report traceback. On Jan 21, 2012, at 12:03 PM, Brett Cannon wrote: > > Brett Cannon added the comment: > > Then I'm going to assume the bug lies with Moviegrabber doing something wrong > and it isn't Python's direct fault. > > -- > resolution: -> invalid > status: open -> closed > > ___ > Python tracker > <http://bugs.python.org/issue13829> > ___ -- ___ Python tracker <http://bugs.python.org/issue13829> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com