Desusos¶
Pending removal in Python 3.15¶
The import system:
Setting
__cached__
on a module while failing to set__spec__.cached
is deprecated. In Python 3.15,__cached__
will cease to be set or take into consideration by the import system or standard library. (gh-97879)Setting
__package__
on a module while failing to set__spec__.parent
is deprecated. In Python 3.15,__package__
will cease to be set or take into consideration by the import system or standard library. (gh-97879)
-
La función
ctypes.SetPointerType()
no documentada ha quedado obsoleta desde Python 3.13.
-
El obsoleto y poco utilizado
CGIHTTPRequestHandler
ha quedado obsoleto desde Python 3.13. No existe un reemplazo directo. Anything es mejor que CGI para interconectar un servidor web con un controlador de solicitudes.La bandera
--cgi
de la interfaz de línea de comandos python -m http.server ha quedado obsoleta desde Python 3.13.
-
La función
getdefaultlocale()
ha quedado obsoleta desde Python 3.11. Su eliminación se había planeado originalmente para Python 3.13 (gh-90817), pero se pospuso hasta Python 3.15. Utilicegetlocale()
,setlocale()
ygetencoding()
en su lugar. (Contribuido por Hugo van Kemenade en gh-111187.)
-
PurePath.is_reserved()
ha quedado obsoleto desde Python 3.13. Utiliceos.path.isreserved()
para detectar rutas reservadas en Windows.
-
java_ver()
ha quedado obsoleto desde Python 3.13. Esta función solo es útil para la compatibilidad con Jython, tiene una API confusa y, en gran medida, no se ha probado.
-
The
check_home
argument ofsysconfig.is_python_build()
has been deprecated since Python 3.12.
-
RLock()
no acepta argumentos en Python 3.15. El paso de cualquier argumento ha quedado obsoleto desde Python 3.14, ya que la versión de Python no permite ningún argumento, pero la versión de C permite cualquier cantidad de argumentos posicionales o de palabras clave, ignorando todos los argumentos.
-
types.CodeType
: Accessingco_lnotab
was deprecated in PEP 626 since 3.10 and was planned to be removed in 3.12, but it only got a properDeprecationWarning
in 3.12. May be removed in 3.15. (Contributed by Nikita Sobolev in gh-101866.)
-
The undocumented keyword argument syntax for creating
NamedTuple
classes (for example,Point = NamedTuple("Point", x=int, y=int)
) has been deprecated since Python 3.13. Use the class-based syntax or the functional syntax instead.La función decoradora
typing.no_type_check_decorator()
ha quedado obsoleta desde Python 3.13. Después de ocho años en el módulotyping
, todavía no ha sido compatible con ningún verificador de tipos importante.
wave
:Los métodos
getmark()
,setmark()
ygetmarkers()
de las clasesWave_read
yWave_write
han quedado obsoletos desde Python 3.13.
Pending removal in Python 3.16¶
The import system:
Setting
__loader__
on a module while failing to set__spec__.loader
is deprecated. In Python 3.16,__loader__
will cease to be set or taken into consideration by the import system or the standard library.
-
El código de formato
'u'
(wchar_t
) ha quedado obsoleto en la documentación desde Python 3.3 y en el entorno de ejecución desde Python 3.13. Utilice el código de formato'w'
(Py_UCS4
) para caracteres Unicode.
-
asyncio.iscoroutinefunction()
is deprecated and will be removed in Python 3.16; useinspect.iscoroutinefunction()
instead. (Contributed by Jiahao Li and Kumar Aditya in gh-122875.)asyncio
policy system is deprecated and will be removed in Python 3.16. In particular, the following classes and functions are deprecated:Users should use
asyncio.run()
orasyncio.Runner
with loop_factory to use the desired event loop implementation.For example, to use
asyncio.SelectorEventLoop
on Windows:import asyncio async def main(): ... asyncio.run(main(), loop_factory=asyncio.SelectorEventLoop)
(Contributed by Kumar Aditya in gh-127949.)
-
La inversión bit a bit en tipos booleanos,
~True
o~False
, ha quedado obsoleta desde Python 3.12, ya que produce resultados sorprendentes y poco intuitivos (-2
y-1
). En su lugar, utilicenot x
para la negación lógica de un valor booleano. En el caso poco frecuente de que necesite la inversión bit a bit del entero subyacente, convierta aint
explícitamente (~int(x)
).
-
Calling the Python implementation of
functools.reduce()
with function or sequence as keyword arguments has been deprecated since Python 3.14.
-
La excepción
ExecError
ha quedado obsoleta desde Python 3.14. No ha sido utilizada por ninguna función enshutil
desde Python 3.4 y ahora es un alias deRuntimeError
.
-
El método
Class.get_methods
ha quedado obsoleto desde Python 3.14.
sys
:La función
_enablelegacywindowsfsencoding()
ha quedado obsoleta desde Python 3.13. En su lugar, utilice la variable de entornoPYTHONLEGACYWINDOWSFSENCODING
.
-
The
sysconfig.expand_makefile_vars()
function has been deprecated since Python 3.14. Use thevars
argument ofsysconfig.get_paths()
instead.
-
El atributo
TarFile.tarfile
, no documentado ni utilizado, ha quedado obsoleto desde Python 3.13.
Pending removal in future versions¶
Las siguientes API se eliminarán en el futuro, aunque actualmente no hay una fecha programada para su eliminación.
-
Nesting argument groups and nesting mutually exclusive groups are deprecated.
Passing the undocumented keyword argument prefix_chars to
add_argument_group()
is now deprecated.The
argparse.FileType
type converter is deprecated.
-
bool(NotImplemented)
.Generadores: las firmas
throw(type, exc, tb)
yathrow(type, exc, tb)
están obsoletas: utilicethrow(exc)
yathrow(exc)
en su lugar, la firma de argumento único.Actualmente, Python acepta literales numéricos seguidos inmediatamente de palabras clave, por ejemplo,
0in x
,1or x
,0if 1else 2
. Permite expresiones confusas y ambiguas como[0x1for x in y]
(que se puede interpretar como[0x1 for x in y]
o[0x1f or x in y]
). Se genera una advertencia de sintaxis si el literal numérico va seguido inmediatamente de una de las palabras claveand
,else
,for
,if
,in
,is
yor
. En una versión futura, se cambiará a un error de sintaxis. (gh-87999)Compatibilidad con los métodos
__index__()
y__int__()
que devuelven un tipo que no es int: estos métodos serán necesarios para devolver una instancia de una subclase estricta deint
.Compatibilidad con el método
__float__()
que devuelve una subclase estricta defloat
: estos métodos serán necesarios para devolver una instancia defloat
.Compatibilidad con el método
__complex__()
que devuelve una subclase estricta decomplex
: estos métodos serán necesarios para devolver una instancia decomplex
.Delegación del método
int()
al__trunc__()
.Ahora está obsoleto el paso de un número complejo como argumento real o imag en el constructor
complex()
; solo debe pasarse como un único argumento posicional. (Contribuido por Serhiy Storchaka en gh-109218.)
calendar
: Las constantescalendar.January
ycalendar.February
han quedado obsoletas y han sido reemplazadas porcalendar.JANUARY
ycalendar.FEBRUARY
. (Contribuido por Prince Roshan en gh-103636.)codeobject.co_lnotab
: utilice el métodocodeobject.co_lines()
en su lugar.-
utcnow()
: utilicedatetime.datetime.now(tz=datetime.UTC)
.utcfromtimestamp()
: utilicedatetime.datetime.fromtimestamp(timestamp, tz=datetime.UTC)
.
gettext
: El valor plural debe ser un número entero.-
Método
load_module()
: utiliceexec_module()
en su lugar.cache_from_source()
El parámetro debug_override está obsoleto: utilice el parámetro optimization en su lugar.
-
Interfaz de tupla
EntryPoints
.None
implícito en los valores de retorno.
logging
: el métodowarn()
ha quedado obsoleto desde Python 3.3, utilicewarning()
en su lugar.mailbox
: El uso del modo de entrada y texto StringIO está obsoleto; en su lugar, utilice BytesIO y el modo binario.os
: Llamada aos.register_at_fork()
en un proceso multiproceso.pydoc.ErrorDuringImport
: Un valor de tupla para el parámetro exc_info está obsoleto, utilice una instancia de excepción.re
: Ahora se aplican reglas más estrictas para las referencias numéricas de grupos y los nombres de grupos en expresiones regulares. Ahora solo se aceptan secuencias de dígitos ASCII como referencia numérica. El nombre de grupo en patrones de bytes y cadenas de reemplazo ahora solo puede contener letras y dígitos ASCII y guiones bajos. (Contribuido por Serhiy Storchaka en gh-91760.)Módulos
sre_compile
,sre_constants
ysre_parse
.shutil
: El parámetro onerror dermtree()
está obsoleto en Python 3.12; utilice el parámetro onexc en su lugar.Opciones y protocolos
ssl
:ssl.SSLContext
sin argumento de protocolo está obsoleto.ssl.SSLContext
:set_npn_protocols()
yselected_npn_protocol()
están obsoletos: utilice ALPN en su lugar.Opciones de
ssl.OP_NO_SSL*
Opciones de
ssl.OP_NO_TLS*
ssl.PROTOCOL_SSLv3
ssl.PROTOCOL_TLS
ssl.PROTOCOL_TLSv1
ssl.PROTOCOL_TLSv1_1
ssl.PROTOCOL_TLSv1_2
ssl.TLSVersion.SSLv3
ssl.TLSVersion.TLSv1
ssl.TLSVersion.TLSv1_1
sysconfig.is_python_build()
El parámetro check_home está obsoleto y se ignora.Métodos
threading
:threading.Condition.notifyAll()
: utilicenotify_all()
.threading.Event.isSet()
: utiliceis_set()
.threading.Thread.isDaemon()
,threading.Thread.setDaemon()
: utilice el atributothreading.Thread.daemon
.threading.Thread.getName()
,threading.Thread.setName()
: utilice el atributothreading.Thread.name
.threading.currentThread()
: utilicethreading.current_thread()
.threading.activeCount()
: utilicethreading.active_count()
.
unittest.IsolatedAsyncioTestCase
: está obsoleto devolver un valor que no seaNone
de un caso de prueba.Funciones obsoletas de
urllib.parse
:urlparse()
en su lugarsplitattr()
splithost()
splitnport()
splitpasswd()
splitport()
splitquery()
splittag()
splittype()
splituser()
splitvalue()
to_bytes()
wsgiref
:SimpleHandler.stdout.write()
no debería realizar escrituras parciales.xml.etree.ElementTree
: La prueba del valor de verdad de unElement
está obsoleta. En una versión futura, siempre devolveráTrue
. En su lugar, es preferible realizar pruebas explícitaslen(elem)
oelem is not None
.zipimport.zipimporter.load_module()
está obsoleto: utiliceexec_module()
en su lugar.
C API deprecations¶
Pending removal in Python 3.15¶
La copia incluida de
libmpdecimal
.PyImport_ImportModuleNoBlock()
: utilicePyImport_ImportModule()
en su lugar.PyWeakref_GetObject()
andPyWeakref_GET_OBJECT()
: UsePyWeakref_GetRef()
instead. The pythoncapi-compat project can be used to getPyWeakref_GetRef()
on Python 3.12 and older.Tipo
Py_UNICODE
y macroPy_UNICODE_WIDE
: utilicewchar_t
en su lugar.Funciones de inicialización de Python:
PySys_ResetWarnOptions()
: borresys.warnoptions
ywarnings.filters
en su lugar.Py_GetExecPrefix()
: Getsys.base_exec_prefix
andsys.exec_prefix
instead.Py_GetPath()
: Obtengasys.path
en su lugar.Py_GetPrefix()
: Getsys.base_prefix
andsys.prefix
instead.Py_GetProgramFullPath()
: Obtengasys.executable
en su lugar.Py_GetProgramName()
: Obtengasys.executable
en su lugar.Py_GetPythonHome()
: GetPyConfig_Get("home")
or thePYTHONHOME
environment variable instead.
See also the
PyConfig_Get()
function.Funciones para configurar la inicialización de Python, obsoletas en Python 3.11:
PySys_SetArgvEx()
: EstablezcaPyConfig.argv
en su lugar.PySys_SetArgv()
: EstablezcaPyConfig.argv
en su lugar.Py_SetProgramName()
: EstablezcaPyConfig.program_name
en su lugar.Py_SetPythonHome()
: EstablezcaPyConfig.home
en su lugar.
La API
Py_InitializeFromConfig()
debe utilizarse conPyConfig
.Variables de configuración global:
Py_DebugFlag
: UsePyConfig.parser_debug
orPyConfig_Get("parser_debug")
instead.Py_VerboseFlag
: UsePyConfig.verbose
orPyConfig_Get("verbose")
instead.Py_QuietFlag
: UsePyConfig.quiet
orPyConfig_Get("quiet")
instead.Py_InteractiveFlag
: UsePyConfig.interactive
orPyConfig_Get("interactive")
instead.Py_InspectFlag
: UsePyConfig.inspect
orPyConfig_Get("inspect")
instead.Py_OptimizeFlag
: UsePyConfig.optimization_level
orPyConfig_Get("optimization_level")
instead.Py_NoSiteFlag
: UsePyConfig.site_import
orPyConfig_Get("site_import")
instead.Py_BytesWarningFlag
: UsePyConfig.bytes_warning
orPyConfig_Get("bytes_warning")
instead.Py_FrozenFlag
: UsePyConfig.pathconfig_warnings
orPyConfig_Get("pathconfig_warnings")
instead.Py_IgnoreEnvironmentFlag
: UsePyConfig.use_environment
orPyConfig_Get("use_environment")
instead.Py_DontWriteBytecodeFlag
: UsePyConfig.write_bytecode
orPyConfig_Get("write_bytecode")
instead.Py_NoUserSiteDirectory
: UsePyConfig.user_site_directory
orPyConfig_Get("user_site_directory")
instead.Py_UnbufferedStdioFlag
: UsePyConfig.buffered_stdio
orPyConfig_Get("buffered_stdio")
instead.Py_HashRandomizationFlag
: UsePyConfig.use_hash_seed
andPyConfig.hash_seed
orPyConfig_Get("hash_seed")
instead.Py_IsolatedFlag
: UsePyConfig.isolated
orPyConfig_Get("isolated")
instead.Py_LegacyWindowsFSEncodingFlag
: UsePyPreConfig.legacy_windows_fs_encoding
orPyConfig_Get("legacy_windows_fs_encoding")
instead.Py_LegacyWindowsStdioFlag
: UsePyConfig.legacy_windows_stdio
orPyConfig_Get("legacy_windows_stdio")
instead.Py_FileSystemDefaultEncoding
,Py_HasFileSystemDefaultEncoding
: UsePyConfig.filesystem_encoding
orPyConfig_Get("filesystem_encoding")
instead.Py_FileSystemDefaultEncodeErrors
: UsePyConfig.filesystem_errors
orPyConfig_Get("filesystem_errors")
instead.Py_UTF8Mode
: UsePyPreConfig.utf8_mode
orPyConfig_Get("utf8_mode")
instead. (seePy_PreInitialize()
)
The
Py_InitializeFromConfig()
API should be used withPyConfig
to set these options. OrPyConfig_Get()
can be used to get these options at runtime.
Pending removal in future versions¶
Las siguientes API están obsoletas y se eliminarán, aunque actualmente no hay una fecha programada para su eliminación.
Py_TPFLAGS_HAVE_FINALIZE
: Innecesario desde Python 3.8.PyErr_Fetch()
: UtilicePyErr_GetRaisedException()
en su lugar.PyErr_NormalizeException()
: UtilicePyErr_GetRaisedException()
en su lugar.PyErr_Restore()
: UtilicePyErr_SetRaisedException()
en su lugar.PyModule_GetFilename()
: UtilicePyModule_GetFilenameObject()
en su lugar.PyOS_AfterFork()
: UtilicePyOS_AfterFork_Child()
en su lugar.PySlice_GetIndicesEx()
: UtilicePySlice_Unpack()
yPySlice_AdjustIndices()
en su lugar.PyUnicode_AsDecodedObject()
: UtilicePyCodec_Decode()
en su lugar.PyUnicode_AsDecodedUnicode()
: UtilicePyCodec_Decode()
en su lugar.PyUnicode_AsEncodedObject()
: UtilicePyCodec_Encode()
en su lugar.PyUnicode_AsEncodedUnicode()
: UtilicePyCodec_Encode()
en su lugar.PyUnicode_READY()
: Innecesario desde Python 3.12PyErr_Display()
: UtilicePyErr_DisplayException()
en su lugar._PyErr_ChainExceptions()
: Utilice_PyErr_ChainExceptions1()
en su lugar.Miembro de
PyBytesObject.ob_shash
: llame aPyObject_Hash()
en su lugar.Miembro de
PyDictObject.ma_version_tag
.API de almacenamiento local de subprocesos (TLS):
PyThread_create_key()
: UtilicePyThread_tss_alloc()
en su lugar.PyThread_delete_key()
: UtilicePyThread_tss_free()
en su lugar.PyThread_set_key_value()
: UtilicePyThread_tss_set()
en su lugar.PyThread_get_key_value()
: UtilicePyThread_tss_get()
en su lugar.PyThread_delete_key_value()
: UtilicePyThread_tss_delete()
en su lugar.PyThread_ReInitTLS()
: Innecesario desde Python 3.7.