What is the proper channel for asking for the renaming or removal of a package? If this package is indeed useless, then it should be removed. If it is useful, but completely undocumented, and appears that import wx followed by dir(wx) shows absolutely nothing useful inside it. This is the entire content of the unfortunately named wx.py module:
# -*- coding:utf-8 -*-
"""
模拟 PHP 函数 file_get_content
我的Python测试模块
"""
def file_get_contents(file):
file = open(file)
data = ''
for line in file:
data = data + line
file.close()
return data