tmsgpack 0.3.14__tar.gz → 0.3.15__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tmsgpack-0.3.14/tmsgpack.egg-info → tmsgpack-0.3.15}/PKG-INFO +1 -1
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/pyproject.toml +1 -1
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/core.c +9 -9
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/core.pyx +1 -1
- {tmsgpack-0.3.14 → tmsgpack-0.3.15/tmsgpack.egg-info}/PKG-INFO +1 -1
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/MANIFEST.in +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/README.md +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/build_pyx.py +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/setup.cfg +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/setup.py +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tests/test_build_pyx.py +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tests/test_codec.py +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tests/test_codec_custom.py +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tests/test_round_trip.py +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/__init__.py +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/api.py +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/codec.py +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/codec_custom.py +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/src-parts/01-imports +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/src-parts/02-constants +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/src-parts/03-encode-fn +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/src-parts/04-decode-fn +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/src-parts/05-encode-buffer +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/src-parts/06-decode-buffer +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/src-parts/07-encode-buffer-slow +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/src-parts/08-decode-buffer-slow +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack/src-parts/09-exceptions +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack.egg-info/SOURCES.txt +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack.egg-info/dependency_links.txt +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack.egg-info/requires.txt +0 -0
- {tmsgpack-0.3.14 → tmsgpack-0.3.15}/tmsgpack.egg-info/top_level.txt +0 -0
|
@@ -3065,7 +3065,7 @@ static __pyx_mstatetype * const __pyx_mstate_global = &__pyx_mstate_global_stati
|
|
|
3065
3065
|
#endif
|
|
3066
3066
|
/* #### Code section: constant_name_defines ### */
|
|
3067
3067
|
#define __pyx_kp_u_ __pyx_string_tab[0]
|
|
3068
|
-
#define
|
|
3068
|
+
#define __pyx_kp_u_0_3_15 __pyx_string_tab[1]
|
|
3069
3069
|
#define __pyx_kp_u_B __pyx_string_tab[2]
|
|
3070
3070
|
#define __pyx_kp_u_H __pyx_string_tab[3]
|
|
3071
3071
|
#define __pyx_kp_u_I __pyx_string_tab[4]
|
|
@@ -24659,11 +24659,11 @@ __Pyx_RefNannySetupContext("PyInit_core", 0);
|
|
|
24659
24659
|
/* "tmsgpack/core.pyx":4
|
|
24660
24660
|
* # DON'T EDIT THIS FILE. EDIT THE SOURCES, INSTEAD: tmsgpack/src-parts/[inserted by cython to avoid comment start]*
|
|
24661
24661
|
*
|
|
24662
|
-
* __version__ = "0.3.
|
|
24662
|
+
* __version__ = "0.3.15" # <<<<<<<<<<<<<<
|
|
24663
24663
|
*
|
|
24664
24664
|
* from libc.stdint cimport int8_t, int16_t, int32_t, int64_t
|
|
24665
24665
|
*/
|
|
24666
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_version, __pyx_mstate_global->
|
|
24666
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_version, __pyx_mstate_global->__pyx_kp_u_0_3_15) < (0)) __PYX_ERR(0, 4, __pyx_L1_error)
|
|
24667
24667
|
|
|
24668
24668
|
/* "tmsgpack/core.pyx":13
|
|
24669
24669
|
* ctypedef double float64_t
|
|
@@ -26244,23 +26244,23 @@ static int __Pyx_InitConstants(__pyx_mstatetype *__pyx_mstate) {
|
|
|
26244
26244
|
{
|
|
26245
26245
|
const struct { const unsigned int length: 9; } index[] = {{1},{6},{2},{2},{2},{23},{21},{179},{27},{2},{18},{8},{2},{2},{16},{18},{7},{16},{18},{6},{2},{2},{2},{9},{50},{11},{2},{14},{26},{26},{26},{24},{17},{16},{34},{36},{25},{26},{24},{24},{24},{24},{23},{25},{25},{25},{25},{16},{34},{36},{25},{25},{26},{24},{24},{24},{24},{23},{25},{25},{25},{25},{12},{9},{27},{29},{20},{19},{19},{18},{20},{12},{9},{27},{29},{19},{18},{22},{17},{19},{8},{20},{16},{34},{36},{26},{24},{24},{24},{24},{25},{25},{25},{25},{16},{34},{36},{26},{24},{24},{24},{24},{25},{25},{25},{25},{13},{12},{8},{18},{9},{18},{5},{4},{15},{17},{16},{8},{5},{7},{4},{14},{12},{3},{6},{8},{12},{13},{5},{6},{8},{13},{10},{15},{3},{1},{8},{7},{4},{3},{11},{9},{8},{12},{7},{9},{14},{12},{11},{10},{31},{31},{31},{31},{14},{12},{8},{9},{7},{7},{7},{7},{6},{8},{8},{8},{8},{10},{17},{13},{4},{12},{10},{12},{19},{4},{9},{5},{5},{6},{3},{10},{9},{9},{8},{10},{8},{13},{5},{6},{6},{12},{5},{6},{11},{8},{9},{7},{7},{7},{7},{6},{8},{8},{8},{8},{21},{17},{24},{43},{43},{80},{61},{24},{19},{24},{24},{24},{24},{264},{33},{30},{57},{11},{19},{21},{24},{19},{19},{13},{25},{9},{97},{105},{15},{11},{58},{96}};
|
|
26246
26246
|
#if (CYTHON_COMPRESS_STRINGS) == 3 && __PYX_LIMITED_VERSION_HEX >= 0x030e0000 /* compression: zstd (1738 bytes) */
|
|
26247
|
-
const char* const cstring = "(\265/\375`#\021\0056\000\372E\240\016E\360\222\250\r\314\300\354\004[\0237;6]\326\235B\243\301t\246H\232\270{\264\010\373\233+\233D\226\337FkI\261\235\\\245\204\2124Q\247a2\014 \323\246%S\023\330\211F\244\253\200\236'\010x\221\241&\002\306\000\300\000\335\0004\364\022\232\247\352\356\276\225$\246\232\007b\311\362\370\244,\234!\314OM\013\225B5j\232\204*\266R\223k\325e\024\202*(('&\033\240\237\252\274\237-t\315N\256\205\307\361&Y|E/\325`\311\251\322X-}\371\266VY\002\3371\254\376\362Xr\320>\324\334+\314\266\203\246\026\350\301\316u\017+\375\215\346\0224Y\210\035c\271\315R\306\020\377\364\033~\241V%\004\245\200L\\\254\270\200\365\372Oz\037\303n\363\227\327Kts\rb\n\253}\371\256\004|\371\362\320\345K\r~\346*\205/\247l\253\303\267,\240\212\347M\256`\225\276Y[\202\233<\371\266\265\264\204P\204H\
|
|
26247
|
+
const char* const cstring = "(\265/\375`#\021\0056\000\372E\240\016E\360\222\250\r\314\300\354\004[\0237;6]\326\235B\243\301t\246H\232\270{\264\010\373\233+\233D\226\337FkI\261\235\\\245\204\2124Q\247a2\014 \323\246%S\023\330\211F\244\253\200\236'\010x\221\241&\002\306\000\300\000\335\0004\364\022\232\247\352\356\276\225$\246\232\007b\311\362\370\244,\234!\314OM\013\225B5j\232\204*\266R\223k\325e\024\202*(('&\033\240\237\252\274\237-t\315N\256\205\307\361&Y|E/\325`\311\251\322X-}\371\266VY\002\3371\254\376\362Xr\320>\324\334+\314\266\203\246\026\350\301\316u\017+\375\215\346\0224Y\210\035c\271\315R\306\020\377\364\033~\241V%\004\245\200L\\\254\270\200\365\372Oz\037\303n\363\227\327Kts\rb\n\253}\371\256\004|\371\362\320\345K\r~\346*\205/\247l\253\303\267,\240\212\347M\256`\225\276Y[\202\233<\371\266\265\264\204P\204H\204P>\036\016\236\r#\002[\326\254|\217\261R\231\332\376\351\206S\3764bz\212\263fS\214\232G\217qZ-\306\224\275\246\030M\271\244\315\222Oy?n\363\272v-\366J?\333k\247\307\322Y;,c\274\366\336\225\025$\223\204a\362\027\017\343,\242\t\230\316E\214\316u$\257\226\305}\237\325\263\3523\267q\371a\276\304eaYW@'\031t\362\371JS^\332\315\244\335\177\3071N\317u\223)\223p\023\216%\t\230\216\363\370\265S\003jJ\356\204S?\251\366\230n\360Z\323\266\311\t\243\243\344\213\360y\263\305\367qH\205\375\273R\214O+\235\233\244+z\337\244\332\2325\030\243\317\254\371\215\021\376\226%\264U\3034$\317\202\205]@E\262\ttV6H\346i<\224\375\021\313\\\032\227\n\370\371:\237\007\3177K\264\037hdT\257\020\217\017\305KQY\320\231\3164!\032\001HL\344\211x\035\366\223\350\025\215\2003#\372>_j\017\330\235\310\333x\252\355!\275\n^\346\021\330(*-u\212\026\010'\246q\251>\023\217e\177\000\265>\262'=\326\226\033\204\376V\010'\366\331\01681Q\214\350\223\341\211\274\017\273\263G\264>63\232\230\216\313\303w\302\373x\027v\266E\264@\004\000\340\354\320\304P|}\3458k\\\256\331\343\037#\356\360\317|q\347\250\370\327\342h\332`|\223YU\222\277\362\r5)W3\327\375o\031\373Me\214\232\3762\257\344\374r\226\213\221\3455%\253\323\373\325\243\275\036Y""\211\010\272\003\214\357\344K\360\241\262\257C\204\327\210\r\354\023s!\301\252\014\013\007X\307u\342A\347H\361(\210\300D6\261\027#\030J\006\304\353\303\265\001\302T[\302\312\363Rq\375'?\222\t\033\230\312\363\030y#\n4:<t\330x\235\\#\327\210\353\023\002[\260@'\030\331+ZFk\025\343\261\211I/\303f\321\037}\242\005\262\211e\232\324:0\322\030Z\00561M\314\310%r\211t\036H\206^e\233\244E:\317\217\325\331\r>\005\237&\206\352\305\207\321\267:\260\027\314\224l\215\004{5\002|]\347\313\276\022\317\245\300ViP\2665[E\006\2013\243G\272e\264W\n:\020b\231\016\034\032\035\335K\276h\270TZ\364\204\031\232B\002\0031\006\036i\237t\005\355\3222\300\231\031m\321\026\3318N\350\021\031)\003\341\245y\205\370bx'\017\255\232\311\276\201\206\250\241\241q\206fDD$\005I\n\031\016\241\014Q\2329\307\324\003\262i\256\244@\014\021\302\010!\220P\005\202\nR\036\205\264\006\244\rt\332\325\356\320U\211WA#XI\247\025\230\312k#\220-\266;}\206\214\206~u\217Qk\273[y\242\013\274\004\206WN\027\270|\212\341\360\272\202\335\375\033\302\244\377B\034\214^\366\024\370/\307z&UoiBYJ\302Q\317\325\016\241:Z\004\300J\325\360\231\002sv\331\244\t\342_\214\250\244b\014\330\002>^H\315\344w\275\325\207=\314\016J\265\r\032\357'\236\003\033@\365\241\247\000hn/\020\321\2027\361$ts9\336\372:\211\306\271W7\005\336\203\344\321u\312\300`\017\"Y\031\261<\247\2556\334v\010\002\333\202\036\362\232\313\342s\334\220\013d%\014i\333\004=\361\304\3263\223\311)\360{\003 \361O#d\022\245\335\232M\346y\366\0063]}d0c\312\262S\230`;$l\336\252\323\247\311\353\256/\324\200\014\210\360^\252D\004*\315\220\005\021Z\252P\023-\224-\003\330\302\306g\200;1\212\000\0056\316Z%+\370A\345\270%`4\363\225SW>\325\030\2520\206T\357in\264\351\010\271C\207|1xK\325\220\n\255\311\324\213\256\005\372\235LM\3732\000\225\365\026r.\357\273(\370\022\004\343\275T)\006\250\350 \013\027\264\374\240\246\032Q$\034\236\243c\201\004\304$\377{\254\316A&\224\305.Py[\325\234p\304]\323C\275=V\036\"\306\362\237\013\022x4\301/\035\334\306\271\311\026.\312\036\275\242\355\377\201\323\246""\004\270\r+\365]\353\315\036Z\246\277\320\027R\221\226`K\377\377Z\261'\232\0218\300\343Fu\307\351\r\274\005\220k\262\000,9\333\231\317\314\347\017D\036%\341Z,\027\007Q\236\017\005-\235\343U\241\252H\233]\326\323\375\312xp\240.\353\350\3569\333q\022\307\375\247\354\024M7+\223\335\200\354t\204x\2130\000\007X\301w\242\240\360\224\300\330\205\246>\001\004\341h\200T\370\352!i\256\230C\217#\346\344,3\003\351\264~%{\234/\250\213\233\331\361\232\004^\324>\001K\303\247\361\353e\250\270\300\262\365\354s+\375\310\364X;\273\004\262\203\001\225\356\346x,\374\026\203o_5*\017(\254\227D\031\237V\372\025tDH\3072\202}U\365\005\240\224h\233Oek\017+^\221r\2662\3310\276\237\211G\023\312\013\373\353\212K\262\315H\002<\234\264\213\321\\y\256|m\336)]3\335R\243\006\006\352fI\343x\374\034\364\210\307A\324\320\300\255-@<\306\306\373\3018oO~\352\300\216Lr\031n^0\235\002k\014\277\275d@\206f\254\213\001\351\307@\316\203\346\351\272\252\244\305\254\324,\306`3\250x\027\026\0229\367\202R*#\374'Z\r5";
|
|
26248
26248
|
PyObject *data = __Pyx_DecompressString(cstring, 1738, 3);
|
|
26249
26249
|
if (unlikely(!data)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26250
26250
|
const char* const bytes = __Pyx_PyBytes_AsString(data);
|
|
26251
26251
|
#if !CYTHON_ASSUME_SAFE_MACROS
|
|
26252
26252
|
if (likely(bytes)); else { Py_DECREF(data); __PYX_ERR(0, 1, __pyx_L1_error) }
|
|
26253
26253
|
#endif
|
|
26254
|
-
#elif (CYTHON_COMPRESS_STRINGS) == 2 /* compression: bz2 (
|
|
26255
|
-
const char* const cstring = "BZh91AY&
|
|
26256
|
-
PyObject *data = __Pyx_DecompressString(cstring,
|
|
26254
|
+
#elif (CYTHON_COMPRESS_STRINGS) == 2 /* compression: bz2 (1856 bytes) */
|
|
26255
|
+
const char* const cstring = "BZh91AY&SY\315/\306j\000\001[\177\377\357\377\377\277\376\257\377\377\277\367\377\370\277\377\377\364@@@@@@@@@@@@@\000@\000`\007n\371\310(\254\335\335\333X\266jkJ\243\200\330$\224MMA\352d\007\250\362\232=\352L&h\240h2z\236SA\241\20444\320z\236\243F\215\0324=OP{A4\202I\001\006\211\246\247\242eOjj1\224\001\351\0000\200\036\240\000\000\000\000h\036\223j\017$ \300\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\rO\365T\010\232\200hi\240\000\000\000\r\r\000\000\000\000\000\000\000\000\0100\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\002SD\021\014\211\246#\021\031\0324\311\014\232\r\032\032\r\000\001\240\000\003 \000\321\240\004u\256\203\005\333\255\025\341_\202\"\371\030\301\034\202\001\346Q\367R\304\311\261<\320#\035H8\224\231\032\254\277\202\177\251\205)\201\002\024\205)\t\021\021(\004\020\231!\212\326\307w\3102\213\346\306\314\302b\030\234\230\036E.\010\000\231W\030\322]D\363\210.\"\221'\007$\256uSS\004[ZW\025dB\000\362\262\023x=\316\007E\"\301\352\214\261b5\375\345\276i\307\305\323\177\027\361\027\371\217\352\303\2561\306\347V\377\033\263\207\352\037\275*?\252\353S\236\020\265\365rL\256u=\304\224\271\010\216qfp\334\327\257q\272\220\303IB\324:5&\351&*)Y\332\352\3011\177\310\363\3739&f\364\347\237A\230@\204\337\276\231m\2456\036`\303\260\201\215\232c\367W+P6\326\203#\207L3\276q\001\351T\031\366\355\346{\024\2405\214a\303\353u\372\362.&Q\301\341\027s\255\030&J`\366k\332,m\352\r\307O\177\345\321g\353\373q\313\372\305L\275e\310\226T\030\362\204lK\301\004&\222\031\2457>\r\376\201\243sV\275qIJ\\\272\315\025+Z\326)\010B\022\305!\006X\271\002\203+\"Y\260\264\340\356f$\2472s\204\315\373\026sf\347\034\342\221\031\266Jv'10L?\013\361W\267\315\354D\316\034[\234\325vM\327h\013\3446e\367\347\302j\335\335\335\210\210\357'DR\224\244DDJ\347\311\237h\311s1\216\371F\322%\004\3356\303K(b\006\265\t\006]\307hBL\013\242\002@\354\034\307\335\2009\244\332\033S\346\323\340|j\252\\\274\2219 \342\320kt\356\212\375\221\234\005k\337G\334J\371a\212F'\234\247\202\265\220""\005 N\347I\353T\222rJ!$\222@\000+\266\311}]+Z\246A)&\022\310\244\226\253\252\333\325[+\252\273\256\230,\227\225]p\000\000\026IzZ]Z\271+\032W\256\351\210\346\342\020\256zK\375\360\362\016\217W\224\013\227}\2153g\352a~\263T|\024\222\202\302\223\"X\245p\022$3\314K\034P\232\222rO\211\361\313\300\371\014\231g2\250J\225\342|\272\035\014!r5\346\220R\3234\360\214a{D\3410TF\371]\262\313\200\211)\022R\000\001(\224#c\344\317``\245$\315k\260{4D\261r+d5\250\010\260\225\364\325\315\2150\313\024\002-\312\315W=\317\215\2320V\020\304Y\250\327\265~\035\354\367\354\030\342\224\223\263\014\023\312\222\022@ \000\005\000\010\001\237\252\245\227lL#3\362\224Z\317\202\261J\023\322\325\232I$\222I;>\022\330l)\214\n\023\225\273P\315\372!\003\212\271ti\260.}\301\236\023\020\321y\327\255@\204e\014\n>\312\313\"\333w\276\274*\037\202B\\\312h\204M\016\026\313\235\203\001kH\322\306\333\001T&\323\277\371\246\256q\270x\0325Z8m\321\t\264$$\311\t>\321m\203+\236/F{\001\034\206.\356\0036\366f\326\2005lp\233a\264\333\350\326\205nKtf\301\242F\013\371,K\330@\000\000\000\002\"(\214\374\247II\333-\026\215\267N\327\330\027\244\253rZ7\240=f\334\0147m\206\313\202\0035\n\250\263\263c@\330\331\t\256[N\002\267\320\256\013bvbX\221\223\352{\320\235jC\251\025\310\260A\323\357\206`{WmYi\260\213\325\020\2152\302\215#\331\211\023@'j\317&!\257\001Y\245\000\216m\014\3229\3660\225g;\262\334\253XU\206 \326a\265\002[j,\251v\226\317L\024\355\323F\000\240'7l\227\003\254KiaWM\323\007'\\\316\357\235\317}\365\302\354Cs\336r\016\240\245\350\016r\223g2#\01305D\024\251&\252\224\245+\305\257\021\207\206\231\204\332\2462c&2\304\305KR\324N\343\234\2700\001\244\277\227\031\003\233\300_i#\217,B\304\344b\201\343+\200\220\362\003\227p\364\222\311\024\213\022/r\014\315z\343\275\324\206\375\305\003z\211\356eI\225L\t\214\\\247i\252\264\210\340V\327y\3662\360\342\331\205c\234\300`\252I\222H\022H\245\027M\016\256\264\213Cg\003\263[\320\217\317r\270\335\304\356\356\254\313&\306\2044\330\254\025/\3133$T\312,\306\3209%\206\004%|\332i\364D\033:\353&""%\217\033\002O\t^\252XH;@\021\010\343a\270\030\343\331\362-:#\0276\320\2401\320\017\025!)\272\320\024\262\255\233\237\214C\231\244\256\031\303y\354\220\214\247!\245c\0244:]\311L\341\\\365\260\302n\332\214h\342G\0228\221\304\244\215H\232&\211\334wC_\204`\337B\2750#_\215~O\022\241In\000rw\206mV\246\r\242\373\3720\215=S\262\264\257_\177\264s\024\235\351\345JRSy\306\355+C\333c\327e-f`\017a\257\230j\223\231\0142R\331\341\255\031\014,wV\031\255\373\222;\260\177J\013y\204g\027\311F\317\334\271\247\264;\223\371YQ%\001\266\017>~\221\313\235q\205\270\232;<\310\241{4\330&\343;F\035\351\307\342\331\362k\275\r\"\216\301r\226e.\230\300\333qB\337\316\263\305\022\240\305#s\n\364\"\250\374a\252_\025\333C\177\212u+\021\252E\363\306\0245\030< \365xi\323\253\365 O\010u\022\225~\2752\366\023CTj\366\362\352g\276\024\346e\321\256O\016\373`\031\323\261<\214\371\266\033\310\347:\323\363\346\326\326\302\220\363\3640\314\332\037A\251a\345?MW\312\n\326rs\254\351l\216\230\\\324\007f\227[$Y\001/#C\237\017\033\234\021/\030n\360tctC\022\356x\244\254xxz\220\377\215Lz\346\3036\272\006\232o\364?\027>\206\272\374\255\\\0340\234\202\017\"\303\313\232\023\223\271\004\225\251!\340\220PyA1\330\210v!P\207\244&hr\203\273\312\203I\017&\377\305\334\221N\024$3K\361\232\200";
|
|
26256
|
+
PyObject *data = __Pyx_DecompressString(cstring, 1856, 2);
|
|
26257
26257
|
if (unlikely(!data)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26258
26258
|
const char* const bytes = __Pyx_PyBytes_AsString(data);
|
|
26259
26259
|
#if !CYTHON_ASSUME_SAFE_MACROS
|
|
26260
26260
|
if (likely(bytes)); else { Py_DECREF(data); __PYX_ERR(0, 1, __pyx_L1_error) }
|
|
26261
26261
|
#endif
|
|
26262
26262
|
#elif (CYTHON_COMPRESS_STRINGS) != 0 /* compression: zlib (1749 bytes) */
|
|
26263
|
-
const char* const cstring = "x\332\245WKs\033\305\026F\205\300&6\004\305y\024\217p\333@*EADd\344<\214 \245\004'\327\024\204(8\204\307\242\2535\323\222\007\217{\244\231n\331\242Xx\251\345,{9\313Yj\251\245\227Yz\251\245\177\302\375\t\367t\317C\257\031\010E\252F\356\376\316\351\363>\247;\367n\226\277(
|
|
26263
|
+
const char* const cstring = "x\332\245WKs\033\305\026F\205\300&6\004\305y\024\217p\333@*EADd\344<\214 \245\004'\327\024\204(8\204\307\242\2535\323\222\007\217{\244\231n\331\242Xx\251\345,{9\313Yj\251\245\227Yz\251\245\177\302\375\t\367t\317C\257\031\010E\252F\356\376\316\351\363>\247;\367n\226\277(W6k\367k\377\255\355\354\3306m\023\0335\035\307\246\204\241\036\261\005\335B\217\035\216(sD{\017Y\254#82\t'\000R\304\367\010G\017\372|\317a\310\362\220Im\253I]\302\251\335G\036w-\203SW11\364d\373\311\215\352\235*\"\314D.\375\235\032\334C\236h\0326\361<\352!\247\205\232\302\262\271\305\020\357w\250WF;-\324w\004b\224\232\210;\250\003|\323\007\370\036e\310\243\\-\320u\302\230\303\t\267\034\206\341\270\305\332\327\221i\271\240\304\352Qu\372!\261=Z\376\241c8&E\016x\000\372\\\302\332\024\335\274\261\261\271\271\205j\215g\314\244-\213\2016G\263m!b\232\030\304\322Z\263f\232\006?B\302S\266\034Z\006-\353\375!\361\0200h\274lZ\036i\332\224\3161\322\005F\312\024_\333\250\355\325,\313\213v&s x-\"l\2160v\251)\014\21212\205\266\2369\354\006\004\263gAj06,fq\254,C\315>\247\036\030\337\255\251`\263\266\347\010\327\240_s\262O\261\246!\203@JM\324r\\d[\036\327\024\023\3222M\320\234\232\242X\262) \177A\326\201\327\356\020c\377s\303qi\271\323?\272O<\372\rU\261\273/Z-\352\316\357\313\251g\206\256\030\21438 \245\240\221\377\005\217kF\276e\021Z\266C\370\235,\212\305x%\007\337\310\301\2539x\246|\010P\026,\362\364\212<\305\"O\263HTo\263\331\030O\357\263c<\307\221\031\343\031\036\342Mb<C8t\363\t\223\340\317S\222 d\340\0339x5\007\317\224\037\007\177\036\026yzE\236b\221\247Y\007\177:#\321\372\001?J\027\213\241\237&-\304|B\234\264\353\034\246\032u\016R\2157\007\201\363s\010\027\035{\306\203h\r\364t\261h\3544i\301\330\t\021\306\177d\353,\244L\235E<\332\025\224\031t\016\345\356,\240\257\230\307\016\243\2730\3661~\322?\202\357\033\220\206\037\323#\376\224\266~$\255\231V\230\337/z\222\301\261\340\320\002O:<\262(\252\216r\360\215\034\274\232\203g\312\027y\nD\236\006\221\247B$:\246\363?\277\317\216\331\337M\211\005\236\264\347\263(\211KY=""\237\203Ws\360L\371\"O\201\310\323 \362T\350\230\355~\037]g\333\256\353\270\030\307/\n(\311d\026\022\257\317\014\313)\303u\007/\010x)x\nv\\\223\272\206\r[\260\024s\227\030\264\tR\224\002\303l\212\226\372\260\356J]\351\246N\027n\271\316A$u\032P\315\215u+\341\344\217\351\030\030S\220\241>\2346\014\325\036$k\023:\005~1n\t\006\354\030\267\223\324aly85\330\342\364\300\263-\316m\240\034\020\260\027\376\035PN\364\243Jo\034S(\"\254\\\007S\006\257\n\n\004\270\351\201\227\221\003Mb\364\020c\025\252\216\323\201\205K;\304\005B:\031\222y0=\005\342\336O\035\000v\350tc\217\032\373\2368\210v.\365\340\375\023\255c\363\325\222\353\301\240V\202u,c\037\354\233\277\0363\310\3239\236#\317\267M\006y\361t\217\253w\232r\277+\210\035\205\"y\211\244\263#\036\025\361d\210\007A\334\367\321\033!i\366\244\267\223VN:w\362\370[h\321\024\240G\2529\355\226n\3218+\260\212\337\217S\215\2133\232\330s\\\256>\274O\373\036\220\334\210\016\246\tx\222\367\275\311e\224^A\351\305\223\\7\223K\006c\305\010\277\361[P5\007\325\031\203p\302^t\340\277\n\024\236\275\251!:\373\372\007\352\252G]O\275\331q\362\254H'J<@\342y\021\217\207x\032D\027~2\002\222\216O\032<\351\347\343\302\377\226_ymu\360\265,\311O\202J\360(\274=\\?.\234\025W\006\367\344\272\274\033\324\203\347a\375\270>^~OV\306\313\347\007\334\377R\022y\030\220@D\370\312\240\n\340]\3710\270\021v\207\205\361\362\352\340[\237\370\335\210yS\276\021\224\202\217\003\3622\254K\262\033\024\203Tj_\276.\017\302JXO\031\317\226\337\366\365\261m\377\022\354\271\274\025\254\005\365\361\352\333\376y8Z\230Z\224\374\222\177-\222\334\375\007\362\356\004\233\341\022\330v~\324=)\244\207\337\227\365L\327#)\207\222\006\267\303\365\260\242 \004\016|7,\014Kc\020\275\"7\203BPZ\300W\3456\004e}\001\177C^\002\005\335\005\374\234\274\246\274R\370\265`7,\235M\002\247\374\352\372K`D;\370)\374jT\030]=!'\340\330E\377Q\224\260?\344\232\254\313\306\331\362\233\203g\376\307~[\356\006\357(k\307o^\370W\333\217\374\237_~\373\241\277\023o\267\206\277\214\310\250\377\242\220\005\377\361\2424\276\272>""\013\234-_\006W{\262\241\342\275\3437|(\245\263\345\253p\256\244\220\357dA\226\242\354T\375\256<\227\324\332U\371,\270\036\226\302\365I\346\372\341\253*\373\021\365\327\300\323\306MJ\341\022\3106\345u%6\326x\246+\343\212|\013R\336\013\033\352`L9\216\013\342.\204\366\251.\211\3564\364\023\224Q!\274\034j\360]\271\236Y=\323\320a\250\275\232@\2062=\342\022~\335\337\225\245h\323\363\237k\371\325\240\017\325\2616\254\017\033\307\205q\361\334\340S\277\021\365\362[\203]\2774.\256\016\036\371\025\377\241\374, \343\342\322qo\360\334\337\226\027U\024/\370`\317\025\345\361\025]\361P\273\212C\365\312\351\371\312\360\342\2601l\217~{\261\364\0028f\220\302D\301e\335{\027\203\306\313+\332\014\226\202\356K*:-~\010\311\273\024\222\220\017\267F\332\3032lz\312\331\263\342\177d\367\024\335\034\256\214\276<\331?m<\035\027\327N\327>\n\356\350\316\006\371\177\372\267U\3047\206\353\247_<<a\247\273\317\3060\315*\247\305{#P\375\001t\353\255\260\244\026\373\341\205p#\3741\352\262\225\301-\377\003\325eS\315\225]\021\017TF\306\253\220V\010A)]\374\037\325s\031\016";
|
|
26264
26264
|
PyObject *data = __Pyx_DecompressString(cstring, 1749, 1);
|
|
26265
26265
|
if (unlikely(!data)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26266
26266
|
const char* const bytes = __Pyx_PyBytes_AsString(data);
|
|
@@ -26268,7 +26268,7 @@ const char* const cstring = "x\332\245WKs\033\305\026F\205\300&6\004\305y\024\21
|
|
|
26268
26268
|
if (likely(bytes)); else { Py_DECREF(data); __PYX_ERR(0, 1, __pyx_L1_error) }
|
|
26269
26269
|
#endif
|
|
26270
26270
|
#else /* compression: none (4643 bytes) */
|
|
26271
|
-
const char* const bytes = "?0.3.
|
|
26271
|
+
const char* const bytes = "?0.3.15<B<H<IIllegal boolean value: Not enough input dataNote that Cython is deliberately stricter than PEP-484 and rejects subclasses of builtin types. If you need to pass subclasses then set the 'annotation_typing' directive to False.Opcode out of range 0-255: <QUndefined opcode: add_note<b<ddctx used twice.dctx was not used.disableectx used twice.ectx was not used.enablegc<h<iisenabledno default __reduce__ due to non-trivial __cinit__not bytes: <q<stringsource>take_bytes called for listtake_dict called for bytestake_list called for bytestake_str called for listtmsgpack/core.pyxBaseDecodeBufferBaseDecodeBuffer.__reduce_cython__BaseDecodeBuffer.__setstate_cython__BaseDecodeBuffer.rd_bytesBaseDecodeBuffer.rd_float8BaseDecodeBuffer.rd_int1BaseDecodeBuffer.rd_int2BaseDecodeBuffer.rd_int4BaseDecodeBuffer.rd_int8BaseDecodeBuffer.rd_strBaseDecodeBuffer.rd_uint1BaseDecodeBuffer.rd_uint2BaseDecodeBuffer.rd_uint4BaseDecodeBuffer.rd_uint8BaseEncodeBufferBaseEncodeBuffer.__reduce_cython__BaseEncodeBuffer.__setstate_cython__BaseEncodeBuffer.as_bytesBaseEncodeBuffer.wr_bytesBaseEncodeBuffer.wr_float8BaseEncodeBuffer.wr_int1BaseEncodeBuffer.wr_int2BaseEncodeBuffer.wr_int4BaseEncodeBuffer.wr_int8BaseEncodeBuffer.wr_strBaseEncodeBuffer.wr_uint1BaseEncodeBuffer.wr_uint2BaseEncodeBuffer.wr_uint4BaseEncodeBuffer.wr_uint8DecodeBufferDecodeCtxDecodeCtx.__reduce_cython__DecodeCtx.__setstate_cython__DecodeCtx.take_bytesDecodeCtx.take_dictDecodeCtx.take_listDecodeCtx.take_strDecodeCtx.take_tupleEncodeBufferEncodeCtxEncodeCtx.__reduce_cython__EncodeCtx.__setstate_cython__EncodeCtx.put_bytesEncodeCtx.put_dictEncodeCtx.put_sequenceEncodeCtx.put_strEncodeCtx.put_valueNoneType__Pyx_PyDict_NextRefSafeDecodeBufferSafeDecodeBuffer.__reduce_cython__SafeDecodeBuffer.__setstate_cython__SafeDecodeBuffer.rd_float8SafeDecodeBuffer.rd_int1SafeDecodeBuffer.rd_int2SafeDecodeBuffer.rd_int4SafeDecodeBuffer.rd_int8SafeDecodeBuffer.rd_uint1SafeDecodeBuffer.rd_uint2SafeDecodeBuffer.rd_uint4SafeDecodeBuffer.rd_""uint8SafeEncodeBufferSafeEncodeBuffer.__reduce_cython__SafeEncodeBuffer.__setstate_cython__SafeEncodeBuffer.wr_float8SafeEncodeBuffer.wr_int1SafeEncodeBuffer.wr_int2SafeEncodeBuffer.wr_int4SafeEncodeBuffer.wr_int8SafeEncodeBuffer.wr_uint1SafeEncodeBuffer.wr_uint2SafeEncodeBuffer.wr_uint4SafeEncodeBuffer.wr_uint8TMsgpackError__annotate__as_bytesasyncio.coroutinesbyteordercline_in_tracebackcodecdbufdbuf_take_valuedecode_from_bytesdecode_from_list__dict___dict__doc__ebufebuf_put_valueencode_valueendextend__func____getstate___is_coroutineitemslittle__main____metaclass____module____mro_entries__msgn__name____new__packpop__prepare__put_bytesput_dictput_sequenceput_strput_value__pyx_checksum__pyx_result__pyx_state__pyx_type__pyx_unpickle_BaseDecodeBuffer__pyx_unpickle_BaseEncodeBuffer__pyx_unpickle_SafeDecodeBuffer__pyx_unpickle_SafeEncodeBuffer__pyx_vtable____qualname__rd_bytesrd_float8rd_int1rd_int2rd_int4rd_int8rd_strrd_uint1rd_uint2rd_uint4rd_uint8__reduce____reduce_cython____reduce_ex__self__set_name__setdefault__setstate____setstate_cython__sortsort_keysstartstatestructsystake_bytestake_dicttake_listtake_strtake_tuple__test__tmsgpack.core_typeunpackupdateuse_setstatevaluevalues__version__wr_byteswr_float8wr_int1wr_int2wr_int4wr_int8wr_strwr_uint1wr_uint2wr_uint4wr_uint8\200\001\360\010\000\005\014\210>\230\021\230)\2401\240G\2507\260!\200\001\340\004\013\210?\230!\2309\240A\240W\250A\200A\330\010\033\2301\330\010\017\210t\220;\230a\230w\240a\240u\250A\200A\330\010\013\2104\210t\2209\230F\240-\250q\260\001\330\010\014\210J\220a\220q\330\010\017\210t\2205\230\t\240\021\240$\240a\200A\330\010\013\2104\210t\2209\230F\240-\250q\260\001\330\010\014\210J\220a\220q\330\010\017\210t\2205\230\007\230q\240\004\240A\200A\330\010\013\2104\210y\230\006\230m\2501\250A\330\010\014\210J\220a\220q\340\010\020\220\001\330\010\014\210E\220\025\220a\220t\2306\240\023\240A\330\014\020\220\017\230q\240\001\330\014\020\220\017\230q\240\001\330\014\021\220\021\220%\220q\330\010\017\210q\200A""\330\010\013\2104\210y\230\006\230m\2501\250A\330\010\014\210J\220a\220q\340\010\020\220\001\330\010\014\210E\220\025\220a\220t\2308\2405\250\007\250q\260\017\270q\300\001\330\010\017\210q\200A\330\010\034\230A\330\010\017\210t\220;\230a\230w\240a\240u\250A\200A\330\010\014\210J\220a\220w\230e\2407\250!\2501\200A\330\010 \240\004\240L\260\001\260\021\330\010\020\220\013\2305\240\001\240\021\200A\330\010 \240\004\240L\260\001\260\021\330\010\020\220\014\230E\240\021\240!\200A\330\010 \240\004\240L\260\001\260\021\330\010\020\220\t\230\025\230a\230q\200A\330\010 \240\004\240L\260\001\260\021\330\010\020\220\n\230%\230q\240\001\200A\330\010%\240T\250\021\340\010\014\210J\220a\220q\330\010\013\2104\210q\220\007\220w\230g\240V\250=\270\001\270\035\300a\300q\340\010\024\220G\2301\330\010\017\210z\230\023\230A\230Q\340\010\r\210U\220$\220g\230T\240\031\250!\2501\330\r\022\220$\220g\230T\240\031\250!\2501\330\r\022\220$\220g\230T\240\031\250!\2501\330\r\022\220$\220g\230T\240\031\250!\2501\330\r\022\220$\220g\230T\240\031\250!\2501\330\r\022\220#\220X\230T\240\031\250!\2501\330\r\022\220#\220X\230T\240\031\250!\2501\330\r\022\220#\220X\230T\240\031\250!\2501\330\r\022\220\"\220I\230T\240\031\250!\250:\260Y\270a\270y\310\001\330\r\022\220\"\220I\230T\240\031\250!\250:\260Y\270a\270z\310\021\330\035!\240\031\250!\250:\260Y\270a\270z\310\021\340\010\026\220a\220v\230Q\330\010\014\210I\220Q\220a\200A\340\010\035\230T\240\021\330\010\014\210L\230\001\230\021\330\010\017\210t\2204\220q\230\n\240$\240a\200A\330\010\035\230U\240'\250\021\250!\330\010\017\210t\220;\230a\230y\250\003\2501\250A\200A\330\010\035\230Z\240s\250!\2501\330\010\014\210J\220a\220q\340\010\025\220Q\220d\230'\240\021\330\010\026\220a\220v\230Q\340\010\014\210E\220\027\230\016\240a\240v\250Q\200A\330\010\026\220a\220v\230Q\200A\330\010\017\210t\2209\230A\230R\230w\240a\240q\200A\330\010\017\210t\2209\230A\230V\2405\250\001\250\026\250q\200A\330\010\032\230!\330\010\017\210t\220;\230a\230w\240a\240u\250A\200A""\330\010\017\210t\220;\230a\230w\240a\240w\250a\200A\340\010\017\210t\220;\230a\230w\240c\250\021\250!\200A\330\010\017\210u\220A\220T\230\021\200A\330\010\017\210v\220W\230A\230V\2404\240y\260\001\260\023\260A\260Q\200\001\330\004\n\210+\220Q\200\001\360\010\000\005\016\210T\220\021\330\004\014\210G\2201\220F\230,\240a\330\004\007\200v\210W\220E\230\024\230Q\330\010\022\220!\330\010\027\220q\340\010\027\220t\2308\2407\250!\330\004\007\200q\330\010\017\320\0171\260\024\260Q\260g\270[\310\007\310q\340\010\017\320\0171\260\024\260Q\260g\270[\310\001\200\001\360\010\000\005\016\210T\220\026\220t\2306\240\024\240Q\330\004\014\210G\2201\220F\230,\240a\330\004\007\200v\210W\220E\230\024\230Q\330\010\022\220!\330\010\027\220q\340\010\027\220t\2305\240\007\240q\330\004\007\200q\330\010\017\320\0171\260\024\260Q\260g\270[\310\007\310q\340\010\017\320\0171\260\024\260Q\260g\270[\310\001\320\004\"\240'\250\025\250a\250t\260:\270Q\200\001\330\004.\250a\250v\260Q\200\001\340\004\037\230q\320 0\260\013\270;\300k\320QR\330\004\023\320\023#\2408\2501\250A\330\004\007\200|\2207\230!\330\0102\260!\3203F\300n\320TU\330\004\013\2101\320\004?\270q\330\010\036\230e\2406\250\021\330\010\036\230k\250\022\2502\250S\260\001\260\021\330\010\013\2106\220\036\230q\240\001\340\010\014\210J\220a\220q\330\010\025\220Q\220d\230'\240\021\330\010\026\220a\220v\230Q\340\010\014\210C\210u\220A\330\014\032\230!\2306\240\021\330\014\032\230!\2306\240\021";
|
|
26272
26272
|
PyObject *data = NULL;
|
|
26273
26273
|
CYTHON_UNUSED_VAR(__Pyx_DecompressString);
|
|
26274
26274
|
#endif
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# THIS FILE IS AUTOMATICALLY CREATED BY build_pyx.py
|
|
2
2
|
# DON'T EDIT THIS FILE. EDIT THE SOURCES, INSTEAD: tmsgpack/src-parts/*
|
|
3
3
|
|
|
4
|
-
__version__ = "0.3.
|
|
4
|
+
__version__ = "0.3.15"
|
|
5
5
|
|
|
6
6
|
from libc.stdint cimport int8_t, int16_t, int32_t, int64_t
|
|
7
7
|
from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|