diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-02-02 08:16:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 08:16:36 (GMT) |
commit | a05866ce3e617e2b74c205f27a89eab63c7b3101 (patch) | |
tree | 391e071ab68efa34e388a3ab23d70bfba6bdfb41 /Modules/overlapped.c | |
parent | 3483aa65dfebfc60a87ea9db3f20da84be41f606 (diff) | |
download | cpython-a05866ce3e617e2b74c205f27a89eab63c7b3101.zip cpython-a05866ce3e617e2b74c205f27a89eab63c7b3101.tar.gz cpython-a05866ce3e617e2b74c205f27a89eab63c7b3101.tar.bz2 |
Remove Python 3.3 compatibility code from overlapped.c (GH-31049)
Diffstat (limited to 'Modules/overlapped.c')
-rw-r--r-- | Modules/overlapped.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Modules/overlapped.c b/Modules/overlapped.c index 7c45708..2ba48c8 100644 --- a/Modules/overlapped.c +++ b/Modules/overlapped.c @@ -23,12 +23,6 @@ # define T_POINTER T_ULONGLONG #endif -/* Compatibility with Python 3.3 */ -#if PY_VERSION_HEX < 0x03040000 -# define PyMem_RawMalloc PyMem_Malloc -# define PyMem_RawFree PyMem_Free -#endif - #define F_HANDLE F_POINTER #define F_ULONG_PTR F_POINTER #define F_DWORD "k" |