[Pyobjc-dev] [ pyobjc-Bugs-806372 ] Crash in NSBezierPath.appendBezierPathWithPoints_count_()
Brought to you by:
ronaldoussoren
From: SourceForge.net <no...@so...> - 2003-09-15 07:55:21
|
Bugs item #806372, was opened at 2003-09-15 07:55 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=114534&aid=806372&group_id=14534 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Dinu C. Gherman (dinu_gherman) Assigned to: Nobody/Anonymous (nobody) Summary: Crash in NSBezierPath.appendBezierPathWithPoints_count_() Initial Comment: Probably a bug... (OS X 10.2.6, /usr/bin/python): Python 2.2.3 (#1, Sep 10 2003, 11:51:43) [GCC 3.1 20020420 (prerelease)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> >>> import objc >>> objc.__version__ '1.0b1' >>> from AppKit import * >>> path = NSBezierPath.bezierPath() >>> path.appendBezierPathWithOvalInRect_(((0,0), (100,100))) # works fine! >>> points = [(0,0), (100,0), (100,100)] >>> path.appendBezierPathWithPoints_count_(points, len(points)) # crashes! Bus error ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=114534&aid=806372&group_id=14534 |