tmsgpack 0.3.29__tar.gz → 0.3.30__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.
Files changed (31) hide show
  1. {tmsgpack-0.3.29/tmsgpack.egg-info → tmsgpack-0.3.30}/PKG-INFO +1 -1
  2. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/pyproject.toml +1 -1
  3. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/core.c +9 -9
  4. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/core.pyx +1 -1
  5. {tmsgpack-0.3.29 → tmsgpack-0.3.30/tmsgpack.egg-info}/PKG-INFO +1 -1
  6. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/MANIFEST.in +0 -0
  7. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/README.md +0 -0
  8. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/build_pyx.py +0 -0
  9. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/setup.cfg +0 -0
  10. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/setup.py +0 -0
  11. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tests/test_build_pyx.py +0 -0
  12. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tests/test_codec.py +0 -0
  13. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tests/test_codec_custom.py +0 -0
  14. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tests/test_round_trip.py +0 -0
  15. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/__init__.py +0 -0
  16. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/api.py +0 -0
  17. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/codec.py +0 -0
  18. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/codec_custom.py +0 -0
  19. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/src-parts/01-imports +0 -0
  20. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/src-parts/02-constants +0 -0
  21. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/src-parts/03-encode-fn +0 -0
  22. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/src-parts/04-decode-fn +0 -0
  23. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/src-parts/05-encode-buffer +0 -0
  24. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/src-parts/06-decode-buffer +0 -0
  25. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/src-parts/07-encode-buffer-slow +0 -0
  26. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/src-parts/08-decode-buffer-slow +0 -0
  27. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack/src-parts/09-exceptions +0 -0
  28. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack.egg-info/SOURCES.txt +0 -0
  29. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack.egg-info/dependency_links.txt +0 -0
  30. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack.egg-info/requires.txt +0 -0
  31. {tmsgpack-0.3.29 → tmsgpack-0.3.30}/tmsgpack.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tmsgpack
3
- Version: 0.3.29
3
+ Version: 0.3.30
4
4
  Summary: Typed MessagePack serializer (inspired by but different from msgpack)
5
5
  Author-email: Yaakov Belch <yaakov.belch@gmail.com>
6
6
  License: ISC
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "tmsgpack"
3
- version = "0.3.29"
3
+ version = "0.3.30"
4
4
  description = "Typed MessagePack serializer (inspired by but different from msgpack)"
5
5
  requires-python = ">=3.14"
6
6
  license = {text = "ISC"}
@@ -3515,7 +3515,7 @@ static __pyx_mstatetype * const __pyx_mstate_global = &__pyx_mstate_global_stati
3515
3515
  #endif
3516
3516
  /* #### Code section: constant_name_defines ### */
3517
3517
  #define __pyx_kp_u_tree_fragment __pyx_string_tab[0]
3518
- #define __pyx_kp_u_0_3_29 __pyx_string_tab[1]
3518
+ #define __pyx_kp_u_0_3_30 __pyx_string_tab[1]
3519
3519
  #define __pyx_kp_u_B __pyx_string_tab[2]
3520
3520
  #define __pyx_kp_u_H __pyx_string_tab[3]
3521
3521
  #define __pyx_kp_u_I __pyx_string_tab[4]
@@ -27280,11 +27280,11 @@ __Pyx_RefNannySetupContext("PyInit_core", 0);
27280
27280
  /* "tmsgpack/core.pyx":4
27281
27281
  * # DON'T EDIT THIS FILE. EDIT THE SOURCES, INSTEAD: tmsgpack/src-parts/[inserted by cython to avoid comment start]*
27282
27282
  *
27283
- * __version__ = "0.3.29" # <<<<<<<<<<<<<<
27283
+ * __version__ = "0.3.30" # <<<<<<<<<<<<<<
27284
27284
  *
27285
27285
  * from libc.stdint cimport int8_t, int16_t, int32_t, int64_t
27286
27286
  */
27287
- if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_version, __pyx_mstate_global->__pyx_kp_u_0_3_29) < (0)) __PYX_ERR(0, 4, __pyx_L1_error)
27287
+ if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_version, __pyx_mstate_global->__pyx_kp_u_0_3_30) < (0)) __PYX_ERR(0, 4, __pyx_L1_error)
27288
27288
 
27289
27289
  /* "tmsgpack/core.pyx":13
27290
27290
  * ctypedef double float64_t
@@ -28889,7 +28889,7 @@ static int __Pyx_InitConstants(__pyx_mstatetype *__pyx_mstate) {
28889
28889
  #define CYTHON_COMPRESS_STRINGS 90
28890
28890
  #endif
28891
28891
  #if (CYTHON_COMPRESS_STRINGS) == 3 && __PYX_LIMITED_VERSION_HEX >= 0x030e0000 /* compression: zstd (1723 bytes) */
28892
- static const char cstring[] = "(\265/\375`.\021\2155\000zH\374\016E\360\222\250\r\314\300\354\004[\0237;6]\326\235B\243\301t\246H\232\270y*\232\265\315-\211D\226\337\306F\222b\247\375J\005\004`\200\023\240)\212\002\257%\235\254\022\376D\013\330\253\0024O\020\340\232\255\033\014\315\000\307\000\347\000\236\210e\312\343\223\246p\216\252\237\232\277\255\231\246\311\310b\243\346\225n\256U\230\310\242\242\222\202\222!z\251\312\373\331F\327\354\354Xx\034s\262\204\243\350\245Z<)U\232UK_\276\255U\236\304w\034\253\307<\226]\264\0375\367\032\263\375\342\346\022=\330\273\357c\245\317\321L\212\233\215\3301\226\334$e\034\361O\267\3417jUF\320\n\010\245EK\213X\257\377\244\367q\3748\177y\235D9\327\"\246\261\332\230\377F\304\2271\037]\276\324\342\347\256\322\030S\312\266z|\273\"\262x\346$*V\351\234\265\244\310\311\222s\234K\010/DC1!-D\n\215B.\241\023!\021\241\016)\036\r\236\014\026\276\372\251$\357\026\335\357W\010\377\216U\316\311\354\221\344\243\2343M\332\325\334}\377\\\306~O\031\233\246\307L\277\262\363\333\245\334O\262:\275_=\263\227\313\232\225\357\225\312\023~/\325\274M\233e\266V\231e\233\273x\225\257\310~R\022\252\257E\226]{o\213\212\227M\276\360\356{\361jW\334\367Y={\216?w\\\227_\365#n\n\313\332\002J\311\240\224\317W\272\362\322r\233v\377\035g\331\364\\\337\266,\302I8\226\"T_\347\361k\047\006\323\224]\t\237\356\343\237T{L\271x\355\306qr\306\314M\362#\013\366\377HY\366\264\322\311I\212\242\367Q\252\255Y\213Y\3463k~\263,>\227e\264U\303t\226\252\273;G\222\230j\001 \036/\221\007r@\025,|\001Q\033\264ahtpt\324h\225X#\026\t\353#\342\022\361xy\034\300\225\3753\236V\240\021l\222\335\242c\254P\235\220\333\003\266\2479\372\200\307k\244I4\326\340\243\303\342\020\232\000?\240\205\215m\020\253\020\001\000<vhr|^0/\256*SB\203\253\303J\361xu6\007\215#\007g\363\022\205\237p\005\2240\342\032\331\274\\\214\\&\031\017-\020V\206\350\3626\004Q\030\003\024\201\035vg\207X\201lfX\250P\206\236\221\276\260\372\330\27449\260\343\254u9{\360\207\177\346+\037\343\317M\331\265\370\035o\234cPg\273Z\342\376)\207O\376\364U\256\271\373\311""\336-\313\266L\322\246iJ\222Oy\237\233\327\265k\261\307\322Y?,\275\322\317\366\332\231aJ\361u\024\366\330\210\007z\303\2130%D\020\232\260p\003\350\373A+\304\3065j\261\260>\224aI\204\215\353\003\2645;\005f2g\\^3\035\223\027\246\343\206F\307\327\222\255\031,\026\027\035A\206\226\200\240\300\002\360e\227\364\004\r\263* \332#\373\206\tM\"#eLZ\232\326\207\020\006X\342ho\206B\247e\207`\240\006\204\302\376\360J6\201\024q\024\242\014l\0053\030x\2625=\322%\030\244\361\t\003\204_\210\205\047 \3146\021m\007\237\335@\024\346\316f\260Q\tF,\021k\204\245a} (\206Fa\373E\213t\226aJn\017a\202P\003\303\003%\230\332.\266H\344\023\372Nid\274\226\010\047T\361(hLc\032\021} \344%\002G\300\r\373Kt\313\314\351\223\340\004\020\003\t\210\300\r\350m\316V\321R\243X\205x\2744,/D\001K\354\016\372W\240U\201x\250\241!rhDfDR\220\024\2440\034\341\014a\026:u\345\001B\221d\010q\2341D\031C \221#\222\nR\217Bs\264\026,\3104\356\356@\303&\010\030\267m\335\246I\326N\263\213\224\364\312 \243\345\301U:p\372y\023\033\216\241*9\262Q\200\034}\252\367;z8\254\203O\034#\217L\265B\314\034G+$\330\322}\235\327\001U\334L\254\244I\360\316\333\210\321iX\227\375\006\002\202\372h\016\000\204\234\246l@\332\374\014R\276r\304a\020\321r\302\004\366\023\"\207\300)\246\341`2\211|\354\373\335+t\311\010\205\307\352\310c\377p\235\201B\031\312\204\020\030\370\030L\357\025f\375\026\032\343{\264\321\200\367\237\227\333\t\344\324K\335h\347\366\322L\343\256K&\325b+n\367\211\245\211e\245;\335\0060H\203\326\341\215EK\232^\034,\347\013M\020\3664@\017;\310\365\023_`\234\3121TJQ\00759\212)dF\017\303bi\240\001\207\247$.l\240\317\021\304`AY\032\324\225\026j\260\345\336[\374\304\251U}\322\365~\250\n\200\222\245(E\224R\363\224\024\014U\306\005\253\030F\315E\270\325\324\227\032\005\360p-\334\033\212\177|\047\271X\304?\234(\323Jf\276\244\027>\2726\204\275\244\214rJa\250\\4\225\020}\360\313\326<F\207\314$\340f\250\335D\323\326\230$H<\262\341\356)\324\344-\243\324\250\313\227=\313~\0344\252\r4T\317\253\246\260\0000\307n\366\206\314\332\263>p\241\036p""H\002\346Ih\237\376o\026e\242%\030\345j\013\252\367L\371B\320\206A\304\267\226\323\330.\267%\213\273_\323\201\357\270\nG\213\370\235\036,i\304\202\331cD\r\223\271\251\036\017\326j\326\010N,*v\372\367\271\257F\345\366\260&|b\";\323o\214\336bs\322\214\277 *en\222\314\253w\263\263)\372(\224\031\305\016\230\006\2049\2361\367\332\r\245%X\370;\027O%D8p\215>A\2370\223\264\201\016@\352\274\272.2\226\316\257\037\000Su%\260\007#\306\354Q\245\250mY\002\320-RZ\210\235\261\226\352\216\"[\t\010\331\035\220\177\310\317\n\270\304}\\\251\330!Gk\212\017&U\324\322\00645\035\366\261jM\200\257\320\216UF\202\2479\2510\235\275\232\020\264\351\003hR/\276`\217T\013\tK\243\247Qy_^\336[\271\265\276<\342X\250\266\257\013\200\r\270\251YR2\251\356\344\"\237\330\317\204\352jg!W\243\341\275\017\344G\351I\225a?\335N\257\217z\247\261J\013\350\031_\"\203\3173 \047\324\023h\241\314\263\005\345\242\223]\350:\003\355\005]+#\344\247P\221T\001";
28892
+ static const char cstring[] = "(\265/\375`.\021\2155\000zH\374\016E\000\221\250\r\374?\337\273\377=\337\253\357=\225\240_\372U\307\327Tr\023\212\260\277\271%\221\310\362\\\335HRl\010\016/\000J;\2504\303\214\376\2618\331\240zpf\234\223\025f\034Ch\036S\001\250\305\321F\315\000\307\000\347\000\237\210\245\352\343\223\252p\2162?5\177[3M\223\221\305F\315+\335\\\2530\221EE%\345\004%\272\251\312\373\331F\327\354\354V|\034s\222\204\247\350\245Z41U\232UK_\276\255U\232\304w\034\253\307<\226]\264\0375\367\032\263\375\342\346\022?\330\273\357c\245\317\321\\\212\233\215\3301\226\334,e\034\361O\257\3417jU\306\320J\350\204E\013\213X\257\377\244\367q\3748\177y\275D9\327\"\246\261\332\230\377D\304\2271\037]\276\324\342\347\256\322\030c\312\266z|\253\"\262x\346d*V\351\234\265\245\310I\223s\234\013\010ODE1\"MT\022\221D.\"\023\242\020\"\224\014\237\014\037\024\013_\035e\222w\213\356\367+\004\377\216e\234\223\331+\311O9w\232\264\253\271\373\376\271\214\375\2422>M\217\231~e\347\267S\271\243duz\277zf/\2275+\337+\225(\374n\252y\2336\313l\2552\3136o\3612\256\"\373IG\310|,\262\354\332{[R\274l\322\205w\337\213W\253\342\276\317\352\331s\374\271\343\272\3742/\342\252\260\254-\241\224\034J\001}\245+/-\267i\367\337q\226\315\317\365m\313!|\204c\031B\346\353>~\355\304p\232\2623a\324}\374\223j\217)\027\257\3358N\316\230\371I~d\301\376_)\313\236V:9IS\364\376I\2655k1\313|f\315o\226\305\347\262\214\266j\230NSuw\347J\022S-\037\035\257\221\007v@\025,|\001S;\264_lh:44Z&\026\2115\302\002\205\270B:^\336\006pe\177\215\247\025h\004{d\267h\030\253\224\047\344\366\200\355\351\216>\320\361\"\351\021\2155\360\360\2606\204%@\020hac\373\303\nD\000\200\216\034\033\034\240\027\314\213\253\316\220\310\340\362\260R:^\236\275A\337\300\321\341\274F!(\\\001%\210\270D8\257\026$\327i\246C\353\203\205\022]\336\2060\na\200#\220\303\366l\020\253\017N\r+\025\312\360C\322\027V\036\234\327\006\007v\234\265.\347\017\376\360\317|\345c\374\371)\273\026\277\343\215s\034\352lWM\334?\3450\312\237\276\214k\356\216\262w\313\262-\227\264y\232\262\344S\336\347\346u\355Z""\374\261t\326\017K\257\364\263\275vf\230R|=\205=\230\210\007Z\203\2130%D\020\236\260P\003\350\373A\013\004\307Ej\261\260>\224!I\004\216\313#\2647\033\005V2k\\^5\236\222\027FccC\363\265dK\006\213\305EG\210\241% (\260\000|\331&=A\303\254\n\214\266\310\266QB\217\314\310\231\222\326\246\345!|\001\232:\332\253\241\340i\331 \030\270\371\240\260=<\222M\000E$\205)\003[A\r\006\232lM\2234\t\006g\200\302\000\341\027b\241\t\010\263KF\333\001h7\030\205\331\263\031\354T\002\022k\304\022amX\037\030\202\241S\330~\321#\235e\250\222\273C\230 \334\274\360@\t\252v\213=\n\001\205\276U\233\031\257\025\322\tU<\n\032\323\330&D\037\000y\215@\021P\303~\022\335R\203\372$8\001\304@\002#\220\003z\273\263U\264\324\047V \035\257\r\313\013O@\022\233\203\376Uh\025\201x\250\241!rhDfDR\220\024\2440\034\341\014a\026:u\345\001B\221d\010q\2341D\031C \221#\222\nR\217Bs\264\026,\3104\356\356@\303&\010\030\267m\335\246I\326N\263\213\224\364\312 \243\345\301U:p\372y\023\033\216\241*9\262Q\200\034}\252\367;z8\254\203O\034#\217L\265B\314\034G+$\330\322}\235\327\001U\334L\254\244I\360\316\333\210\321iX\227\375\006\002\202\372h\016\000\204\234\246l@\332\374\014R\276r\304a\020\321r\302\004\366\023\"\207\300)\246\341`2\211|\354\373\335+t\311\010\205\307\352\310c\377p\235\201B\031\312\204\020\030\370\030L\357\025f\375\026\032\343{\264\321\200\367\237\227\333\t\344\324K\335h\347\366\322L\343\256K&\325b+n\367\211\245\211e\245;\335\0060H\203\326\341\215EK\232^\034,\347\013M\020\3664@\017;\310\365\023_`\234\3121TJQ\00759\212)dF\017\303bi\240\001\207\247$.l\240\317\021\304`AY\032\324\225\026j\260\345\336[\374\304\251U}\322\365~\250\n\200\222\245(E\224R\363\224\024\014U\306\005\253\030F\315E\270\325\324\227\032\005\360p-\334\033\212\177|\047\271X\304?\234(\323Jf\276\244\027>\2726\204\275\244\214rJa\250\\4\225\020}\360\313\326<F\207\314$\340f\250\335D\323\326\230$H<\262\341\356)\324\344-\243\324\250\313\227=\313~\0344\252\r4T\317\253\246\260\0000\307n\366\206\314\332\263>p\241\036pH\002\346Ih\237\376o\026e\242%\030\345j""\013\252\367L\371B\320\206A\304\267\226\323\330.\267%\213\273_\323\201\357\270\nG\213\370\235\036,i\304\202\331cD\r\223\271\251\036\017\326j\326\010N,*v\372\367\271\257F\345\366\260&|b\";\323o\214\336bs\322\214\277 *en\222\314\253w\263\263)\372(\224\031\305\016\230\006\2049\2361\367\332\r\245%X\370;\027O%D8p\215>A\2370\223\264\201\016@\352\274\272.2\226\316\257\037\000Su%\260\007#\306\354Q\245\250mY\002\320-RZ\210\235\261\226\352\216\"[\t\010\331\035\220\177\310\317\n\270\304}\\\251\330!Gk\212\017&U\324\322\00645\035\366\261jM\200\257\320\216UF\202\2479\2510\235\275\232\020\264\351\003hR/\276`\217T\013\tK\243\247Qy_^\336[\271\265\276<\342X\250\266\257\013\200\r\270\251YR2\251\356\344\"\237\330\317\204\352jg!W\243\341\275\017\344G\351I\225a?\335N\257\217z\247\261J\013\350\031_\"\203\3173 \047\324\023h\241\314\263\005\345\242\223]\350:\003\355\005]+#\344\247P\221T\001";
28893
28893
  PyObject *data = __Pyx_DecompressString(cstring, 1723, 3);
28894
28894
  #define __Pyx_DecompressString_LZSS_UNUSED
28895
28895
  if (unlikely(!data)) __PYX_ERR(0, 1, __pyx_L1_error)
@@ -28897,9 +28897,9 @@ static const char cstring[] = "(\265/\375`.\021\2155\000zH\374\016E\360\222\250\
28897
28897
  #if !CYTHON_ASSUME_SAFE_MACROS
28898
28898
  if (likely(bytes)); else { Py_DECREF(data); __PYX_ERR(0, 1, __pyx_L1_error) }
28899
28899
  #endif
28900
- #elif (CYTHON_COMPRESS_STRINGS) == 1 /* compression: zlib (1738 bytes) */
28901
- static const char cstring[] = "x\332\245W\315s\323F\024\257\247i\223\222\320`\302\307\264\024\272\2012\264\323\301%\301\201\020\3342\006\002M\207RB\003\364\343\240YKkG\215\262\262\265\273N\314\364\300\321G\035\367\250\243\216>\372\230#\307\034}\314\237\320?\241oW\226\"\333RK\247\231\221\265\373{O\357\355\376\336\333\267/_r\217\020T\367pc\227P\376\325\215\322\315\322\362\235\312\375\312\367\225\215\312f\245V\261*\333\025\273\322\272\267\3418\244\201\035Ts]\207`\212\332\330\021d\r=u9\"\324\025\215md\323\246\340\310\302\034\003H\020\337\306\034=\350\360m\227\"\233!\2138v\215x\230\023\247\203\030\367l\223\023O)Q\364l\375\331\365\362j\031aj!\217\374AL\316\020\0235\323\301\214\021\206\334:\252\t\333\3416E\274\323$\254\2046\352\250\343\nD\t\261\020wQ\023\364\322\037\360mB\021#\\\r\3205L\251\3131\267]j\300\3476m\\C\226\355\201\023\273M\324\327\217\260\303H\351\247\246\351Z\004\271\260\003\360\347a\332 \350\306\365\345\225\2255\364\202Z\244nS\360\345j\2455\204-\313\000\243\3042\371>\022L\255b\3176II\317\3670C \324x\311\262\031\2569\204\214)\222\tEB\225^\303\264Y4\262\250\013\224\325\261p82\014\217X\302$\206\201,\241\327L]z\035(l\333\020\020\3030mjsC\255\010\325:\234\2605\304\361\0161\364\030\231\030\002g\241\272\353!\307f\\K, ?-\320\232Z\242T\262%\020\262\t[\273\254\321\304\346\3167\246\353\221R\263\263\177\0373\362\220(\216\356\213z\235x\343\363R\262\023S\347\205adh@\340\300#\377\007\035\317\212\366\226%\250;.\346\253Y\022\233\362\245\034|9\007/\347\340\231\366\201\240,X\344\371\025y\216E\236g\021\273^\247\243\034\247\347\331\034\217idr<\242\203\3311\307#\202=/_pL\376\270$&!\003_\316\301\3139x\246\375!\371\343\260\310\363+\362\034\213<\317\232\374tD\242\361\003\276\237\014&\251O\213&8?\026\036\037\3271L\035\3241H\035\2741\0106?\206p\321tFv\020\215A\236\014&\027\233\026M,\366X\010E>Z\353(\244\226:\2120\322\022\204\232d\014\345\336(\240/\222\247.%[P\334\177\306\365\221\264\037\237O\256:Ccb\361\023:I\241\310\222\250\234\311\301\227s\360r\016\236i_\3449\020y\036D\236\013\021\373H\307z|\236\315\331\277U\204""\t\235\344|gI\342-e\235\357\034\274\234\203g\332\027y\016D\236\007\221\347Bs\266\365ctu\255{\236\353\031\306\263\316><\017!\205\215\247d\237?\047u\303\030\366\rp\353\032:\271\365\3335\325\253.\250~7b\322\340o\027\333T\277\t\307\272\021\321\023\327\022N$\366\\\003\372+\317&Z@\361\256\206)\331S\257\246G\232\330\323\010\\\243\206\271M\314\035&v\243\231G\030t\001\321x\350N\rU/\024\215\004m\332\346\016\370\031\27742\304i6\306\304\343\t\226!\236\374\272\315U\267\242\026\336\022\330\211\267\025\367+\023\231\227\000d_M \353\022*X\212\314\211l4\014\325\207\250w\233x\314\326\220\016\212\315\014\350>\240m\203\006MS\022_\\\230u\250i\273\245D\312\024\354z\026\361LG)C\270\270\207MR\2034P\2732\255\232\250\253\307\320%T\227%K\323a\324=w7\262\232\006T%&\240\257\036#\251dDS\024\217-\310&\370\2659\331e\216\315\271\003\357\006U\231\327t\233I%\215\353g\272j\016keb7nz\222\3225\254T\303\3024\254C\303\262\023\265#q\255\211KK\\I\342\302\301\210S\007\246\207m&s=\375\030;\244\303\200}/\n\001\330\021\320\220w\330\361%\225\\M\311\205\024_C\307\227O\334\033*\376\211\320;\026M\370\337\200@\267\233\204WoL\377\260\270\255H\252\314\260\250\014k\310\260d\014+Dt\341\307e!\256\002\361\241\217\317\370\233\302`\352D\367k\177S\rJ!\016\333=\030\036M\315v\357\311Ey\047\250\006\257\302\252\002>\227\255Ct\2437\333\277{\260s\270\371|0\265p\270p%X\r\227\302\352`j\372\315\237\376m\2718\230Y\356-\036\336|t@\017\267^\014\300\306\322\233\302_3\357}0\327\375N\026\345W\301R\3608\274\335[\324\340\211\013J\277\350\237\3617\0073\247\374i\277%?\224N\270\250\214\265\273\257\374uyF\202\344\264\017Z\347\375\326\021\374p\271\032\334\2164Z\203\231\371\303\371\245\336\231\336f\257\321\377\375\355\364[\320\030A\nc^^\312\262l\007[a\361\335\275\255\004\323A\353]\275U\0073\263\335r\227\373w\344\243\340z\330\352\025\0063s\335\037|\354\253\257\001_\221\323\262\025L\005\325wQ\375((\006_\0048V\355\300jw5\325\261\342\021\354B\177\266\356\237\2059\227\267\202\205\240:\230;\345\317\203\227BjP\364\213\376\325\310r\353?\330[\rV\302iX\333|""\277uPH>\216\264\367$Q\201\010\227\0244\2577R\225\317\345^\200\203V\032z\t6\n\341\2710\001\357J\254\265\366B\034A\302\257\372[\262\030M\332\376+\375Q9\350\364\n\275\205^\025R\021\004\347\300c[\352\341\247*\232iC\"\324t^\220K\231\370g\262\232\211_\224/\202ka1LY\353\204\357+B\"\351o\001S\333K\261s\326\337\364-y-(&\3539\322d\235\227\037\203\331v\250\227\207 \274O`\351:\307>\222g\301lk\002?!\257\252\300L\340\263\220o\205\2408\201\317\311uH\206E\205_U\371{t\234+*\224-H\346=\331\010^\206\337\366\013\375\213\007\370\000V{\306\177\0341\362Z.\000\245\260\326\223\335\027\376\027~Cn\005\237\350\235\235<\375\277\246W\374_\336}z\331\337\030N\327z\277\366q\277\363\266\220\005\277~[\034\\\\\034\005\216b\266U(6 \006\2207G\251\210\232*\210\n\272\010\246\212J\351\211,\310b\024\3262\234\362\023\352\030\035N]\206p\237\205\352\306{k\375\315\303\251{}`\357\022d\361-U\017.\311\235\360t\270\034\376\034Q>\333\275\345_R!J1\235\035\376\007*\177\007s\220\225p\374\212\311\340ok\027\034>";
28902
- PyObject *data = __Pyx_DecompressString(cstring, 1738, 1);
28900
+ #elif (CYTHON_COMPRESS_STRINGS) == 1 /* compression: zlib (1739 bytes) */
28901
+ static const char cstring[] = "x\332\245W\317s\333D\024\306C i\023H\335\2440PZ6\245\235\322ab\232\324i\323`\350\270%-a\2404m\332\362\343\240YKkGDY\331\332]\047f8\364\350\243\216{\324QG\037}\314\261\307\034}\314\237\300\237\300\333\225\245\310\266\004e\310\214\254\335\357=\275\267\373\275\267o_>\347\036!\250\356\341\306>\241\374\306\315\322\255\322\255\233\225\373\225\357*[\225\355J\255bUv+v\245uo\313qH\003;\250\346\272\016\301\024\265\261#\310\006z\354rD\250+\032\273\310\246M\301\221\2059\006\220 \276\2139z\320\341\273.E6C\026q\354\032\3610\047N\0071\356\331&\047\236R\242\350\311\346\223\345\362z\031aj!\217\374NL\316\020\0235\323\301\214\021\206\334:\252\t\333\3416E\274\323$\254\204\266\352\250\343\nD\t\261\020wQ\023\364\322\037\360]B\021#\\\r\320uL\251\3131\267]j\300\3476m\\G\226\355\201\023\273M\324\327\017\261\303H\351\247\246\351Z\004\271\260\003\360\347a\332 \350\346\362\352\332\332\006zN-R\267)\370r\265\322\006\302\226e\200Qb\231\374\020\t\246Vq`\233\244\244\347\007\230!\020j\274d\331\014\327\034B\306\024\311\204\"\241J\257a\332,\032Y\324\005\312\352X8\034\031\206G,a\022\303@\226\320k\246.]\006\n\3336\004\3040L\233\332\334P+B\265\016\047l\003q\274G\014=F&\206\300Y\250\356z\310\261\031\327\022\013\310O\013\264\246\226(\225l\t\204l\302\326>k4\261\271\367\245\351z\244\324\354\034\336\307\214|K\024G\367E\275N\274\361y)\331\211\251\363\302024 p\340\221\377\203\216gE{\313\022\324\035\027\363\365,\211M\371J\016\276\232\203\227s\360L\373@P\026,\362\374\212<\307\"\317\263\210]o\322Q\216\323\363l\216\307429\036\321\301\354\224\343\021\301\201\227/8%\177\\\022\223\220\201\257\346\340\345\034<\323\376\220\374qX\344\371\025y\216E\236gM~:\"\321\370\001?L\006\223\324\247E\023\234\237\nO\217\353\030\246\016\352\030\244\016\336\030\004\233\037C\270h:#;\210\306 O\006\223\213M\213&\026{*\204\"\037\255u\024RK\035E\030i\tBM2\206ro\024\320\027\311c\227\222\035(\356\317p}$\355\307\347\223\253\316\320\230X\374\204NR(\262$*gr\360\325\034\274\234\203g\332\027y\016D\236\007\221\347B\304>\322\261\036\237gs\366o\025aB""\0479\337Y\222xKY\347;\007/\347\340\231\366E\236\003\221\347A\344\271\320\234\355\374\030]]\233\236\347z\206\361\244s\010\317\267\220\302\306cr\310\237\222\272a\014\373\006\270u\r\235\334\372\355\232\352U\027T\277\0331i\360\267\217m\252\337\204c\335\210\350\211k\t\047\022{\256\001\375\225g\023-\240x_\303\224\034\250W\323#M\354i\004\256Q\303\334%\346\036\023\373\321\314#\014\272\200h<t\247\206\252\027\212F\2026ms\017\374\214_\032\031\3424\033c\342\361\004\313\020O~\335\346\252[Q\013o\t\354\304\333\212\373\225\211\314K\000r\250&\220u\t\025,E\346D6\032\206\352C\324\273M<fkH\007\305f\006t\037\320\266A\203\246)\211/.\314:\324\264\335R\"e\nv=\213x\246\243\224!\\\334\303&\251A\032\250]\231VM\324\325c\350\022\252\313\222\245\3510\352\236\273\037YM\003\252\022\023\320W\217\221T2\242)\212\307\026d\023\374\332\234\3543\307\346\334\201w\203\252\314k\272\315\244\222\306\3653]5\207\2652\261\0337=I\351\032V\252aa\032\326\241a\331\211\332\221\270\326\304\245%\256$q\341`\304\251\003\323\3036\223\271\236~\214=\322a\300\276\027\205\000\354\010h\310;\354\364\222J\256\246\344B\212\257\241\323\313\047\356\r\025\377D\350\035\213&\374o@\240\333M\302\2537\246\177X\334V$UfXT\2065dX2\206\025\"\272\360\343\262\020W\201\370\320\307g\374Ua0u\266\373\205\277\255\006\245\020\207\355\036\014O\246f\273\367\344\222\274\033T\203\227aU\001\237\312\3261\272\331\233\355\177u\264w\274\375t0\265p\274\360Y\260\036\256\204\325\301\324\364\253?\375;ri0\263\332[:\276\365\360\210\036\357<\037\200\215\225W\205\277f\336zg\256\373\215,\312\033\301J\360(\274\323[\322\340\331\213J\277\350/\372\333\203\231s\376\264\337\222\357J\047\\R\306\332\335\227\376\246\\\224 9\357\203\326\207~\353\004~\270\\\017\356D\032\255\301\314\374\361\374Jo\261\267\335k\364\177{=\375\0324F\220\302\230\227\027\262,\333\301NX|sok\301t\320zSo\325\301\314l\267\334\345\376]\3710X\016[\275\302`f\256\373\275\217}\3655\340krZ\266\202\251\240\372&\252g\202bp5\300\261j\007V\273\257\251\216\025O`\027\372\263M\377\002\314\271\274\035,\004\325\301""\3349\177\036\274\024R\203\242_\364\257E\226[\377\301\336z\260\026N\303\332\346\373\255\243B\362q\244} \211\nD\270\242\240y\275\221\252|*\017\002\034\264\322\320\013\260Q\010?\010\023\360+\211\265\326A\210#H\370U\177G\026\243I\333\177\251?*\007\235^\241\267\320\253B*\202\340\003\360\330\226z\370\261\212f\332\220\0105\235\027\345J&\376\211\254f\342\227\344\363\340zX\014S\326:\341\333\212\220H\372k\300\324\366R\354\\\360\267}K^\017\212\311zN4Y\037\312\367\301l;\324\313C\020\336\037`\351:\307\316\310\013`\2665\201\237\225\327T`&\360Y\310\267BP\234\300\347\344&$\303\222\302\257\251\374=9\315\025\025\312\026$\363\201l\004/\302\257\373\205\376\245#|\004\253]\364\037E\214\374!\027\200RX\353{\335\347\376U\277!w\202\217\364\316\336;\377\277\246\237\371?\277\371\364\212\2775\234n\364~\351\343~\347u!\013\376\343uqpii\0248\211\331V\241\330\202\030@\336\234\244\"j\252 *\350\022\230**\245\037dA\026\243\260\226\341\224\237U\307\350x\352\n\204\373\002T7\336\333\350o\037O\335\353\003{\227!\213o\253zpY\356\205\347\303\325\360YD\371l\367\266\177Y\205(\305tv\370\037\250\374\035\314AV\302\361+&\203\277\001\3329\0346";
28902
+ PyObject *data = __Pyx_DecompressString(cstring, 1739, 1);
28903
28903
  #define __Pyx_DecompressString_LZSS_UNUSED
28904
28904
  if (unlikely(!data)) __PYX_ERR(0, 1, __pyx_L1_error)
28905
28905
  const char* const bytes = __Pyx_PyBytes_AsString(data);
@@ -28907,7 +28907,7 @@ static const char cstring[] = "x\332\245W\315s\323F\024\257\247i\223\222\320`\30
28907
28907
  if (likely(bytes)); else { Py_DECREF(data); __PYX_ERR(0, 1, __pyx_L1_error) }
28908
28908
  #endif
28909
28909
  #elif (CYTHON_COMPRESS_STRINGS) > 0 && (CYTHON_COMPRESS_STRINGS) <= 90 /* compression: lzss (2299 bytes) */
28910
- static const char cstring[] = "\377(tree fr\377agment)0\377.3.29<B<\377H<I<Q<b<\377d<h<i<q?\377Illegal \377boolean \377value: N\377ot enoug\377h input \357data\022\000e t\377hat Cyth\377on is de\377liberate\377ly stric\367ter!\001n PE\377P-484 an\377d reject\377s subcla\377sses of \377builtin \377types. I\377f you ne\177ed to p%\000\376%\tthen se\375t\200\000e \047ann\377otation_\376<\000ing\047 di\355rb\000iv\242\000o F\377alse.Opc\237ode o\277\000m\000r\377ange 0-2\37755: Unde\327fini\000o \002: \357add_R\000edc\337tx us\202\001wi\367ce.\013\002was \374o\000\023\002.disab\307lee\032\014\013\002\034\nen\336$\001gcis\004\003dn\375o\260 fault \377__reduce\337__ du\257\002no\333n-\300 vi\216@__\277cinit_\216\001 \377bytes: t\357ake_\007\002 ca\376\266@d for l\027ist\025\002d\372 \r\t1\002\340/\002\037\001\004\023\260@;\016msg\377pack/cor\377e.pyxBas\367eDe\305!Buff\253er\000\r.\301\006c\223b_i_\017\020\266@s\255@e_\013\026\343rd\326\003N\016\026\000flo\367at8\006\021int1\312\001\0242\031\02441\024K\022st\245r}\021u`\025\025\0012\032\0254\0143\025\326\002En\326+\004\t\3163\023\014\314\31729\nas\332\047R\nwr\002\000\026_\363\047#\r\365%\005\020\370\"\035\020\210\370\"5\020\361\016.\220\000\366$\232\ru `\025\364&\036\021e\022\304A8\321\204\t\343\204\003\007Ctx\000\006\315\204\017\017\t\307\204\016.\007\300\245\206\007\005\014\245\206\001\030\014\301\206\001+\014st}r=\014tuple\232i\200\254c\252\000\000\006\372\205\017\017\t\364\205\016.\007p\303ut\325\207\003\005\013\320\207\001\027\013se\277quence\007\014t\371r>\013\304\213\002NoneT?ypeSaf\265\207\n\000\r\000\260\207\017\017\020\261\207\0165\016\240\207\006\006\021\245\207\001\001\024U2\031\02441\0248f\021uI\025\004\215\207\002\032\02543\025_\002\206\207\t\300!\364\206\033\340\017\020\2372\351\206\r\327\211\003O\016wr_\250\254%\314\206\021\031\02441\0248L\021upI\025\253&\264\206\0223\0258TM\265\214\003\377Error__P\373yx\001\000Dict_\377NextRef_}_\261\217\004e____\255\215\001v\003\002oc\013\001fun\003\002\347get\245\214\003!\000mai=n\047\001meta\265""\220\002\010\002\357odul=\002mro\377_entries\356M\001namT\002new~\\\001preparf\002\375p\210\000checks\357um__\n\001res\007ult\006\003h\004!\001\210\221\001\033\003?unpicke\000\360\215\r\300\014\020\257\213\t/\014\354\205\r\014\020,\017vt<\334\220\001\240!qual\317\005\250\220\005\354\337\216\016\302\220\006ex\324!set\345_\203%s\302(\363\216\016__t\367est\207Avers\374\310\222\001\216Dis_cor\277outine\334\222\001e\376\261\214\005asyncio\365.\025\006s\230\221\001orde\347rcl)\001\254@tra\277ceback\370\222\001c/dbuf\000\001_\271\221\002\333\224\002}d\310\220\002_from\311\221\003$\005\t\313\221\001e1\000\000\001_\222\211\001\216\225\002\325e\227\216\002_\005\004d\313`en\377ditemsli\267ttl\005\000gn\261\221\001p\003op\301\211\006\317\211\001\220\222\001\327\211\001\256\211\005\007\002ctrO\006\355\220\005\333\220\006rd\361\205\002\352\001\0032\010\0034\017\0038rd\177_strrd_\371\217\002\352\001\0042\t\0044\021\0048se\177lfsetde\342\223\002\357sort\000\001_ke\277ysstar\326\204\003s\377tructsysp\312\223\007\273\223\006\252\223\006\353\223\002str\363\223\002\262\370\213\002t\225\223\004\374!eu\355\002u\377pdateuse\321_\333\222\005\277\227\002\304\227\002s\317\217\005wr\250\277\217\004\316\207\004\326\207\0032\335\207\0034\344\207\0038\246\353\216\003wr\331\003\001\0042\t\0044\376\021\0048\200\001\330\004\n\210\367+\220Q\005\001.\250a\250\373v\260\010\000\340\004\013\210?\377\230!\2309\240A\240W\377\250A\200\001\340\004\037\230\377q\320 0\260\013\270;\377\300k\320QR\330\004\023\377\320\023#\2408\2501\250\377A\330\004\007\200|\2207\377\230!\330\0102\260!\320\3773F\300n\320TU\330\376A\0001\200\001\360\010\000\005\377\014\210>\230\021\230)\240\1771\240G\2507\260!\020\002\373\n\033,\001\021\220\024\220Q\377\330\010\020\220\007\220q\230\337\006\230l\250!I\001v\210\277W\220E\230\024\230\027\000\022\375\220S\000\027\220q\340\010\027\277\220t\2308\2407\034\003q\377\330\010\017\320\0171\260\024\377\260Q\260g\270[\310\007\351\310\037\000\005\n\001W\014V\2304\277\230v\240T\250\021D\0475""\317\240\007\240q\331\001J!A\330\377\010\013\2104\210t\2209\377\230F\240-\250q\260\001\377\330\010\014\210J\220a\220\374\250\001\025\0005\230\007\230q\240\357\004\240A\200\010 \t\240\021\257\240$\240a#\005y\231 m\344\346\"L\005\340\261 ]\002E\220\025\376a\000t\2306\240\023\240A_\330\014\020\220\017c\000\001\000\006\177\330\014\021\220\021\220%\177\003}q%(8\2405\250\007\304\000o\017\270q\300\310\000\017\2108\002n\314\003w\230e\205A\2501\307\001\375\017\357\002A\230R\230w\240\327a\240q\007\tVA\000\001\250\273\026\250\014\006;\230a!\002w\375\250\326\002\017\210u\220A\220\367T\230\021B\003v\220W\230\377A\230V\2404\240y\260\177\001\260\023\260A\260Q\250!-\026\301 v\230\006\002\032\340am\001vA\005u\250\312\"\033\2301\216`\334\372 \t\014\034\230A\003\022\035\230_U\240\047\250\021\353`\010F\005\347y\250\003\310\204\001\231A\035\230Z\277\240s\250!\2501\271F\340\377\010\025\220Q\220d\230\047\351\240\274`\211\004\340\334@E\220\027[\230\016\363\000v\250\245\002 \334@9L\270\000\337b\t\230\025\353\000\356\"\216\013\n\n\230%\236A\202a#\n\013\277\2305\240\001\240\021\007\016\014\253\230E\212`!\262a%\274\204\001\340\374\315g\355aq\220\007\220w\230\377g\240V\250=\270\001\270\377\035\300a\300q\340\010\024\273\220G\214#z\230\023\320 Q\377\340\010\r\210U\220$\220\337g\230T\240\031\325\002\r\0228\000\014\000\033,\r#\220X?\t\000\014\356\017\014\"\220Iq\004:\260Y\177\270a\270y\310\001\330}\000~\007\rz\310\021\330\035!\233\002L\"\003\016\000\340\010\367D\311\205\001I\201@\357a\200A\340\253Fw\240c\324\301A\017\001\035\327\000\021\356\205\001L\230\367\001\230\021\207c4\220q\230\335\n\303\205\001\320\004\"\354@\025\250\377a\250t\260:\270Q\320\377\004?\270q\330\010\036\230\367e\2406\214\207\001\036\230k\250\337\022\2502\250S\265C\013\210G6\220\036\301\205\001\337(\351SC\274\204\001\177\330\014\032\230!\2306\227`\000\001\005";
28910
+ static const char cstring[] = "\377(tree fr\377agment)0\377.3.30<B<\377H<I<Q<b<\377d<h<i<q?\377Illegal \377boolean \377value: N\377ot enoug\377h input \357data\022\000e t\377hat Cyth\377on is de\377liberate\377ly stric\367ter!\001n PE\377P-484 an\377d reject\377s subcla\377sses of \377builtin \377types. I\377f you ne\177ed to p%\000\376%\tthen se\375t\200\000e \047ann\377otation_\376<\000ing\047 di\355rb\000iv\242\000o F\377alse.Opc\237ode o\277\000m\000r\377ange 0-2\37755: Unde\327fini\000o \002: \357add_R\000edc\337tx us\202\001wi\367ce.\013\002was \374o\000\023\002.disab\307lee\032\014\013\002\034\nen\336$\001gcis\004\003dn\375o\260 fault \377__reduce\337__ du\257\002no\333n-\300 vi\216@__\277cinit_\216\001 \377bytes: t\357ake_\007\002 ca\376\266@d for l\027ist\025\002d\372 \r\t1\002\340/\002\037\001\004\023\260@;\016msg\377pack/cor\377e.pyxBas\367eDe\305!Buff\253er\000\r.\301\006c\223b_i_\017\020\266@s\255@e_\013\026\343rd\326\003N\016\026\000flo\367at8\006\021int1\312\001\0242\031\02441\024K\022st\245r}\021u`\025\025\0012\032\0254\0143\025\326\002En\326+\004\t\3163\023\014\314\31729\nas\332\047R\nwr\002\000\026_\363\047#\r\365%\005\020\370\"\035\020\210\370\"5\020\361\016.\220\000\366$\232\ru `\025\364&\036\021e\022\304A8\321\204\t\343\204\003\007Ctx\000\006\315\204\017\017\t\307\204\016.\007\300\245\206\007\005\014\245\206\001\030\014\301\206\001+\014st}r=\014tuple\232i\200\254c\252\000\000\006\372\205\017\017\t\364\205\016.\007p\303ut\325\207\003\005\013\320\207\001\027\013se\277quence\007\014t\371r>\013\304\213\002NoneT?ypeSaf\265\207\n\000\r\000\260\207\017\017\020\261\207\0165\016\240\207\006\006\021\245\207\001\001\024U2\031\02441\0248f\021uI\025\004\215\207\002\032\02543\025_\002\206\207\t\300!\364\206\033\340\017\020\2372\351\206\r\327\211\003O\016wr_\250\254%\314\206\021\031\02441\0248L\021upI\025\253&\264\206\0223\0258TM\265\214\003\377Error__P\373yx\001\000Dict_\377NextRef_}_\261\217\004e____\255\215\001v\003\002oc\013\001fun\003\002\347get\245\214\003!\000mai=n\047\001meta\265""\220\002\010\002\357odul=\002mro\377_entries\356M\001namT\002new~\\\001preparf\002\375p\210\000checks\357um__\n\001res\007ult\006\003h\004!\001\210\221\001\033\003?unpicke\000\360\215\r\300\014\020\257\213\t/\014\354\205\r\014\020,\017vt<\334\220\001\240!qual\317\005\250\220\005\354\337\216\016\302\220\006ex\324!set\345_\203%s\302(\363\216\016__t\367est\207Avers\374\310\222\001\216Dis_cor\277outine\334\222\001e\376\261\214\005asyncio\365.\025\006s\230\221\001orde\347rcl)\001\254@tra\277ceback\370\222\001c/dbuf\000\001_\271\221\002\333\224\002}d\310\220\002_from\311\221\003$\005\t\313\221\001e1\000\000\001_\222\211\001\216\225\002\325e\227\216\002_\005\004d\313`en\377ditemsli\267ttl\005\000gn\261\221\001p\003op\301\211\006\317\211\001\220\222\001\327\211\001\256\211\005\007\002ctrO\006\355\220\005\333\220\006rd\361\205\002\352\001\0032\010\0034\017\0038rd\177_strrd_\371\217\002\352\001\0042\t\0044\021\0048se\177lfsetde\342\223\002\357sort\000\001_ke\277ysstar\326\204\003s\377tructsysp\312\223\007\273\223\006\252\223\006\353\223\002str\363\223\002\262\370\213\002t\225\223\004\374!eu\355\002u\377pdateuse\321_\333\222\005\277\227\002\304\227\002s\317\217\005wr\250\277\217\004\316\207\004\326\207\0032\335\207\0034\344\207\0038\246\353\216\003wr\331\003\001\0042\t\0044\376\021\0048\200\001\330\004\n\210\367+\220Q\005\001.\250a\250\373v\260\010\000\340\004\013\210?\377\230!\2309\240A\240W\377\250A\200\001\340\004\037\230\377q\320 0\260\013\270;\377\300k\320QR\330\004\023\377\320\023#\2408\2501\250\377A\330\004\007\200|\2207\377\230!\330\0102\260!\320\3773F\300n\320TU\330\376A\0001\200\001\360\010\000\005\377\014\210>\230\021\230)\240\1771\240G\2507\260!\020\002\373\n\033,\001\021\220\024\220Q\377\330\010\020\220\007\220q\230\337\006\230l\250!I\001v\210\277W\220E\230\024\230\027\000\022\375\220S\000\027\220q\340\010\027\277\220t\2308\2407\034\003q\377\330\010\017\320\0171\260\024\377\260Q\260g\270[\310\007\351\310\037\000\005\n\001W\014V\2304\277\230v\240T\250\021D\0475""\317\240\007\240q\331\001J!A\330\377\010\013\2104\210t\2209\377\230F\240-\250q\260\001\377\330\010\014\210J\220a\220\374\250\001\025\0005\230\007\230q\240\357\004\240A\200\010 \t\240\021\257\240$\240a#\005y\231 m\344\346\"L\005\340\261 ]\002E\220\025\376a\000t\2306\240\023\240A_\330\014\020\220\017c\000\001\000\006\177\330\014\021\220\021\220%\177\003}q%(8\2405\250\007\304\000o\017\270q\300\310\000\017\2108\002n\314\003w\230e\205A\2501\307\001\375\017\357\002A\230R\230w\240\327a\240q\007\tVA\000\001\250\273\026\250\014\006;\230a!\002w\375\250\326\002\017\210u\220A\220\367T\230\021B\003v\220W\230\377A\230V\2404\240y\260\177\001\260\023\260A\260Q\250!-\026\301 v\230\006\002\032\340am\001vA\005u\250\312\"\033\2301\216`\334\372 \t\014\034\230A\003\022\035\230_U\240\047\250\021\353`\010F\005\347y\250\003\310\204\001\231A\035\230Z\277\240s\250!\2501\271F\340\377\010\025\220Q\220d\230\047\351\240\274`\211\004\340\334@E\220\027[\230\016\363\000v\250\245\002 \334@9L\270\000\337b\t\230\025\353\000\356\"\216\013\n\n\230%\236A\202a#\n\013\277\2305\240\001\240\021\007\016\014\253\230E\212`!\262a%\274\204\001\340\374\315g\355aq\220\007\220w\230\377g\240V\250=\270\001\270\377\035\300a\300q\340\010\024\273\220G\214#z\230\023\320 Q\377\340\010\r\210U\220$\220\337g\230T\240\031\325\002\r\0228\000\014\000\033,\r#\220X?\t\000\014\356\017\014\"\220Iq\004:\260Y\177\270a\270y\310\001\330}\000~\007\rz\310\021\330\035!\233\002L\"\003\016\000\340\010\367D\311\205\001I\201@\357a\200A\340\253Fw\240c\324\301A\017\001\035\327\000\021\356\205\001L\230\367\001\230\021\207c4\220q\230\335\n\303\205\001\320\004\"\354@\025\250\377a\250t\260:\270Q\320\377\004?\270q\330\010\036\230\367e\2406\214\207\001\036\230k\250\337\022\2502\250S\265C\013\210G6\220\036\301\205\001\337(\351SC\274\204\001\177\330\014\032\230!\2306\227`\000\001\005";
28911
28911
  PyObject *data = __Pyx_DecompressString_LZSS(cstring, 2299, 4654);
28912
28912
  #define __Pyx_DecompressString_UNUSED
28913
28913
  if (unlikely(!data)) __PYX_ERR(0, 1, __pyx_L1_error)
@@ -28916,7 +28916,7 @@ static const char cstring[] = "\377(tree fr\377agment)0\377.3.29<B<\377H<I<Q<b<\
28916
28916
  if (likely(bytes)); else { Py_DECREF(data); __PYX_ERR(0, 1, __pyx_L1_error) }
28917
28917
  #endif
28918
28918
  #else /* compression: none (4654 bytes) */
28919
- static const char bytes[] = "(tree fragment)0.3.29<B<H<I<Q<b<d<h<i<q?Illegal 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 \047annotation_typing\047 directive to False.Opcode out of range 0-255: Undefined opcode: add_notedctx used twice.dctx was not used.disableectx used twice.ectx was not used.enablegcisenabledno default __reduce__ due to non-trivial __cinit__not bytes: 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_valueNoneTypeSafeDecodeBufferSafeDecodeBuffer.__reduce_cython__SafeDecodeBuffer.__setstate_cython__SafeDecodeBuffer.rd_float8SafeDecodeBuffer.rd_int1SafeDecodeBuffer.rd_int2SafeDecodeBuffer.rd_int4SafeDecodeBuffer.rd_int8SafeDecodeBuffer.rd_uint1SafeDecodeBuffer.rd_uint2SafeDecodeBuffer.rd_uint4SafeDecodeBuffer.rd_uint8SafeEnco""deBufferSafeEncodeBuffer.__reduce_cython__SafeEncodeBuffer.__setstate_cython__SafeEncodeBuffer.wr_float8SafeEncodeBuffer.wr_int1SafeEncodeBuffer.wr_int2SafeEncodeBuffer.wr_int4SafeEncodeBuffer.wr_int8SafeEncodeBuffer.wr_uint1SafeEncodeBuffer.wr_uint2SafeEncodeBuffer.wr_uint4SafeEncodeBuffer.wr_uint8TMsgpackError__Pyx_PyDict_NextRef__annotate____dict____doc____func____getstate____main____metaclass____module____mro_entries____name____new____prepare____pyx_checksum__pyx_result__pyx_state__pyx_type__pyx_unpickle_BaseDecodeBuffer__pyx_unpickle_BaseEncodeBuffer__pyx_unpickle_SafeDecodeBuffer__pyx_unpickle_SafeEncodeBuffer__pyx_vtable____qualname____reduce____reduce_cython____reduce_ex____set_name____setstate____setstate_cython____test____version___dict_is_coroutine_typeas_bytesasyncio.coroutinesbyteordercline_in_tracebackcodecdbufdbuf_take_valuedecode_from_bytesdecode_from_listebufebuf_put_valueencode_valueendextenditemslittlemsgnpackpopput_bytesput_dictput_sequenceput_strput_valuerd_bytesrd_float8rd_int1rd_int2rd_int4rd_int8rd_strrd_uint1rd_uint2rd_uint4rd_uint8selfsetdefaultsortsort_keysstartstatestructsystake_bytestake_dicttake_listtake_strtake_tupletmsgpack.coreunpackupdateuse_setstatevaluevalueswr_byteswr_float8wr_int1wr_int2wr_int4wr_int8wr_strwr_uint1wr_uint2wr_uint4wr_uint8\200\001\330\004\n\210+\220Q\200\001\330\004.\250a\250v\260Q\200\001\340\004\013\210?\230!\2309\240A\240W\250A\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\200\001\360\010\000\005\014\210>\230\021\230)\2401\240G\2507\260!\200\001\360\010\000\n\033\230!\330\010\021\220\024\220Q\330\010\020\220\007\220q\230\006\230l\250!\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\n\033\230!""\330\010\021\220\024\220V\2304\230v\240T\250\021\330\010\020\220\007\220q\230\006\230l\250!\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\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\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\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\014\210J\220a\220w\230e\2407\250!\2501\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\017\210t\220;\230a\230w\240a\240w\250a\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\200A\330\010\026\220a\220v\230Q\200A\330\010\032\230!\330\010\017\210t\220;\230a\230w\240a\240u\250A\200A\330\010\033\2301\330\010\017\210t\220;\230a\230w\240a\240u\250A\200A\330\010\034\230A\330\010\017\210t\220;\230a\230w\240a\240u\250A\200A\330\010\035\230U\240\047\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\047\240\021\330\010\026\220a\220v\230Q\340\010\014\210E\220\027\230\016\240a\240v\250Q\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 \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%\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\017\210t\220;\230a\230w\240c\250\021\250!\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\320\004\"\240\047\250\025\250a\250t\260:\270Q\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\047\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";
28919
+ static const char bytes[] = "(tree fragment)0.3.30<B<H<I<Q<b<d<h<i<q?Illegal 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 \047annotation_typing\047 directive to False.Opcode out of range 0-255: Undefined opcode: add_notedctx used twice.dctx was not used.disableectx used twice.ectx was not used.enablegcisenabledno default __reduce__ due to non-trivial __cinit__not bytes: 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_valueNoneTypeSafeDecodeBufferSafeDecodeBuffer.__reduce_cython__SafeDecodeBuffer.__setstate_cython__SafeDecodeBuffer.rd_float8SafeDecodeBuffer.rd_int1SafeDecodeBuffer.rd_int2SafeDecodeBuffer.rd_int4SafeDecodeBuffer.rd_int8SafeDecodeBuffer.rd_uint1SafeDecodeBuffer.rd_uint2SafeDecodeBuffer.rd_uint4SafeDecodeBuffer.rd_uint8SafeEnco""deBufferSafeEncodeBuffer.__reduce_cython__SafeEncodeBuffer.__setstate_cython__SafeEncodeBuffer.wr_float8SafeEncodeBuffer.wr_int1SafeEncodeBuffer.wr_int2SafeEncodeBuffer.wr_int4SafeEncodeBuffer.wr_int8SafeEncodeBuffer.wr_uint1SafeEncodeBuffer.wr_uint2SafeEncodeBuffer.wr_uint4SafeEncodeBuffer.wr_uint8TMsgpackError__Pyx_PyDict_NextRef__annotate____dict____doc____func____getstate____main____metaclass____module____mro_entries____name____new____prepare____pyx_checksum__pyx_result__pyx_state__pyx_type__pyx_unpickle_BaseDecodeBuffer__pyx_unpickle_BaseEncodeBuffer__pyx_unpickle_SafeDecodeBuffer__pyx_unpickle_SafeEncodeBuffer__pyx_vtable____qualname____reduce____reduce_cython____reduce_ex____set_name____setstate____setstate_cython____test____version___dict_is_coroutine_typeas_bytesasyncio.coroutinesbyteordercline_in_tracebackcodecdbufdbuf_take_valuedecode_from_bytesdecode_from_listebufebuf_put_valueencode_valueendextenditemslittlemsgnpackpopput_bytesput_dictput_sequenceput_strput_valuerd_bytesrd_float8rd_int1rd_int2rd_int4rd_int8rd_strrd_uint1rd_uint2rd_uint4rd_uint8selfsetdefaultsortsort_keysstartstatestructsystake_bytestake_dicttake_listtake_strtake_tupletmsgpack.coreunpackupdateuse_setstatevaluevalueswr_byteswr_float8wr_int1wr_int2wr_int4wr_int8wr_strwr_uint1wr_uint2wr_uint4wr_uint8\200\001\330\004\n\210+\220Q\200\001\330\004.\250a\250v\260Q\200\001\340\004\013\210?\230!\2309\240A\240W\250A\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\200\001\360\010\000\005\014\210>\230\021\230)\2401\240G\2507\260!\200\001\360\010\000\n\033\230!\330\010\021\220\024\220Q\330\010\020\220\007\220q\230\006\230l\250!\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\n\033\230!""\330\010\021\220\024\220V\2304\230v\240T\250\021\330\010\020\220\007\220q\230\006\230l\250!\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\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\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\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\014\210J\220a\220w\230e\2407\250!\2501\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\017\210t\220;\230a\230w\240a\240w\250a\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\200A\330\010\026\220a\220v\230Q\200A\330\010\032\230!\330\010\017\210t\220;\230a\230w\240a\240u\250A\200A\330\010\033\2301\330\010\017\210t\220;\230a\230w\240a\240u\250A\200A\330\010\034\230A\330\010\017\210t\220;\230a\230w\240a\240u\250A\200A\330\010\035\230U\240\047\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\047\240\021\330\010\026\220a\220v\230Q\340\010\014\210E\220\027\230\016\240a\240v\250Q\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 \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%\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\017\210t\220;\230a\230w\240c\250\021\250!\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\320\004\"\240\047\250\025\250a\250t\260:\270Q\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\047\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";
28920
28920
  PyObject *data = NULL;
28921
28921
  #define __Pyx_DecompressString_UNUSED
28922
28922
  #define __Pyx_DecompressString_LZSS_UNUSED
@@ -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.29"
4
+ __version__ = "0.3.30"
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tmsgpack
3
- Version: 0.3.29
3
+ Version: 0.3.30
4
4
  Summary: Typed MessagePack serializer (inspired by but different from msgpack)
5
5
  Author-email: Yaakov Belch <yaakov.belch@gmail.com>
6
6
  License: ISC
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes