Sat, 15 Aug 2009 10:49:25 -0700 |
Atul Varma |
Changed includes from Python/Python.h to just Python.h.
|
Sun, 26 Jul 2009 15:06:19 -0700 |
Atul Varma |
Pymonkey now handles the GIL properly so that Python code can run while JS code does.
|
Mon, 06 Jul 2009 09:22:31 -0700 |
Atul Varma |
Added license blocks to all .c/.h files.
|
Mon, 06 Jul 2009 01:37:16 -0700 |
Atul Varma |
Added basic functionality for passing useful exceptions between Python and JS code.
|
Sun, 05 Jul 2009 23:55:42 -0700 |
Atul Varma |
Changed function signature of PYM_pyObjectToJsval() to be consistent w/ the rest of the API.
|
Tue, 30 Jun 2009 22:42:48 -0700 |
Atul Varma |
Changed PYM_pyObjectToJsval() to simply return an int status/error code; this way callers don't have to worry about decreasing the reference count of a Py_NONE.
|
Tue, 30 Jun 2009 21:53:45 -0700 |
Atul Varma |
Changed PYM_pyObjectToJsval() to assume the caller is in Python-space for consistency.
|
Tue, 30 Jun 2009 21:23:04 -0700 |
Atul Varma |
Added a new PYM_pyObjectToJsval() function that only supports unicode for the moment. Also, whereever we're assuming that Py_UNICODE is UCS-2, we're surrounding such code with #ifndef Py_UNICODE_WIDE.
|
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 20:40:18 -0700 |
Atul Varma |
Changed object constructor to take a context instead of a runtime.
|
Sun, 28 Jun 2009 20:19:39 -0700 |
Atul Varma |
PYM_jsvalToPyObject() can now deal with JSObjects.
|
Sun, 28 Jun 2009 17:28:57 -0700 |
Atul Varma |
factored out Runtime, Context, and utils into separate files.
|