mirror of
https://github.com/borgbackup/borg.git
synced 2026-05-28 04:03:21 -04:00
Merge pull request #4241 from ThomasWaldmann/cythonize-ll3-1.1
add "# cython: language_level=3" directive to .pyx files, fixes #4214
This commit is contained in:
commit
56433f7e25
10 changed files with 19 additions and 2 deletions
|
|
@ -1,3 +1,5 @@
|
|||
# cython: language_level=3
|
||||
|
||||
from ..helpers import bin_to_hex
|
||||
|
||||
from libc.stdint cimport uint32_t
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# cython: language_level=3
|
||||
|
||||
API_VERSION = '1.1_01'
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
# cython: language_level=3
|
||||
|
||||
"""
|
||||
borg.compress
|
||||
=============
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
# cython: language_level=3
|
||||
|
||||
"""A thin OpenSSL wrapper"""
|
||||
|
||||
import hashlib
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# cython: language_level=3
|
||||
|
||||
from collections import namedtuple
|
||||
import locale
|
||||
import os
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
# cython: language_level=3
|
||||
|
||||
import stat
|
||||
from collections import namedtuple
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
# cython: language_level=3
|
||||
|
||||
import os
|
||||
|
||||
from ..helpers import user2uid, group2gid
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
# cython: language_level=3
|
||||
|
||||
import os
|
||||
|
||||
from ..helpers import posix_acl_use_stored_uid_gid
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
# cython: language_level=3
|
||||
|
||||
import os
|
||||
import re
|
||||
import stat
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
# cython: language_level=3
|
||||
|
||||
import errno
|
||||
import os
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue