Skip to content

Commit 80820d4

Browse files
committed
Remove references to deprecated functions
1 parent d962d7a commit 80820d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/test/audit-tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ class C(A):
187187

188188

189189
def test_open(testfn):
190-
# SSLContext.load_dh_params uses _Py_fopen_obj rather than normal open()
190+
# SSLContext.load_dh_params uses Py_fopen() rather than normal open()
191191
try:
192192
import ssl
193193

Objects/odictobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ mp_length __len__ - dict_length
260260
mp_subscript __getitem__ - dict_subscript
261261
mp_ass_subscript __setitem__ - dict_ass_sub
262262
__delitem__
263-
tp_hash __hash__ _Py_HashPointer ..._HashNotImpl
263+
tp_hash __hash__ Py_HashPointer ..._HashNotImpl
264264
tp_str __str__ object_str -
265265
tp_getattro __getattribute__ ..._GenericGetAttr (repeated)
266266
__getattr__

0 commit comments

Comments
 (0)