Skip to content

Commit 9c3d4fc

Browse files
committed
Move native Py2 stdlib modules to future.moves
1 parent fff9f64 commit 9c3d4fc

174 files changed

Lines changed: 18088 additions & 18088 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

future/moves/_markupbase.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from __future__ import absolute_import
2+
3+
from markupbase import *

future/standard_library/backports/email/mime/__init__.py renamed to future/moves/html/__init__.py

File renamed without changes.

future/moves/html/entities.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from htmlentitydefs import *

future/moves/html/parser.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from HTMLParser import *

future/standard_library/backports/http/__init__.py renamed to future/moves/http/__init__.py

File renamed without changes.

future/moves/http/client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from httplib import *

future/moves/http/cookiejar.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from cookielib import *

future/moves/http/cookies.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from Cookie import *

future/moves/http/server.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from BaseHTTPServer import *
2+
from CGIHTTPServer import *
3+
from SimpleHTTPServer import *

future/moves/socketserver.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from __future__ import absolute_import
2+
3+
from SocketServer import *

0 commit comments

Comments
 (0)