Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
Python-3.10.14 /
Doc /
howto /
Delete
Unzip
Name
Size
Permission
Date
Action
annotations.rst
9.37
KB
-rw-r--r--
2024-03-19 22:46
argparse.rst
22.97
KB
-rw-r--r--
2024-03-19 22:46
clinic.rst
66.76
KB
-rw-r--r--
2024-03-19 22:46
cporting.rst
1006
B
-rw-r--r--
2024-03-19 22:46
curses.rst
24.64
KB
-rw-r--r--
2024-03-19 22:46
descriptor.rst
50.6
KB
-rw-r--r--
2024-03-19 22:46
functional.rst
48.21
KB
-rw-r--r--
2024-03-19 22:46
index.rst
673
B
-rw-r--r--
2024-03-19 22:46
instrumentation.rst
14.63
KB
-rw-r--r--
2024-03-19 22:46
ipaddress.rst
11.46
KB
-rw-r--r--
2024-03-19 22:46
logging-cookbook.rst
152.44
KB
-rw-r--r--
2024-03-19 22:46
logging.rst
47.68
KB
-rw-r--r--
2024-03-19 22:46
logging_flow.png
21.39
KB
-rw-r--r--
2024-03-19 22:46
pyporting.rst
22.13
KB
-rw-r--r--
2024-03-19 22:46
regex.rst
61.43
KB
-rw-r--r--
2024-03-19 22:46
sockets.rst
18.35
KB
-rw-r--r--
2024-03-19 22:46
sorting.rst
11.87
KB
-rw-r--r--
2024-03-19 22:46
unicode.rst
31.12
KB
-rw-r--r--
2024-03-19 22:46
urllib2.rst
24.14
KB
-rw-r--r--
2024-03-19 22:46
Save
Rename
.. highlight:: c .. _cporting-howto: ************************************* Porting Extension Modules to Python 3 ************************************* We recommend the following resources for porting extension modules to Python 3: * The `Migrating C extensions`_ chapter from *Supporting Python 3: An in-depth guide*, a book on moving from Python 2 to Python 3 in general, guides the reader through porting an extension module. * The `Porting guide`_ from the *py3c* project provides opinionated suggestions with supporting code. * The `Cython`_ and `CFFI`_ libraries offer abstractions over Python's C API. Extensions generally need to be re-written to use one of them, but the library then handles differences between various Python versions and implementations. .. _Migrating C extensions: http://python3porting.com/cextensions.html .. _Porting guide: https://py3c.readthedocs.io/en/latest/guide.html .. _Cython: https://cython.org/ .. _CFFI: https://cffi.readthedocs.io/en/latest/