Skip to content

Commit 0009616

Browse files
committed
Stub out imports in plistlib/xmlrpc
1 parent 665ca0a commit 0009616

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Lib/plistlib.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@
6262
import re
6363
import struct
6464
from warnings import warn
65-
from xml.parsers.expat import ParserCreate
65+
# XXX RUSTPYTHON TODO: pyexpat
66+
# from xml.parsers.expat import ParserCreate
6667

6768

6869
PlistFormat = enum.Enum('PlistFormat', 'FMT_XML FMT_BINARY', module=__name__)

Lib/xmlrpc/client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@
135135
from decimal import Decimal
136136
import http.client
137137
import urllib.parse
138-
from xml.parsers import expat
138+
# XXX RUSTPYTHON TODO: pyexpat
139+
# from xml.parsers import expat
139140
import errno
140141
from io import BytesIO
141142
try:

0 commit comments

Comments
 (0)