Staging
v0.5.1
https://github.com/python/cpython
Revision 2d735bc09876e8216bf6708bb598923e07a2ac4b authored by Benjamin Peterson on 19 August 2008, 20:57:10 UTC, committed by Benjamin Peterson on 19 August 2008, 20:57:10 UTC
1 parent de0de88
Raw File
Tip revision: 2d735bc09876e8216bf6708bb598923e07a2ac4b authored by Benjamin Peterson on 19 August 2008, 20:57:10 UTC
allow keyword args after *args in a function call
Tip revision: 2d735bc
MyAppDelegate.h
/* MyAppDelegate */

#import <Cocoa/Cocoa.h>

@interface MyAppDelegate : NSObject
{
    BOOL	initial_action_done;
    BOOL	should_terminate;
}
- (id)init;
- (IBAction)showPreferences:(id)sender;
- (BOOL)shouldShowUI;
- (BOOL)shouldTerminate;
- (void)testFileTypeBinding;
@end
back to top