# HG changeset patch # User Atul Varma # Date 1251800553 25200 # Node ID 5cfb47c9e9161ab0b3a585a98bb4545f25ffff58 # Parent 94c80a0e7644a05b07158f331c575f79a2dd2092 Minor line wrap and spacing fixes. diff -r 94c80a0e7644 -r 5cfb47c9e916 docs/src/index.txt --- a/docs/src/index.txt Tue Sep 01 03:15:09 2009 -0700 +++ b/docs/src/index.txt Tue Sep 01 03:22:33 2009 -0700 @@ -100,7 +100,8 @@ `_. For the time being, however, such cycles can be manually broken via -:meth:`pydermonkey.Context.clear_object_private()` on valid objects and functions. +:meth:`pydermonkey.Context.clear_object_private()` on valid objects +and functions. Indices and Tables ================== diff -r 94c80a0e7644 -r 5cfb47c9e916 src/context.cpp --- a/src/context.cpp Tue Sep 01 03:15:09 2009 -0700 +++ b/src/context.cpp Tue Sep 01 03:22:33 2009 -0700 @@ -70,8 +70,8 @@ return JSTRAP_CONTINUE; } -// This is the default JSOperationCallback for pydermonkey-owned JS contexts, -// when they've defined one in Python. +// This is the default JSOperationCallback for pydermonkey-owned JS +// contexts, when they've defined one in Python. static JSBool PYM_operationCallback(JSContext *cx) { @@ -804,7 +804,7 @@ PyTypeObject PYM_JSContextType = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "pydermonkey.Context", /*tp_name*/ + "pydermonkey.Context", /*tp_name*/ sizeof(PYM_JSContextObject), /*tp_basicsize*/ 0, /*tp_itemsize*/ /*tp_dealloc*/ diff -r 94c80a0e7644 -r 5cfb47c9e916 src/function.cpp --- a/src/function.cpp Tue Sep 01 03:15:09 2009 -0700 +++ b/src/function.cpp Tue Sep 01 03:22:33 2009 -0700 @@ -152,7 +152,7 @@ PyTypeObject PYM_JSFunctionType = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "pydermonkey.Function", /*tp_name*/ + "pydermonkey.Function", /*tp_name*/ sizeof(PYM_JSFunction), /*tp_basicsize*/ 0, /*tp_itemsize*/ /*tp_dealloc*/ diff -r 94c80a0e7644 -r 5cfb47c9e916 src/object.cpp --- a/src/object.cpp Tue Sep 01 03:15:09 2009 -0700 +++ b/src/object.cpp Tue Sep 01 03:22:33 2009 -0700 @@ -137,7 +137,7 @@ PyTypeObject PYM_JSObjectType = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "pydermonkey.Object", /*tp_name*/ + "pydermonkey.Object", /*tp_name*/ sizeof(PYM_JSObject), /*tp_basicsize*/ 0, /*tp_itemsize*/ /*tp_dealloc*/ diff -r 94c80a0e7644 -r 5cfb47c9e916 src/runtime.cpp --- a/src/runtime.cpp Tue Sep 01 03:15:09 2009 -0700 +++ b/src/runtime.cpp Tue Sep 01 03:22:33 2009 -0700 @@ -151,7 +151,7 @@ PyTypeObject PYM_JSRuntimeType = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "pydermonkey.Runtime", /*tp_name*/ + "pydermonkey.Runtime", /*tp_name*/ sizeof(PYM_JSRuntimeObject), /*tp_basicsize*/ 0, /*tp_itemsize*/ /*tp_dealloc*/ diff -r 94c80a0e7644 -r 5cfb47c9e916 src/script.cpp --- a/src/script.cpp Tue Sep 01 03:15:09 2009 -0700 +++ b/src/script.cpp Tue Sep 01 03:22:33 2009 -0700 @@ -90,7 +90,7 @@ PyTypeObject PYM_JSScriptType = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "pydermonkey.Script", /*tp_name*/ + "pydermonkey.Script", /*tp_name*/ sizeof(PYM_JSScript), /*tp_basicsize*/ 0, /*tp_itemsize*/ /*tp_dealloc*/ diff -r 94c80a0e7644 -r 5cfb47c9e916 src/undefined.cpp --- a/src/undefined.cpp Tue Sep 01 03:15:09 2009 -0700 +++ b/src/undefined.cpp Tue Sep 01 03:22:33 2009 -0700 @@ -53,7 +53,7 @@ PyTypeObject PYM_undefinedType = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "pydermonkey.undefined", /*tp_name*/ + "pydermonkey.undefined", /*tp_name*/ sizeof(PYM_undefinedObject), /*tp_basicsize*/ 0, /*tp_itemsize*/ 0, /*tp_dealloc*/