[Python-checkins] r65192 - python/trunk/Lib/test/test_support.py

Brett Cannon brett at python.org
Wed Jul 23 04:08:19 CEST 2008


On Tue, Jul 22, 2008 at 4:44 PM, benjamin.peterson
<python-checkins at python.org> wrote:
> Author: benjamin.peterson
> Date: Wed Jul 23 01:44:37 2008
> New Revision: 65192
>
> Log:
> remove unneeded import
>
> Modified:
>   python/trunk/Lib/test/test_support.py
>
> Modified: python/trunk/Lib/test/test_support.py
> ==============================================================================
> --- python/trunk/Lib/test/test_support.py       (original)
> +++ python/trunk/Lib/test/test_support.py       Wed Jul 23 01:44:37 2008
> @@ -8,7 +8,6 @@
>  import socket
>  import sys
>  import os
> -import os.path
>  import shutil
>  import warnings
>  import unittest

Technically I would guess that the os.path import should stay and the
os import should go in case the os module ever actually becomes a
proper package (I REALLY doubt that, but you never know).

-Brett


More information about the Python-checkins mailing list