log runtime.h @ 114:87147faa031a

age author description
Sat, 15 Aug 2009 10:49:25 -0700 Atul Varma Changed includes from Python/Python.h to just Python.h.
Sun, 09 Aug 2009 22:54:15 -0700 Atul Varma JS runtime mismatches are now checked for and enforced so they won't cause segfaults.
Sun, 09 Aug 2009 16:17:25 -0700 Atul Varma Thread safety exceptions are now properly raised by all relevant pymonkey functions.
Sat, 25 Jul 2009 22:51:20 -0700 Atul Varma Fixed a bug whereby some objects wouldn't be finalized when a runtime was destroyed.
Mon, 06 Jul 2009 09:22:31 -0700 Atul Varma Added license blocks to all .c/.h files.
Sun, 28 Jun 2009 22:58:04 -0700 Atul Varma The hashtable of reflected JS objects now uses a JS_DHashTable instead of a PyDict. Also removed weakref-ability of the JSObject class since it didn't make any sense to use Python's weakref support for JSObjects.
Sun, 28 Jun 2009 21:49:07 -0700 Atul Varma JS objects reflected into Python are now identity-preserving, though the implementation for this is pretty bad right now.
Sun, 28 Jun 2009 17:28:57 -0700 Atul Varma factored out Runtime, Context, and utils into separate files.