cpython: 75a146a657d9 (original) (raw)

Mercurial > cpython

changeset 80583:75a146a657d9

Fix missing import (followup to #4473). [#4473]

Antoine Pitrou solipsis@pitrou.net
date Sat, 24 Nov 2012 18:14:12 +0100
parents a182367eac5a
children aac6b313ef5f
files Lib/poplib.py
diffstat 1 files changed, 3 insertions(+), 1 deletions(-)[+] [-] Lib/poplib.py 4

line wrap: on

line diff

--- a/Lib/poplib.py +++ b/Lib/poplib.py @@ -13,7 +13,9 @@ Based on the J. Myers POP3 draft, Jan. 9

Imports

-import re, socket +import errno +import re +import socket try: import ssl