Add html package. Also update to reflect the removal of the User* modules.
This commit is contained in:
parent
b804d61319
commit
5b5b0dbf04
37
pep-3108.txt
37
pep-3108.txt
|
@ -222,6 +222,8 @@ or because the audience for the code is very small.
|
|||
+ Easy to implement using a semaphore and a queue.
|
||||
+ Cannot block on a lock attempt.
|
||||
+ Not uniquely edited since its addition 15 years ago.
|
||||
+ Only useful with the 'sched' module.
|
||||
+ Not thread-safe.
|
||||
|
||||
* repr
|
||||
|
||||
|
@ -302,6 +304,10 @@ for what the module is meant for.
|
|||
|
||||
+ All functionality is supported by string interpolation.
|
||||
|
||||
* htmllib
|
||||
|
||||
+ Superceded by HTMLParser.
|
||||
|
||||
* ihooks
|
||||
|
||||
+ Undocumented.
|
||||
|
@ -323,6 +329,12 @@ for what the module is meant for.
|
|||
|
||||
+ Replaced by threading.Timer.
|
||||
|
||||
|
||||
* smgllib
|
||||
|
||||
+ Does not fully parse SGML.
|
||||
+ In the stdlib for support to htmllib which is slated for removal.
|
||||
|
||||
* stat
|
||||
|
||||
+ ``os.stat`` now returns a tuple with attributes.
|
||||
|
@ -344,6 +356,15 @@ for what the module is meant for.
|
|||
+ Guido has previously supported the deprecation
|
||||
[#thread-deprecation]_.
|
||||
|
||||
* UserDict [done]
|
||||
|
||||
+ Not as useful since types can be a superclass.
|
||||
+ Useful bits moved to the 'collections' module.
|
||||
|
||||
* UserList/UserString [done]
|
||||
|
||||
+ Not useful since types can be a superclass.
|
||||
|
||||
|
||||
Modules to Rename
|
||||
=================
|
||||
|
@ -377,7 +398,6 @@ ConfigParser configparser
|
|||
Cookie cookie
|
||||
copy_reg copyreg
|
||||
EasyDialogs easydialogs
|
||||
HTMLParser htmlparser
|
||||
MacOS macos
|
||||
Nav nav
|
||||
PixMapWrapper pixmap_wrapper
|
||||
|
@ -386,9 +406,6 @@ ScrolledText scrolledtext
|
|||
SocketServer socketserver
|
||||
Tix tix
|
||||
Tkinter tkinter
|
||||
UserDict userdict
|
||||
UserList userlist
|
||||
UserString userstring
|
||||
================== ==================================================
|
||||
|
||||
|
||||
|
@ -490,6 +507,18 @@ whichdb dbm.tools [1]_
|
|||
API for both modules has no name conflict.
|
||||
|
||||
|
||||
|
||||
html package
|
||||
////////////
|
||||
|
||||
================== ===============================
|
||||
Current Name Replacement Name
|
||||
================== ===============================
|
||||
HTMLParser html.parser
|
||||
htmlentitydefs html.entities
|
||||
================== ===============================
|
||||
|
||||
|
||||
http package
|
||||
////////////
|
||||
|
||||
|
|
Loading…
Reference in New Issue