mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-08 16:23:42 -04:00
Merge pull request #5403 from ThomasWaldmann/cython-language-level-1.1
set cython language_level
This commit is contained in:
commit
64b4482a1e
3 changed files with 4 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
# coding: utf-8
|
||||
#cython: embedsignature=True, c_string_encoding=ascii
|
||||
#cython: embedsignature=True, c_string_encoding=ascii, language_level=2
|
||||
|
||||
from cpython cimport *
|
||||
from cpython.version cimport PY_MAJOR_VERSION
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# coding: utf-8
|
||||
#cython: embedsignature=True, c_string_encoding=ascii
|
||||
#cython: embedsignature=True, c_string_encoding=ascii, language_level=2
|
||||
|
||||
from cpython.version cimport PY_MAJOR_VERSION
|
||||
from cpython.bytes cimport (
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
# cython: language_level=3
|
||||
|
||||
from libc.stdint cimport int64_t
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue