Remove PEP 291 compatibility requirements for ctypes and modulefinder
https://mail.python.org/pipermail/python-dev/2016-May/144502.html
This commit is contained in:
parent
0e1c5f7dae
commit
f45c1755c3
|
@ -1,6 +1,3 @@
|
|||
######################################################################
|
||||
# This file should be kept compatible with Python 2.3, see PEP 291. #
|
||||
######################################################################
|
||||
"""create and manipulate C data types in Python"""
|
||||
|
||||
import os as _os, sys as _sys
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
######################################################################
|
||||
# This file should be kept compatible with Python 2.3, see PEP 291. #
|
||||
######################################################################
|
||||
import sys
|
||||
from ctypes import *
|
||||
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
######################################################################
|
||||
# This file should be kept compatible with Python 2.3, see PEP 291. #
|
||||
######################################################################
|
||||
"""
|
||||
Enough Mach-O to make your head spin.
|
||||
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
######################################################################
|
||||
# This file should be kept compatible with Python 2.3, see PEP 291. #
|
||||
######################################################################
|
||||
"""
|
||||
dyld emulation
|
||||
"""
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
######################################################################
|
||||
# This file should be kept compatible with Python 2.3, see PEP 291. #
|
||||
######################################################################
|
||||
"""
|
||||
Generic dylib path manipulation
|
||||
"""
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
######################################################################
|
||||
# This file should be kept compatible with Python 2.3, see PEP 291. #
|
||||
######################################################################
|
||||
"""
|
||||
Generic framework path manipulation
|
||||
"""
|
||||
|
|
|
@ -326,6 +326,7 @@ class StructureTestCase(unittest.TestCase):
|
|||
"(Phone) <type 'exceptions.TypeError'>: "
|
||||
"expected string or Unicode object, int found")
|
||||
else:
|
||||
# Compatibility no longer strictly required
|
||||
self.assertEqual(msg,
|
||||
"(Phone) exceptions.TypeError: "
|
||||
"expected string or Unicode object, int found")
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
######################################################################
|
||||
# This file should be kept compatible with Python 2.3, see PEP 291. #
|
||||
######################################################################
|
||||
import sys, os
|
||||
|
||||
# find_library(name) returns the pathname of a library, or None.
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
######################################################################
|
||||
# This file should be kept compatible with Python 2.3, see PEP 291. #
|
||||
######################################################################
|
||||
|
||||
# The most useful windows datatypes
|
||||
from ctypes import *
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
"""Find modules used by a script, using introspection."""
|
||||
# This module should be kept compatible with Python 2.2, see PEP 291.
|
||||
|
||||
from __future__ import generators
|
||||
import dis
|
||||
|
@ -13,7 +12,7 @@ import struct
|
|||
if hasattr(sys.__stdout__, "newlines"):
|
||||
READ_MODE = "U" # universal line endings
|
||||
else:
|
||||
# remain compatible with Python < 2.3
|
||||
# Python < 2.3 compatibility, no longer strictly required
|
||||
READ_MODE = "r"
|
||||
|
||||
LOAD_CONST = dis.opmap['LOAD_CONST']
|
||||
|
|
|
@ -77,6 +77,9 @@ Core and Builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Removed the requirements for the ctypes and modulefinder modules to be
|
||||
compatible with earlier Python versions.
|
||||
|
||||
- Issue #22274: In the subprocess module, allow stderr to be redirected to
|
||||
stdout even when stdout is not redirected. Patch by Akira Li.
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/*****************************************************************
|
||||
This file should be kept compatible with Python 2.3, see PEP 291.
|
||||
This file contains remnant Python 2.3 compatibility code that is no longer
|
||||
strictly required.
|
||||
*****************************************************************/
|
||||
|
||||
|
||||
|
|
|
@ -1,12 +1,7 @@
|
|||
/*****************************************************************
|
||||
This file should be kept compatible with Python 2.3, see PEP 291.
|
||||
*****************************************************************/
|
||||
|
||||
|
||||
#include <Python.h>
|
||||
|
||||
/*
|
||||
Backwards compatibility:
|
||||
Backwards compatibility, no longer strictly required:
|
||||
Python2.2 used LONG_LONG instead of PY_LONG_LONG
|
||||
*/
|
||||
#if defined(HAVE_LONG_LONG) && !defined(PY_LONG_LONG)
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/*****************************************************************
|
||||
This file should be kept compatible with Python 2.3, see PEP 291.
|
||||
This file contains remnant Python 2.3 compatibility code that is no longer
|
||||
strictly required.
|
||||
*****************************************************************/
|
||||
|
||||
#include "Python.h"
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/*****************************************************************
|
||||
This file should be kept compatible with Python 2.3, see PEP 291.
|
||||
This file contains remnant Python 2.3 compatibility code that is no longer
|
||||
strictly required.
|
||||
*****************************************************************/
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/*****************************************************************
|
||||
This file should be kept compatible with Python 2.3, see PEP 291.
|
||||
This file contains remnant Python 2.3 compatibility code that is no longer
|
||||
strictly required.
|
||||
*****************************************************************/
|
||||
|
||||
#include "Python.h"
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/*****************************************************************
|
||||
This file should be kept compatible with Python 2.3, see PEP 291.
|
||||
This file contains remnant Python 2.3 compatibility code that is no longer
|
||||
strictly required.
|
||||
*****************************************************************/
|
||||
|
||||
#if defined (__SVR4) && defined (__sun)
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
/*****************************************************************
|
||||
This file should be kept compatible with Python 2.3, see PEP 291.
|
||||
*****************************************************************/
|
||||
|
||||
#ifndef _CTYPES_DLFCN_H_
|
||||
#define _CTYPES_DLFCN_H_
|
||||
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
/*****************************************************************
|
||||
This file should be kept compatible with Python 2.3, see PEP 291.
|
||||
*****************************************************************/
|
||||
|
||||
#include <Python.h>
|
||||
#include <ffi.h>
|
||||
#ifdef MS_WIN32
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
/*****************************************************************
|
||||
This file should be kept compatible with Python 2.3, see PEP 291.
|
||||
*****************************************************************/
|
||||
|
||||
#include "Python.h"
|
||||
#include <ffi.h>
|
||||
#ifdef MS_WIN32
|
||||
|
@ -449,6 +445,7 @@ PyCStructUnionType_update_stgdict(PyObject *type, PyObject *fields, int isStruct
|
|||
Py_DECREF(pair);
|
||||
PyErr_Format(PyExc_TypeError,
|
||||
#if (PY_VERSION_HEX < 0x02050000)
|
||||
/* Compatibility no longer strictly required */
|
||||
"second item in _fields_ tuple (index %d) must be a C type",
|
||||
#else
|
||||
"second item in _fields_ tuple (index %zd) must be a C type",
|
||||
|
|
Loading…
Reference in New Issue