diff options
author | INADA Naoki <methane@users.noreply.github.com> | 2018-11-14 20:04:22 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-14 20:04:22 +0900 |
commit | 2f808b6e012bdc506ca83a33c2f53af1b255a069 (patch) | |
tree | 4b0a275a2137fab85d680a0958a8b7f490b15b36 | |
parent | d782464c9150e448ab3a8d81197ff335e1ac2c2b (diff) | |
download | msgpack-python-2f808b6e012bdc506ca83a33c2f53af1b255a069.tar.gz |
Try language_level=3 (#329)
-rw-r--r-- | msgpack/_cmsgpack.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/_cmsgpack.pyx b/msgpack/_cmsgpack.pyx index a48d5b5..8ebdbf5 100644 --- a/msgpack/_cmsgpack.pyx +++ b/msgpack/_cmsgpack.pyx @@ -1,4 +1,4 @@ # coding: utf-8 -#cython: embedsignature=True, c_string_encoding=ascii, language_level=2 +#cython: embedsignature=True, c_string_encoding=ascii, language_level=3 include "_packer.pyx" include "_unpacker.pyx" |