[Pyobjc-dev] Possibly dumb question
Brought to you by:
ronaldoussoren
From: Just v. R. <ju...@le...> - 2002-11-12 21:11:08
|
Do the trailing underscores in (Py)Obj-C method names have a purpose? I don't (yet) see why this (for example) [path setLineDash:dash count:4 phase:20.0] should translate to path.setLineDash_count_phase_(dash, 4, 20.0) instead of path.setLineDash_count_phase(dash, 4, 20.0) Just |