JSStringProxy is a custom C-implemented python type that derives from str. It acts as a proxy for JSStrings from Spidermonkey, and behaves like a str would.
More...
#include <jsapi.h>
#include <Python.h>
#include <unordered_set>
Go to the source code of this file.
|
| PyDoc_STRVAR (stringproxy_deepcopy__doc__, "__deepcopy__($self, memo, /)\n" "--\n" "\n") |
|
| PyDoc_STRVAR (stringproxy_copy__doc__, "__copy__($self, /)\n" "--\n" "\n") |
|
JSStringProxy is a custom C-implemented python type that derives from str. It acts as a proxy for JSStrings from Spidermonkey, and behaves like a str would.
- Author
- Caleb Aikens (caleb.nosp@m.@dis.nosp@m.tribu.nosp@m.tive.nosp@m..netw.nosp@m.ork)
- Date
- 2024-01-03
- Copyright
- Copyright (c) 2024 Distributive Corp.
◆ PyDoc_STRVAR() [1/2]
PyDoc_STRVAR |
( |
stringproxy_copy__doc__ |
, |
|
|
"__copy__($self, /)\n" "--\n" "\n" |
|
|
) |
| |
◆ PyDoc_STRVAR() [2/2]
PyDoc_STRVAR |
( |
stringproxy_deepcopy__doc__ |
, |
|
|
"__deepcopy__($self, memo, /)\n" "--\n" "\n" |
|
|
) |
| |
◆ jsStringProxies
◆ JSStringProxyType
PyTypeObject JSStringProxyType |
|
extern |
Struct for the JSStringProxyType, used by all JSStringProxy objects.