diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-09 00:40:58 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-09 01:07:37 +0300 |
commit | a985b4593d3f0c788c5e6ef0066bf82ae550cfb8 (patch) | |
tree | e21b447b57350f1261596c2d7cc81fdb30de722f /py/qstrdefs.h | |
parent | 3aa8ee7c9e2e9fd50ffb4b588518bd84b40fef84 (diff) |
objint: Implement int.from_bytes() class method and .to_bytes() method.
These two are apprerently the most concise and efficient way to convert
int to/from bytes in Python. The alternatives are struct and array modules,
but methods using them are more verbose in Python code and less efficient
in memory/cycles.
Diffstat (limited to 'py/qstrdefs.h')
-rw-r--r-- | py/qstrdefs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index 29eb51d0b..0c2c032f2 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -96,6 +96,7 @@ Q(eval) Q(exec) Q(filter) Q(float) +Q(from_bytes) Q(getattr) Q(globals) Q(hash) @@ -127,6 +128,7 @@ Q(sum) Q(super) Q(str) Q(sys) +Q(to_bytes) Q(tuple) Q(type) Q(value) |