home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Languages / python / PyObjC-0.47-MIHS / pyobjc-0.47-src / Misc / README.PyObjC < prev   
Encoding:
Text File  |  1996-10-23  |  1.7 KB  |  51 lines

  1. # -*- indented-text -*-
  2. #
  3. # This file is part of the PyObjC package.
  4. #
  5.  
  6. The ObjC package provides the glue needed to interface the Python
  7. interpreter with the Objective-C language.
  8.  
  9. My effort went in two direction: first of all, let the user use a
  10. syntax similar to the Objective-C native one: x.alloc().init() is
  11. the Python way of doing [[x alloc] init]; secondly, the module should
  12. support the GNU Objective-C runtime as well as the NeXTSTEP one.
  13. The first is there, the second... almost: it needs to be tested,
  14. since my current situation does not let me try it.
  15.  
  16. The current implementation has bugs, the major of them in the handling
  17. of methods returning big structures by value. See Misc/BUGS.PyObjC.
  18.  
  19. You can find visible user changes in Misc/NEWS.PyObjC. For more
  20. details, consult Misc/ChangeLog.PyObjC. 
  21.  
  22. For build instructions, read Misc/INSTALL.PyObjC. It contains instruction
  23. to build the manual section too.
  24.  
  25. The package comes with some examples/demos: you can find them in the
  26. Demo/ObjC directory.
  27.  
  28.  
  29. I should say "Grazie" to many persons that made this possible, but to
  30. some in particular:
  31.  
  32. Guido van Rossum <guido@CNRI.Reston.VA.US>:
  33.     Long list of motivation omitted ;-)
  34.  
  35. Thomas Breuel <tmb@best.com>:
  36.     He first inspired me with good ideas.
  37.  
  38. Ted Horst <ted_horst@il.us.swissbank.com>:
  39.     His own ObjC module and kind comments helped me a lot.
  40.  
  41. Bill Bumgarner <bbum@friday.com>:
  42.     He contribuited the standalone packaging setup, good comments and
  43.     his own implementation of the Streams and Pasteboards support. He
  44.     maintains also several Python-related packages for NeXTSTEP: see
  45.     <ftp://ftp.thoughtport.net/pub/next/lang>.
  46.  
  47. and of course to the entire ObjC-SIG community.
  48.  
  49. Copyright (C) 1996 by Lele Gaifax <lele@eclipse.it>
  50.  
  51.