Skip to content

Commit 7fc8a24

Browse files
author
Forest
committed
imaplib: revert import reformatting
Since we no longer import platform or selectors, the original import statement style can be restored, reducing the footprint of PR #122542.
1 parent de62a3e commit 7fc8a24

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

Lib/imaplib.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,7 @@
2323

2424
__version__ = "2.59"
2525

26-
import binascii
27-
import calendar
28-
import errno
29-
import random
30-
import re
31-
import socket
32-
import subprocess
33-
import sys
34-
import time
26+
import binascii, errno, random, re, socket, subprocess, sys, time, calendar
3527
from datetime import datetime, timezone, timedelta
3628
from io import DEFAULT_BUFFER_SIZE
3729
import warnings

0 commit comments

Comments
 (0)