├── .gitignore ├── LICENSE ├── README.md ├── SplitImg └── SplitImg │ ├── SplitImg.sln │ └── SplitImg │ ├── ImgHelper.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SplitImg.csproj │ └── bin │ └── Debug │ ├── SplitImg.exe │ └── SplitImg.pdb └── UnityEditorTools ├── Assets ├── Bundles.meta ├── Bundles │ ├── Fonts.meta │ ├── Fonts │ │ ├── symbol.meta │ │ └── symbol │ │ │ ├── symbol.fontsettings │ │ │ ├── symbol.fontsettings.meta │ │ │ ├── symbol_0.mat │ │ │ ├── symbol_0.mat.meta │ │ │ ├── symbol_0.png │ │ │ └── symbol_0.png.meta │ ├── Images.meta │ └── Images │ │ ├── Login.meta │ │ └── Login │ │ ├── diamond.png │ │ ├── diamond.png.meta │ │ ├── diamond1.png │ │ ├── diamond1.png.meta │ │ ├── search.png │ │ └── search.png.meta ├── Editor.meta ├── Editor │ ├── AtlasSetting.meta │ ├── AtlasSetting │ │ ├── AtlasSettingTools.cs │ │ ├── AtlasSettingTools.cs.meta │ │ ├── TextureImportSetting.cs │ │ └── TextureImportSetting.cs.meta │ ├── BMFontTools.meta │ ├── BMFontTools │ │ ├── BMFontTools.cs │ │ └── BMFontTools.cs.meta │ ├── ExcelToLua.meta │ ├── ExcelToLua │ │ ├── ExcelTools.cs │ │ └── ExcelTools.cs.meta │ ├── GitLog.meta │ ├── GitLog │ │ ├── GitLog.cs │ │ └── GitLog.cs.meta │ ├── LuaTools.meta │ ├── LuaTools │ │ ├── GenerateUIElements.cs │ │ ├── GenerateUIElements.cs.meta │ │ ├── LuaCodeFormat.cs │ │ └── LuaCodeFormat.cs.meta │ ├── OtherTools.meta │ ├── OtherTools │ │ ├── CTools.cs │ │ ├── CTools.cs.meta │ │ ├── RemoveEmptyDirectories.cs │ │ ├── RemoveEmptyDirectories.cs.meta │ │ ├── SpinResImportSetting.cs │ │ └── SpinResImportSetting.cs.meta │ ├── PlayerPrefsEditor.meta │ ├── PlayerPrefsEditor │ │ ├── JsonFormatter.cs │ │ ├── JsonFormatter.cs.meta │ │ ├── PlayerPrefsEditor.cs │ │ ├── PlayerPrefsEditor.cs.meta │ │ ├── PlayerPrefsExtension.cs │ │ ├── PlayerPrefsExtension.cs.meta │ │ ├── Plist.cs │ │ └── Plist.cs.meta │ ├── SplitImgTools.meta │ ├── SplitImgTools │ │ ├── SplitImgTools.cs │ │ └── SplitImgTools.cs.meta │ ├── ToPinYin.meta │ ├── ToPinYin │ │ ├── MetaAssetImporter.cs │ │ ├── MetaAssetImporter.cs.meta │ │ ├── PinYin.cs │ │ └── PinYin.cs.meta │ ├── TortoiseGit.meta │ ├── TortoiseGit │ │ ├── TortoiseEditor.cs │ │ ├── TortoiseEditor.cs.meta │ │ ├── TortoiseGit.cs │ │ └── TortoiseGit.cs.meta │ ├── UGUIEditor.meta │ ├── UGUIEditor │ │ ├── UGUIEditor.cs │ │ └── UGUIEditor.cs.meta │ ├── UIElementsGenerateEditor.meta │ ├── UIElementsGenerateEditor │ │ ├── UIElementsGenerateEditor.cs │ │ └── UIElementsGenerateEditor.cs.meta │ ├── UITextLocalizationEditor.meta │ ├── UITextLocalizationEditor │ │ ├── UITextLocalizationEditor.cs │ │ └── UITextLocalizationEditor.cs.meta │ ├── Unlock.meta │ └── Unlock │ │ ├── Unlock.cs │ │ └── Unlock.cs.meta ├── LuaConfig.meta ├── LuaConfig │ ├── CommonConfig.lua │ ├── CommonConfig.lua.meta │ ├── DailyRewardConfig.lua │ └── DailyRewardConfig.lua.meta ├── LuaScripts.meta ├── LuaScripts │ ├── UI.meta │ └── UI │ │ ├── UISetting.meta │ │ └── UISetting │ │ ├── View.meta │ │ └── View │ │ ├── UISettingElements.lua │ │ └── UISettingElements.lua.meta ├── Plugins.meta ├── Plugins │ ├── iOS.meta │ └── iOS │ │ ├── iOSHapticInterface.m │ │ └── iOSHapticInterface.m.meta ├── Resources.meta ├── Resources │ ├── BillingMode.json │ └── BillingMode.json.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ ├── SampleScene.unity.meta │ ├── ShowColliderScene.unity │ ├── ShowColliderScene.unity.meta │ ├── TestEventScene.unity │ └── TestEventScene.unity.meta ├── Script.meta └── Script │ ├── Extensions.meta │ ├── Extensions │ ├── CollectionExtension.cs │ ├── CollectionExtension.cs.meta │ ├── UnityExtension.cs │ └── UnityExtension.cs.meta │ ├── GameFramework.meta │ ├── GameFramework │ ├── Base.meta │ ├── Base │ │ ├── EventManager.cs │ │ ├── EventManager.cs.meta │ │ ├── GameEventArgs.cs │ │ ├── GameEventArgs.cs.meta │ │ ├── GameFrameworkEventArgs.cs │ │ ├── GameFrameworkEventArgs.cs.meta │ │ ├── GameFrameworkLinkedList.cs │ │ ├── GameFrameworkLinkedList.cs.meta │ │ ├── GameFrameworkLinkedListRange.cs │ │ ├── GameFrameworkLinkedListRange.cs.meta │ │ ├── GameFrameworkModule.cs │ │ ├── GameFrameworkModule.cs.meta │ │ ├── GameFrameworkMultiDictionary.cs │ │ ├── GameFrameworkMultiDictionary.cs.meta │ │ ├── IEventManager.cs │ │ └── IEventManager.cs.meta │ ├── EventPool.meta │ ├── EventPool │ │ ├── BaseEventArgs.cs │ │ ├── BaseEventArgs.cs.meta │ │ ├── EventPool.Event.cs │ │ ├── EventPool.Event.cs.meta │ │ ├── EventPool.cs │ │ ├── EventPool.cs.meta │ │ ├── EventPoolMode.cs │ │ └── EventPoolMode.cs.meta │ ├── ReferencePool.meta │ └── ReferencePool │ │ ├── IReference.cs │ │ ├── IReference.cs.meta │ │ ├── ReferencePool.ReferenceCollection.cs │ │ ├── ReferencePool.ReferenceCollection.cs.meta │ │ ├── ReferencePool.cs │ │ ├── ReferencePool.cs.meta │ │ ├── ReferencePoolInfo.cs │ │ └── ReferencePoolInfo.cs.meta │ ├── SceneCollider.meta │ ├── SceneCollider │ ├── Editor.meta │ ├── Editor │ │ ├── SceneColliderVisualizerEditor.cs │ │ └── SceneColliderVisualizerEditor.cs.meta │ ├── SceneColliderVisualizer.cs │ └── SceneColliderVisualizer.cs.meta │ ├── Test.meta │ ├── Test │ ├── EventTest.meta │ └── EventTest │ │ ├── EventFireTest.cs │ │ ├── EventFireTest.cs.meta │ │ ├── EventSubscribeTest.cs │ │ ├── EventSubscribeTest.cs.meta │ │ ├── TestEventArgs.cs │ │ └── TestEventArgs.cs.meta │ ├── UIElementsGenerate.cs │ ├── UIElementsGenerate.cs.meta │ ├── UITextLocalization.cs │ ├── UITextLocalization.cs.meta │ ├── VibrationUtil.meta │ └── VibrationUtil │ ├── VibrationUtil.cs │ └── VibrationUtil.cs.meta ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── Tools ├── BMFont │ ├── BMFontGenerate.bat │ ├── BaseConfig.bmf │ ├── bmfont.exe │ ├── symbol.bmfc │ ├── symbol.bmfc1 │ └── symbol │ │ ├── fonts_fuhao_1.png │ │ ├── fonts_fuhao_2.png │ │ ├── fonts_fuhao_3.png │ │ ├── fonts_fuhao_4.png │ │ ├── fonts_fuhao_5.png │ │ └── fonts_fuhao_6.png ├── ExcelToLua │ ├── Excels │ │ ├── CommonConfig.xlsx │ │ └── DailyRewardConfig.xlsx │ ├── excel2lua.py │ └── test.lua ├── Python3.9 │ ├── DLLs │ │ ├── _asyncio.pyd │ │ ├── _bz2.pyd │ │ ├── _ctypes.pyd │ │ ├── _ctypes_test.pyd │ │ ├── _decimal.pyd │ │ ├── _elementtree.pyd │ │ ├── _hashlib.pyd │ │ ├── _lzma.pyd │ │ ├── _msi.pyd │ │ ├── _multiprocessing.pyd │ │ ├── _overlapped.pyd │ │ ├── _queue.pyd │ │ ├── _socket.pyd │ │ ├── _sqlite3.pyd │ │ ├── _ssl.pyd │ │ ├── _testbuffer.pyd │ │ ├── _testcapi.pyd │ │ ├── _testconsole.pyd │ │ ├── _testimportmultiple.pyd │ │ ├── _testinternalcapi.pyd │ │ ├── _testmultiphase.pyd │ │ ├── _tkinter.pyd │ │ ├── _uuid.pyd │ │ ├── _zoneinfo.pyd │ │ ├── libcrypto-1_1.dll │ │ ├── libffi-7.dll │ │ ├── libssl-1_1.dll │ │ ├── py.ico │ │ ├── pyc.ico │ │ ├── pyd.ico │ │ ├── pyexpat.pyd │ │ ├── python_lib.cat │ │ ├── python_tools.cat │ │ ├── select.pyd │ │ ├── sqlite3.dll │ │ ├── tcl86t.dll │ │ ├── tk86t.dll │ │ ├── unicodedata.pyd │ │ └── winsound.pyd │ ├── Doc │ │ └── python392.chm │ ├── LICENSE.txt │ ├── Lib │ │ ├── __future__.py │ │ ├── __phello__.foo.py │ │ ├── __pycache__ │ │ │ ├── __future__.cpython-39.opt-1.pyc │ │ │ ├── __future__.cpython-39.opt-2.pyc │ │ │ ├── __future__.cpython-39.pyc │ │ │ ├── __phello__.foo.cpython-39.opt-1.pyc │ │ │ ├── __phello__.foo.cpython-39.opt-2.pyc │ │ │ ├── __phello__.foo.cpython-39.pyc │ │ │ ├── _aix_support.cpython-39.opt-1.pyc │ │ │ ├── _aix_support.cpython-39.opt-2.pyc │ │ │ ├── _aix_support.cpython-39.pyc │ │ │ ├── _bootlocale.cpython-39.opt-1.pyc │ │ │ ├── _bootlocale.cpython-39.opt-2.pyc │ │ │ ├── _bootlocale.cpython-39.pyc │ │ │ ├── _bootsubprocess.cpython-39.opt-1.pyc │ │ │ ├── _bootsubprocess.cpython-39.opt-2.pyc │ │ │ ├── _bootsubprocess.cpython-39.pyc │ │ │ ├── _collections_abc.cpython-39.opt-1.pyc │ │ │ ├── _collections_abc.cpython-39.opt-2.pyc │ │ │ ├── _collections_abc.cpython-39.pyc │ │ │ ├── _compat_pickle.cpython-39.opt-1.pyc │ │ │ ├── _compat_pickle.cpython-39.opt-2.pyc │ │ │ ├── _compat_pickle.cpython-39.pyc │ │ │ ├── _compression.cpython-39.opt-1.pyc │ │ │ ├── _compression.cpython-39.opt-2.pyc │ │ │ ├── _compression.cpython-39.pyc │ │ │ ├── _markupbase.cpython-39.opt-1.pyc │ │ │ ├── _markupbase.cpython-39.opt-2.pyc │ │ │ ├── _markupbase.cpython-39.pyc │ │ │ ├── _osx_support.cpython-39.opt-1.pyc │ │ │ ├── _osx_support.cpython-39.opt-2.pyc │ │ │ ├── _osx_support.cpython-39.pyc │ │ │ ├── _py_abc.cpython-39.opt-1.pyc │ │ │ ├── _py_abc.cpython-39.opt-2.pyc │ │ │ ├── _py_abc.cpython-39.pyc │ │ │ ├── _pydecimal.cpython-39.opt-1.pyc │ │ │ ├── _pydecimal.cpython-39.opt-2.pyc │ │ │ ├── _pydecimal.cpython-39.pyc │ │ │ ├── _pyio.cpython-39.opt-1.pyc │ │ │ ├── _pyio.cpython-39.opt-2.pyc │ │ │ ├── _pyio.cpython-39.pyc │ │ │ ├── _sitebuiltins.cpython-39.opt-1.pyc │ │ │ ├── _sitebuiltins.cpython-39.opt-2.pyc │ │ │ ├── _sitebuiltins.cpython-39.pyc │ │ │ ├── _strptime.cpython-39.opt-1.pyc │ │ │ ├── _strptime.cpython-39.opt-2.pyc │ │ │ ├── _strptime.cpython-39.pyc │ │ │ ├── _threading_local.cpython-39.opt-1.pyc │ │ │ ├── _threading_local.cpython-39.opt-2.pyc │ │ │ ├── _threading_local.cpython-39.pyc │ │ │ ├── _weakrefset.cpython-39.opt-1.pyc │ │ │ ├── _weakrefset.cpython-39.opt-2.pyc │ │ │ ├── _weakrefset.cpython-39.pyc │ │ │ ├── abc.cpython-39.opt-1.pyc │ │ │ ├── abc.cpython-39.opt-2.pyc │ │ │ ├── abc.cpython-39.pyc │ │ │ ├── aifc.cpython-39.opt-1.pyc │ │ │ ├── aifc.cpython-39.opt-2.pyc │ │ │ ├── aifc.cpython-39.pyc │ │ │ ├── antigravity.cpython-39.opt-1.pyc │ │ │ ├── antigravity.cpython-39.opt-2.pyc │ │ │ ├── antigravity.cpython-39.pyc │ │ │ ├── argparse.cpython-39.opt-1.pyc │ │ │ ├── argparse.cpython-39.opt-2.pyc │ │ │ ├── argparse.cpython-39.pyc │ │ │ ├── ast.cpython-39.opt-1.pyc │ │ │ ├── ast.cpython-39.opt-2.pyc │ │ │ ├── ast.cpython-39.pyc │ │ │ ├── asynchat.cpython-39.opt-1.pyc │ │ │ ├── asynchat.cpython-39.opt-2.pyc │ │ │ ├── asynchat.cpython-39.pyc │ │ │ ├── asyncore.cpython-39.opt-1.pyc │ │ │ ├── asyncore.cpython-39.opt-2.pyc │ │ │ ├── asyncore.cpython-39.pyc │ │ │ ├── base64.cpython-39.opt-1.pyc │ │ │ ├── base64.cpython-39.opt-2.pyc │ │ │ ├── base64.cpython-39.pyc │ │ │ ├── bdb.cpython-39.opt-1.pyc │ │ │ ├── bdb.cpython-39.opt-2.pyc │ │ │ ├── bdb.cpython-39.pyc │ │ │ ├── binhex.cpython-39.opt-1.pyc │ │ │ ├── binhex.cpython-39.opt-2.pyc │ │ │ ├── binhex.cpython-39.pyc │ │ │ ├── bisect.cpython-39.opt-1.pyc │ │ │ ├── bisect.cpython-39.opt-2.pyc │ │ │ ├── bisect.cpython-39.pyc │ │ │ ├── bz2.cpython-39.opt-1.pyc │ │ │ ├── bz2.cpython-39.opt-2.pyc │ │ │ ├── bz2.cpython-39.pyc │ │ │ ├── cProfile.cpython-39.opt-1.pyc │ │ │ ├── cProfile.cpython-39.opt-2.pyc │ │ │ ├── cProfile.cpython-39.pyc │ │ │ ├── calendar.cpython-39.opt-1.pyc │ │ │ ├── calendar.cpython-39.opt-2.pyc │ │ │ ├── calendar.cpython-39.pyc │ │ │ ├── cgi.cpython-39.opt-1.pyc │ │ │ ├── cgi.cpython-39.opt-2.pyc │ │ │ ├── cgi.cpython-39.pyc │ │ │ ├── cgitb.cpython-39.opt-1.pyc │ │ │ ├── cgitb.cpython-39.opt-2.pyc │ │ │ ├── cgitb.cpython-39.pyc │ │ │ ├── chunk.cpython-39.opt-1.pyc │ │ │ ├── chunk.cpython-39.opt-2.pyc │ │ │ ├── chunk.cpython-39.pyc │ │ │ ├── cmd.cpython-39.opt-1.pyc │ │ │ ├── cmd.cpython-39.opt-2.pyc │ │ │ ├── cmd.cpython-39.pyc │ │ │ ├── code.cpython-39.opt-1.pyc │ │ │ ├── code.cpython-39.opt-2.pyc │ │ │ ├── code.cpython-39.pyc │ │ │ ├── codecs.cpython-39.opt-1.pyc │ │ │ ├── codecs.cpython-39.opt-2.pyc │ │ │ ├── codecs.cpython-39.pyc │ │ │ ├── codeop.cpython-39.opt-1.pyc │ │ │ ├── codeop.cpython-39.opt-2.pyc │ │ │ ├── codeop.cpython-39.pyc │ │ │ ├── colorsys.cpython-39.opt-1.pyc │ │ │ ├── colorsys.cpython-39.opt-2.pyc │ │ │ ├── colorsys.cpython-39.pyc │ │ │ ├── compileall.cpython-39.opt-1.pyc │ │ │ ├── compileall.cpython-39.opt-2.pyc │ │ │ ├── compileall.cpython-39.pyc │ │ │ ├── configparser.cpython-39.opt-1.pyc │ │ │ ├── configparser.cpython-39.opt-2.pyc │ │ │ ├── configparser.cpython-39.pyc │ │ │ ├── contextlib.cpython-39.opt-1.pyc │ │ │ ├── contextlib.cpython-39.opt-2.pyc │ │ │ ├── contextlib.cpython-39.pyc │ │ │ ├── contextvars.cpython-39.opt-1.pyc │ │ │ ├── contextvars.cpython-39.opt-2.pyc │ │ │ ├── contextvars.cpython-39.pyc │ │ │ ├── copy.cpython-39.opt-1.pyc │ │ │ ├── copy.cpython-39.opt-2.pyc │ │ │ ├── copy.cpython-39.pyc │ │ │ ├── copyreg.cpython-39.opt-1.pyc │ │ │ ├── copyreg.cpython-39.opt-2.pyc │ │ │ ├── copyreg.cpython-39.pyc │ │ │ ├── crypt.cpython-39.opt-1.pyc │ │ │ ├── crypt.cpython-39.opt-2.pyc │ │ │ ├── crypt.cpython-39.pyc │ │ │ ├── csv.cpython-39.opt-1.pyc │ │ │ ├── csv.cpython-39.opt-2.pyc │ │ │ ├── csv.cpython-39.pyc │ │ │ ├── dataclasses.cpython-39.opt-1.pyc │ │ │ ├── dataclasses.cpython-39.opt-2.pyc │ │ │ ├── dataclasses.cpython-39.pyc │ │ │ ├── datetime.cpython-39.opt-1.pyc │ │ │ ├── datetime.cpython-39.opt-2.pyc │ │ │ ├── datetime.cpython-39.pyc │ │ │ ├── decimal.cpython-39.opt-1.pyc │ │ │ ├── decimal.cpython-39.opt-2.pyc │ │ │ ├── decimal.cpython-39.pyc │ │ │ ├── difflib.cpython-39.opt-1.pyc │ │ │ ├── difflib.cpython-39.opt-2.pyc │ │ │ ├── difflib.cpython-39.pyc │ │ │ ├── dis.cpython-39.opt-1.pyc │ │ │ ├── dis.cpython-39.opt-2.pyc │ │ │ ├── dis.cpython-39.pyc │ │ │ ├── doctest.cpython-39.opt-1.pyc │ │ │ ├── doctest.cpython-39.opt-2.pyc │ │ │ ├── doctest.cpython-39.pyc │ │ │ ├── enum.cpython-39.opt-1.pyc │ │ │ ├── enum.cpython-39.opt-2.pyc │ │ │ ├── enum.cpython-39.pyc │ │ │ ├── filecmp.cpython-39.opt-1.pyc │ │ │ ├── filecmp.cpython-39.opt-2.pyc │ │ │ ├── filecmp.cpython-39.pyc │ │ │ ├── fileinput.cpython-39.opt-1.pyc │ │ │ ├── fileinput.cpython-39.opt-2.pyc │ │ │ ├── fileinput.cpython-39.pyc │ │ │ ├── fnmatch.cpython-39.opt-1.pyc │ │ │ ├── fnmatch.cpython-39.opt-2.pyc │ │ │ ├── fnmatch.cpython-39.pyc │ │ │ ├── formatter.cpython-39.opt-1.pyc │ │ │ ├── formatter.cpython-39.opt-2.pyc │ │ │ ├── formatter.cpython-39.pyc │ │ │ ├── fractions.cpython-39.opt-1.pyc │ │ │ ├── fractions.cpython-39.opt-2.pyc │ │ │ ├── fractions.cpython-39.pyc │ │ │ ├── ftplib.cpython-39.opt-1.pyc │ │ │ ├── ftplib.cpython-39.opt-2.pyc │ │ │ ├── ftplib.cpython-39.pyc │ │ │ ├── functools.cpython-39.opt-1.pyc │ │ │ ├── functools.cpython-39.opt-2.pyc │ │ │ ├── functools.cpython-39.pyc │ │ │ ├── genericpath.cpython-39.opt-1.pyc │ │ │ ├── genericpath.cpython-39.opt-2.pyc │ │ │ ├── genericpath.cpython-39.pyc │ │ │ ├── getopt.cpython-39.opt-1.pyc │ │ │ ├── getopt.cpython-39.opt-2.pyc │ │ │ ├── getopt.cpython-39.pyc │ │ │ ├── getpass.cpython-39.opt-1.pyc │ │ │ ├── getpass.cpython-39.opt-2.pyc │ │ │ ├── getpass.cpython-39.pyc │ │ │ ├── gettext.cpython-39.opt-1.pyc │ │ │ ├── gettext.cpython-39.opt-2.pyc │ │ │ ├── gettext.cpython-39.pyc │ │ │ ├── glob.cpython-39.opt-1.pyc │ │ │ ├── glob.cpython-39.opt-2.pyc │ │ │ ├── glob.cpython-39.pyc │ │ │ ├── graphlib.cpython-39.opt-1.pyc │ │ │ ├── graphlib.cpython-39.opt-2.pyc │ │ │ ├── graphlib.cpython-39.pyc │ │ │ ├── gzip.cpython-39.opt-1.pyc │ │ │ ├── gzip.cpython-39.opt-2.pyc │ │ │ ├── gzip.cpython-39.pyc │ │ │ ├── hashlib.cpython-39.opt-1.pyc │ │ │ ├── hashlib.cpython-39.opt-2.pyc │ │ │ ├── hashlib.cpython-39.pyc │ │ │ ├── heapq.cpython-39.opt-1.pyc │ │ │ ├── heapq.cpython-39.opt-2.pyc │ │ │ ├── heapq.cpython-39.pyc │ │ │ ├── hmac.cpython-39.opt-1.pyc │ │ │ ├── hmac.cpython-39.opt-2.pyc │ │ │ ├── hmac.cpython-39.pyc │ │ │ ├── imaplib.cpython-39.opt-1.pyc │ │ │ ├── imaplib.cpython-39.opt-2.pyc │ │ │ ├── imaplib.cpython-39.pyc │ │ │ ├── imghdr.cpython-39.opt-1.pyc │ │ │ ├── imghdr.cpython-39.opt-2.pyc │ │ │ ├── imghdr.cpython-39.pyc │ │ │ ├── imp.cpython-39.opt-1.pyc │ │ │ ├── imp.cpython-39.opt-2.pyc │ │ │ ├── imp.cpython-39.pyc │ │ │ ├── inspect.cpython-39.opt-1.pyc │ │ │ ├── inspect.cpython-39.opt-2.pyc │ │ │ ├── inspect.cpython-39.pyc │ │ │ ├── io.cpython-39.opt-1.pyc │ │ │ ├── io.cpython-39.opt-2.pyc │ │ │ ├── io.cpython-39.pyc │ │ │ ├── ipaddress.cpython-39.opt-1.pyc │ │ │ ├── ipaddress.cpython-39.opt-2.pyc │ │ │ ├── ipaddress.cpython-39.pyc │ │ │ ├── keyword.cpython-39.opt-1.pyc │ │ │ ├── keyword.cpython-39.opt-2.pyc │ │ │ ├── keyword.cpython-39.pyc │ │ │ ├── linecache.cpython-39.opt-1.pyc │ │ │ ├── linecache.cpython-39.opt-2.pyc │ │ │ ├── linecache.cpython-39.pyc │ │ │ ├── locale.cpython-39.opt-1.pyc │ │ │ ├── locale.cpython-39.opt-2.pyc │ │ │ ├── locale.cpython-39.pyc │ │ │ ├── lzma.cpython-39.opt-1.pyc │ │ │ ├── lzma.cpython-39.opt-2.pyc │ │ │ ├── lzma.cpython-39.pyc │ │ │ ├── mailbox.cpython-39.opt-1.pyc │ │ │ ├── mailbox.cpython-39.opt-2.pyc │ │ │ ├── mailbox.cpython-39.pyc │ │ │ ├── mailcap.cpython-39.opt-1.pyc │ │ │ ├── mailcap.cpython-39.opt-2.pyc │ │ │ ├── mailcap.cpython-39.pyc │ │ │ ├── mimetypes.cpython-39.opt-1.pyc │ │ │ ├── mimetypes.cpython-39.opt-2.pyc │ │ │ ├── mimetypes.cpython-39.pyc │ │ │ ├── modulefinder.cpython-39.opt-1.pyc │ │ │ ├── modulefinder.cpython-39.opt-2.pyc │ │ │ ├── modulefinder.cpython-39.pyc │ │ │ ├── netrc.cpython-39.opt-1.pyc │ │ │ ├── netrc.cpython-39.opt-2.pyc │ │ │ ├── netrc.cpython-39.pyc │ │ │ ├── nntplib.cpython-39.opt-1.pyc │ │ │ ├── nntplib.cpython-39.opt-2.pyc │ │ │ ├── nntplib.cpython-39.pyc │ │ │ ├── ntpath.cpython-39.opt-1.pyc │ │ │ ├── ntpath.cpython-39.opt-2.pyc │ │ │ ├── ntpath.cpython-39.pyc │ │ │ ├── nturl2path.cpython-39.opt-1.pyc │ │ │ ├── nturl2path.cpython-39.opt-2.pyc │ │ │ ├── nturl2path.cpython-39.pyc │ │ │ ├── numbers.cpython-39.opt-1.pyc │ │ │ ├── numbers.cpython-39.opt-2.pyc │ │ │ ├── numbers.cpython-39.pyc │ │ │ ├── opcode.cpython-39.opt-1.pyc │ │ │ ├── opcode.cpython-39.opt-2.pyc │ │ │ ├── opcode.cpython-39.pyc │ │ │ ├── operator.cpython-39.opt-1.pyc │ │ │ ├── operator.cpython-39.opt-2.pyc │ │ │ ├── operator.cpython-39.pyc │ │ │ ├── optparse.cpython-39.opt-1.pyc │ │ │ ├── optparse.cpython-39.opt-2.pyc │ │ │ ├── optparse.cpython-39.pyc │ │ │ ├── os.cpython-39.opt-1.pyc │ │ │ ├── os.cpython-39.opt-2.pyc │ │ │ ├── os.cpython-39.pyc │ │ │ ├── pathlib.cpython-39.opt-1.pyc │ │ │ ├── pathlib.cpython-39.opt-2.pyc │ │ │ ├── pathlib.cpython-39.pyc │ │ │ ├── pdb.cpython-39.opt-1.pyc │ │ │ ├── pdb.cpython-39.opt-2.pyc │ │ │ ├── pdb.cpython-39.pyc │ │ │ ├── pickle.cpython-39.opt-1.pyc │ │ │ ├── pickle.cpython-39.opt-2.pyc │ │ │ ├── pickle.cpython-39.pyc │ │ │ ├── pickletools.cpython-39.opt-1.pyc │ │ │ ├── pickletools.cpython-39.opt-2.pyc │ │ │ ├── pickletools.cpython-39.pyc │ │ │ ├── pipes.cpython-39.opt-1.pyc │ │ │ ├── pipes.cpython-39.opt-2.pyc │ │ │ ├── pipes.cpython-39.pyc │ │ │ ├── pkgutil.cpython-39.opt-1.pyc │ │ │ ├── pkgutil.cpython-39.opt-2.pyc │ │ │ ├── pkgutil.cpython-39.pyc │ │ │ ├── platform.cpython-39.opt-1.pyc │ │ │ ├── platform.cpython-39.opt-2.pyc │ │ │ ├── platform.cpython-39.pyc │ │ │ ├── plistlib.cpython-39.opt-1.pyc │ │ │ ├── plistlib.cpython-39.opt-2.pyc │ │ │ ├── plistlib.cpython-39.pyc │ │ │ ├── poplib.cpython-39.opt-1.pyc │ │ │ ├── poplib.cpython-39.opt-2.pyc │ │ │ ├── poplib.cpython-39.pyc │ │ │ ├── posixpath.cpython-39.opt-1.pyc │ │ │ ├── posixpath.cpython-39.opt-2.pyc │ │ │ ├── posixpath.cpython-39.pyc │ │ │ ├── pprint.cpython-39.opt-1.pyc │ │ │ ├── pprint.cpython-39.opt-2.pyc │ │ │ ├── pprint.cpython-39.pyc │ │ │ ├── profile.cpython-39.opt-1.pyc │ │ │ ├── profile.cpython-39.opt-2.pyc │ │ │ ├── profile.cpython-39.pyc │ │ │ ├── pstats.cpython-39.opt-1.pyc │ │ │ ├── pstats.cpython-39.opt-2.pyc │ │ │ ├── pstats.cpython-39.pyc │ │ │ ├── pty.cpython-39.opt-1.pyc │ │ │ ├── pty.cpython-39.opt-2.pyc │ │ │ ├── pty.cpython-39.pyc │ │ │ ├── py_compile.cpython-39.opt-1.pyc │ │ │ ├── py_compile.cpython-39.opt-2.pyc │ │ │ ├── py_compile.cpython-39.pyc │ │ │ ├── pyclbr.cpython-39.opt-1.pyc │ │ │ ├── pyclbr.cpython-39.opt-2.pyc │ │ │ ├── pyclbr.cpython-39.pyc │ │ │ ├── pydoc.cpython-39.opt-1.pyc │ │ │ ├── pydoc.cpython-39.opt-2.pyc │ │ │ ├── pydoc.cpython-39.pyc │ │ │ ├── queue.cpython-39.opt-1.pyc │ │ │ ├── queue.cpython-39.opt-2.pyc │ │ │ ├── queue.cpython-39.pyc │ │ │ ├── quopri.cpython-39.opt-1.pyc │ │ │ ├── quopri.cpython-39.opt-2.pyc │ │ │ ├── quopri.cpython-39.pyc │ │ │ ├── random.cpython-39.opt-1.pyc │ │ │ ├── random.cpython-39.opt-2.pyc │ │ │ ├── random.cpython-39.pyc │ │ │ ├── re.cpython-39.opt-1.pyc │ │ │ ├── re.cpython-39.opt-2.pyc │ │ │ ├── re.cpython-39.pyc │ │ │ ├── reprlib.cpython-39.opt-1.pyc │ │ │ ├── reprlib.cpython-39.opt-2.pyc │ │ │ ├── reprlib.cpython-39.pyc │ │ │ ├── rlcompleter.cpython-39.opt-1.pyc │ │ │ ├── rlcompleter.cpython-39.opt-2.pyc │ │ │ ├── rlcompleter.cpython-39.pyc │ │ │ ├── runpy.cpython-39.opt-1.pyc │ │ │ ├── runpy.cpython-39.opt-2.pyc │ │ │ ├── runpy.cpython-39.pyc │ │ │ ├── sched.cpython-39.opt-1.pyc │ │ │ ├── sched.cpython-39.opt-2.pyc │ │ │ ├── sched.cpython-39.pyc │ │ │ ├── secrets.cpython-39.opt-1.pyc │ │ │ ├── secrets.cpython-39.opt-2.pyc │ │ │ ├── secrets.cpython-39.pyc │ │ │ ├── selectors.cpython-39.opt-1.pyc │ │ │ ├── selectors.cpython-39.opt-2.pyc │ │ │ ├── selectors.cpython-39.pyc │ │ │ ├── shelve.cpython-39.opt-1.pyc │ │ │ ├── shelve.cpython-39.opt-2.pyc │ │ │ ├── shelve.cpython-39.pyc │ │ │ ├── shlex.cpython-39.opt-1.pyc │ │ │ ├── shlex.cpython-39.opt-2.pyc │ │ │ ├── shlex.cpython-39.pyc │ │ │ ├── shutil.cpython-39.opt-1.pyc │ │ │ ├── shutil.cpython-39.opt-2.pyc │ │ │ ├── shutil.cpython-39.pyc │ │ │ ├── signal.cpython-39.opt-1.pyc │ │ │ ├── signal.cpython-39.opt-2.pyc │ │ │ ├── signal.cpython-39.pyc │ │ │ ├── site.cpython-39.opt-1.pyc │ │ │ ├── site.cpython-39.opt-2.pyc │ │ │ ├── site.cpython-39.pyc │ │ │ ├── smtpd.cpython-39.opt-1.pyc │ │ │ ├── smtpd.cpython-39.opt-2.pyc │ │ │ ├── smtpd.cpython-39.pyc │ │ │ ├── smtplib.cpython-39.opt-1.pyc │ │ │ ├── smtplib.cpython-39.opt-2.pyc │ │ │ ├── smtplib.cpython-39.pyc │ │ │ ├── sndhdr.cpython-39.opt-1.pyc │ │ │ ├── sndhdr.cpython-39.opt-2.pyc │ │ │ ├── sndhdr.cpython-39.pyc │ │ │ ├── socket.cpython-39.opt-1.pyc │ │ │ ├── socket.cpython-39.opt-2.pyc │ │ │ ├── socket.cpython-39.pyc │ │ │ ├── socketserver.cpython-39.opt-1.pyc │ │ │ ├── socketserver.cpython-39.opt-2.pyc │ │ │ ├── socketserver.cpython-39.pyc │ │ │ ├── sre_compile.cpython-39.opt-1.pyc │ │ │ ├── sre_compile.cpython-39.opt-2.pyc │ │ │ ├── sre_compile.cpython-39.pyc │ │ │ ├── sre_constants.cpython-39.opt-1.pyc │ │ │ ├── sre_constants.cpython-39.opt-2.pyc │ │ │ ├── sre_constants.cpython-39.pyc │ │ │ ├── sre_parse.cpython-39.opt-1.pyc │ │ │ ├── sre_parse.cpython-39.opt-2.pyc │ │ │ ├── sre_parse.cpython-39.pyc │ │ │ ├── ssl.cpython-39.opt-1.pyc │ │ │ ├── ssl.cpython-39.opt-2.pyc │ │ │ ├── ssl.cpython-39.pyc │ │ │ ├── stat.cpython-39.opt-1.pyc │ │ │ ├── stat.cpython-39.opt-2.pyc │ │ │ ├── stat.cpython-39.pyc │ │ │ ├── statistics.cpython-39.opt-1.pyc │ │ │ ├── statistics.cpython-39.opt-2.pyc │ │ │ ├── statistics.cpython-39.pyc │ │ │ ├── string.cpython-39.opt-1.pyc │ │ │ ├── string.cpython-39.opt-2.pyc │ │ │ ├── string.cpython-39.pyc │ │ │ ├── stringprep.cpython-39.opt-1.pyc │ │ │ ├── stringprep.cpython-39.opt-2.pyc │ │ │ ├── stringprep.cpython-39.pyc │ │ │ ├── struct.cpython-39.opt-1.pyc │ │ │ ├── struct.cpython-39.opt-2.pyc │ │ │ ├── struct.cpython-39.pyc │ │ │ ├── subprocess.cpython-39.opt-1.pyc │ │ │ ├── subprocess.cpython-39.opt-2.pyc │ │ │ ├── subprocess.cpython-39.pyc │ │ │ ├── sunau.cpython-39.opt-1.pyc │ │ │ ├── sunau.cpython-39.opt-2.pyc │ │ │ ├── sunau.cpython-39.pyc │ │ │ ├── symbol.cpython-39.opt-1.pyc │ │ │ ├── symbol.cpython-39.opt-2.pyc │ │ │ ├── symbol.cpython-39.pyc │ │ │ ├── symtable.cpython-39.opt-1.pyc │ │ │ ├── symtable.cpython-39.opt-2.pyc │ │ │ ├── symtable.cpython-39.pyc │ │ │ ├── sysconfig.cpython-39.opt-1.pyc │ │ │ ├── sysconfig.cpython-39.opt-2.pyc │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ ├── tabnanny.cpython-39.opt-1.pyc │ │ │ ├── tabnanny.cpython-39.opt-2.pyc │ │ │ ├── tabnanny.cpython-39.pyc │ │ │ ├── tarfile.cpython-39.opt-1.pyc │ │ │ ├── tarfile.cpython-39.opt-2.pyc │ │ │ ├── tarfile.cpython-39.pyc │ │ │ ├── telnetlib.cpython-39.opt-1.pyc │ │ │ ├── telnetlib.cpython-39.opt-2.pyc │ │ │ ├── telnetlib.cpython-39.pyc │ │ │ ├── tempfile.cpython-39.opt-1.pyc │ │ │ ├── tempfile.cpython-39.opt-2.pyc │ │ │ ├── tempfile.cpython-39.pyc │ │ │ ├── textwrap.cpython-39.opt-1.pyc │ │ │ ├── textwrap.cpython-39.opt-2.pyc │ │ │ ├── textwrap.cpython-39.pyc │ │ │ ├── this.cpython-39.opt-1.pyc │ │ │ ├── this.cpython-39.opt-2.pyc │ │ │ ├── this.cpython-39.pyc │ │ │ ├── threading.cpython-39.opt-1.pyc │ │ │ ├── threading.cpython-39.opt-2.pyc │ │ │ ├── threading.cpython-39.pyc │ │ │ ├── timeit.cpython-39.opt-1.pyc │ │ │ ├── timeit.cpython-39.opt-2.pyc │ │ │ ├── timeit.cpython-39.pyc │ │ │ ├── token.cpython-39.opt-1.pyc │ │ │ ├── token.cpython-39.opt-2.pyc │ │ │ ├── token.cpython-39.pyc │ │ │ ├── tokenize.cpython-39.opt-1.pyc │ │ │ ├── tokenize.cpython-39.opt-2.pyc │ │ │ ├── tokenize.cpython-39.pyc │ │ │ ├── trace.cpython-39.opt-1.pyc │ │ │ ├── trace.cpython-39.opt-2.pyc │ │ │ ├── trace.cpython-39.pyc │ │ │ ├── traceback.cpython-39.opt-1.pyc │ │ │ ├── traceback.cpython-39.opt-2.pyc │ │ │ ├── traceback.cpython-39.pyc │ │ │ ├── tracemalloc.cpython-39.opt-1.pyc │ │ │ ├── tracemalloc.cpython-39.opt-2.pyc │ │ │ ├── tracemalloc.cpython-39.pyc │ │ │ ├── tty.cpython-39.opt-1.pyc │ │ │ ├── tty.cpython-39.opt-2.pyc │ │ │ ├── tty.cpython-39.pyc │ │ │ ├── turtle.cpython-39.opt-1.pyc │ │ │ ├── turtle.cpython-39.opt-2.pyc │ │ │ ├── turtle.cpython-39.pyc │ │ │ ├── types.cpython-39.opt-1.pyc │ │ │ ├── types.cpython-39.opt-2.pyc │ │ │ ├── types.cpython-39.pyc │ │ │ ├── typing.cpython-39.opt-1.pyc │ │ │ ├── typing.cpython-39.opt-2.pyc │ │ │ ├── typing.cpython-39.pyc │ │ │ ├── uu.cpython-39.opt-1.pyc │ │ │ ├── uu.cpython-39.opt-2.pyc │ │ │ ├── uu.cpython-39.pyc │ │ │ ├── uuid.cpython-39.opt-1.pyc │ │ │ ├── uuid.cpython-39.opt-2.pyc │ │ │ ├── uuid.cpython-39.pyc │ │ │ ├── warnings.cpython-39.opt-1.pyc │ │ │ ├── warnings.cpython-39.opt-2.pyc │ │ │ ├── warnings.cpython-39.pyc │ │ │ ├── wave.cpython-39.opt-1.pyc │ │ │ ├── wave.cpython-39.opt-2.pyc │ │ │ ├── wave.cpython-39.pyc │ │ │ ├── weakref.cpython-39.opt-1.pyc │ │ │ ├── weakref.cpython-39.opt-2.pyc │ │ │ ├── weakref.cpython-39.pyc │ │ │ ├── webbrowser.cpython-39.opt-1.pyc │ │ │ ├── webbrowser.cpython-39.opt-2.pyc │ │ │ ├── webbrowser.cpython-39.pyc │ │ │ ├── xdrlib.cpython-39.opt-1.pyc │ │ │ ├── xdrlib.cpython-39.opt-2.pyc │ │ │ ├── xdrlib.cpython-39.pyc │ │ │ ├── zipapp.cpython-39.opt-1.pyc │ │ │ ├── zipapp.cpython-39.opt-2.pyc │ │ │ ├── zipapp.cpython-39.pyc │ │ │ ├── zipfile.cpython-39.opt-1.pyc │ │ │ ├── zipfile.cpython-39.opt-2.pyc │ │ │ ├── zipfile.cpython-39.pyc │ │ │ ├── zipimport.cpython-39.opt-1.pyc │ │ │ ├── zipimport.cpython-39.opt-2.pyc │ │ │ └── zipimport.cpython-39.pyc │ │ ├── _aix_support.py │ │ ├── _bootlocale.py │ │ ├── _bootsubprocess.py │ │ ├── _collections_abc.py │ │ ├── _compat_pickle.py │ │ ├── _compression.py │ │ ├── _markupbase.py │ │ ├── _osx_support.py │ │ ├── _py_abc.py │ │ ├── _pydecimal.py │ │ ├── _pyio.py │ │ ├── _sitebuiltins.py │ │ ├── _strptime.py │ │ ├── _threading_local.py │ │ ├── _weakrefset.py │ │ ├── abc.py │ │ ├── aifc.py │ │ ├── antigravity.py │ │ ├── argparse.py │ │ ├── ast.py │ │ ├── asynchat.py │ │ ├── asyncio │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ ├── base_events.cpython-39.opt-1.pyc │ │ │ │ ├── base_events.cpython-39.opt-2.pyc │ │ │ │ ├── base_events.cpython-39.pyc │ │ │ │ ├── base_futures.cpython-39.opt-1.pyc │ │ │ │ ├── base_futures.cpython-39.opt-2.pyc │ │ │ │ ├── base_futures.cpython-39.pyc │ │ │ │ ├── base_subprocess.cpython-39.opt-1.pyc │ │ │ │ ├── base_subprocess.cpython-39.opt-2.pyc │ │ │ │ ├── base_subprocess.cpython-39.pyc │ │ │ │ ├── base_tasks.cpython-39.opt-1.pyc │ │ │ │ ├── base_tasks.cpython-39.opt-2.pyc │ │ │ │ ├── base_tasks.cpython-39.pyc │ │ │ │ ├── constants.cpython-39.opt-1.pyc │ │ │ │ ├── constants.cpython-39.opt-2.pyc │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ ├── coroutines.cpython-39.opt-1.pyc │ │ │ │ ├── coroutines.cpython-39.opt-2.pyc │ │ │ │ ├── coroutines.cpython-39.pyc │ │ │ │ ├── events.cpython-39.opt-1.pyc │ │ │ │ ├── events.cpython-39.opt-2.pyc │ │ │ │ ├── events.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.opt-1.pyc │ │ │ │ ├── exceptions.cpython-39.opt-2.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── format_helpers.cpython-39.opt-1.pyc │ │ │ │ ├── format_helpers.cpython-39.opt-2.pyc │ │ │ │ ├── format_helpers.cpython-39.pyc │ │ │ │ ├── futures.cpython-39.opt-1.pyc │ │ │ │ ├── futures.cpython-39.opt-2.pyc │ │ │ │ ├── futures.cpython-39.pyc │ │ │ │ ├── locks.cpython-39.opt-1.pyc │ │ │ │ ├── locks.cpython-39.opt-2.pyc │ │ │ │ ├── locks.cpython-39.pyc │ │ │ │ ├── log.cpython-39.opt-1.pyc │ │ │ │ ├── log.cpython-39.opt-2.pyc │ │ │ │ ├── log.cpython-39.pyc │ │ │ │ ├── proactor_events.cpython-39.opt-1.pyc │ │ │ │ ├── proactor_events.cpython-39.opt-2.pyc │ │ │ │ ├── proactor_events.cpython-39.pyc │ │ │ │ ├── protocols.cpython-39.opt-1.pyc │ │ │ │ ├── protocols.cpython-39.opt-2.pyc │ │ │ │ ├── protocols.cpython-39.pyc │ │ │ │ ├── queues.cpython-39.opt-1.pyc │ │ │ │ ├── queues.cpython-39.opt-2.pyc │ │ │ │ ├── queues.cpython-39.pyc │ │ │ │ ├── runners.cpython-39.opt-1.pyc │ │ │ │ ├── runners.cpython-39.opt-2.pyc │ │ │ │ ├── runners.cpython-39.pyc │ │ │ │ ├── selector_events.cpython-39.opt-1.pyc │ │ │ │ ├── selector_events.cpython-39.opt-2.pyc │ │ │ │ ├── selector_events.cpython-39.pyc │ │ │ │ ├── sslproto.cpython-39.opt-1.pyc │ │ │ │ ├── sslproto.cpython-39.opt-2.pyc │ │ │ │ ├── sslproto.cpython-39.pyc │ │ │ │ ├── staggered.cpython-39.opt-1.pyc │ │ │ │ ├── staggered.cpython-39.opt-2.pyc │ │ │ │ ├── staggered.cpython-39.pyc │ │ │ │ ├── streams.cpython-39.opt-1.pyc │ │ │ │ ├── streams.cpython-39.opt-2.pyc │ │ │ │ ├── streams.cpython-39.pyc │ │ │ │ ├── subprocess.cpython-39.opt-1.pyc │ │ │ │ ├── subprocess.cpython-39.opt-2.pyc │ │ │ │ ├── subprocess.cpython-39.pyc │ │ │ │ ├── tasks.cpython-39.opt-1.pyc │ │ │ │ ├── tasks.cpython-39.opt-2.pyc │ │ │ │ ├── tasks.cpython-39.pyc │ │ │ │ ├── threads.cpython-39.opt-1.pyc │ │ │ │ ├── threads.cpython-39.opt-2.pyc │ │ │ │ ├── threads.cpython-39.pyc │ │ │ │ ├── transports.cpython-39.opt-1.pyc │ │ │ │ ├── transports.cpython-39.opt-2.pyc │ │ │ │ ├── transports.cpython-39.pyc │ │ │ │ ├── trsock.cpython-39.opt-1.pyc │ │ │ │ ├── trsock.cpython-39.opt-2.pyc │ │ │ │ ├── trsock.cpython-39.pyc │ │ │ │ ├── unix_events.cpython-39.opt-1.pyc │ │ │ │ ├── unix_events.cpython-39.opt-2.pyc │ │ │ │ ├── unix_events.cpython-39.pyc │ │ │ │ ├── windows_events.cpython-39.opt-1.pyc │ │ │ │ ├── windows_events.cpython-39.opt-2.pyc │ │ │ │ ├── windows_events.cpython-39.pyc │ │ │ │ ├── windows_utils.cpython-39.opt-1.pyc │ │ │ │ ├── windows_utils.cpython-39.opt-2.pyc │ │ │ │ └── windows_utils.cpython-39.pyc │ │ │ ├── base_events.py │ │ │ ├── base_futures.py │ │ │ ├── base_subprocess.py │ │ │ ├── base_tasks.py │ │ │ ├── constants.py │ │ │ ├── coroutines.py │ │ │ ├── events.py │ │ │ ├── exceptions.py │ │ │ ├── format_helpers.py │ │ │ ├── futures.py │ │ │ ├── locks.py │ │ │ ├── log.py │ │ │ ├── proactor_events.py │ │ │ ├── protocols.py │ │ │ ├── queues.py │ │ │ ├── runners.py │ │ │ ├── selector_events.py │ │ │ ├── sslproto.py │ │ │ ├── staggered.py │ │ │ ├── streams.py │ │ │ ├── subprocess.py │ │ │ ├── tasks.py │ │ │ ├── threads.py │ │ │ ├── transports.py │ │ │ ├── trsock.py │ │ │ ├── unix_events.py │ │ │ ├── windows_events.py │ │ │ └── windows_utils.py │ │ ├── asyncore.py │ │ ├── base64.py │ │ ├── bdb.py │ │ ├── binhex.py │ │ ├── bisect.py │ │ ├── bz2.py │ │ ├── cProfile.py │ │ ├── calendar.py │ │ ├── cgi.py │ │ ├── cgitb.py │ │ ├── chunk.py │ │ ├── cmd.py │ │ ├── code.py │ │ ├── codecs.py │ │ ├── codeop.py │ │ ├── collections │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── abc.cpython-39.opt-1.pyc │ │ │ │ ├── abc.cpython-39.opt-2.pyc │ │ │ │ └── abc.cpython-39.pyc │ │ │ └── abc.py │ │ ├── colorsys.py │ │ ├── compileall.py │ │ ├── concurrent │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ │ └── futures │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _base.cpython-39.opt-1.pyc │ │ │ │ ├── _base.cpython-39.opt-2.pyc │ │ │ │ ├── _base.cpython-39.pyc │ │ │ │ ├── process.cpython-39.opt-1.pyc │ │ │ │ ├── process.cpython-39.opt-2.pyc │ │ │ │ ├── process.cpython-39.pyc │ │ │ │ ├── thread.cpython-39.opt-1.pyc │ │ │ │ ├── thread.cpython-39.opt-2.pyc │ │ │ │ └── thread.cpython-39.pyc │ │ │ │ ├── _base.py │ │ │ │ ├── process.py │ │ │ │ └── thread.py │ │ ├── configparser.py │ │ ├── contextlib.py │ │ ├── contextvars.py │ │ ├── copy.py │ │ ├── copyreg.py │ │ ├── crypt.py │ │ ├── csv.py │ │ ├── ctypes │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _aix.cpython-39.opt-1.pyc │ │ │ │ ├── _aix.cpython-39.opt-2.pyc │ │ │ │ ├── _aix.cpython-39.pyc │ │ │ │ ├── _endian.cpython-39.opt-1.pyc │ │ │ │ ├── _endian.cpython-39.opt-2.pyc │ │ │ │ ├── _endian.cpython-39.pyc │ │ │ │ ├── util.cpython-39.opt-1.pyc │ │ │ │ ├── util.cpython-39.opt-2.pyc │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ ├── wintypes.cpython-39.opt-1.pyc │ │ │ │ ├── wintypes.cpython-39.opt-2.pyc │ │ │ │ └── wintypes.cpython-39.pyc │ │ │ ├── _aix.py │ │ │ ├── _endian.py │ │ │ ├── macholib │ │ │ │ ├── README.ctypes │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── dyld.cpython-39.opt-1.pyc │ │ │ │ │ ├── dyld.cpython-39.opt-2.pyc │ │ │ │ │ ├── dyld.cpython-39.pyc │ │ │ │ │ ├── dylib.cpython-39.opt-1.pyc │ │ │ │ │ ├── dylib.cpython-39.opt-2.pyc │ │ │ │ │ ├── dylib.cpython-39.pyc │ │ │ │ │ ├── framework.cpython-39.opt-1.pyc │ │ │ │ │ ├── framework.cpython-39.opt-2.pyc │ │ │ │ │ └── framework.cpython-39.pyc │ │ │ │ ├── dyld.py │ │ │ │ ├── dylib.py │ │ │ │ ├── fetch_macholib │ │ │ │ ├── fetch_macholib.bat │ │ │ │ └── framework.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── test_anon.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_anon.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_anon.cpython-39.pyc │ │ │ │ │ ├── test_array_in_pointer.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_array_in_pointer.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_array_in_pointer.cpython-39.pyc │ │ │ │ │ ├── test_arrays.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_arrays.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_arrays.cpython-39.pyc │ │ │ │ │ ├── test_as_parameter.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_as_parameter.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_as_parameter.cpython-39.pyc │ │ │ │ │ ├── test_bitfields.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_bitfields.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_bitfields.cpython-39.pyc │ │ │ │ │ ├── test_buffers.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_buffers.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_buffers.cpython-39.pyc │ │ │ │ │ ├── test_bytes.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_bytes.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_bytes.cpython-39.pyc │ │ │ │ │ ├── test_byteswap.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_byteswap.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_byteswap.cpython-39.pyc │ │ │ │ │ ├── test_callbacks.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_callbacks.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_callbacks.cpython-39.pyc │ │ │ │ │ ├── test_cast.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_cast.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_cast.cpython-39.pyc │ │ │ │ │ ├── test_cfuncs.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_cfuncs.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_cfuncs.cpython-39.pyc │ │ │ │ │ ├── test_checkretval.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_checkretval.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_checkretval.cpython-39.pyc │ │ │ │ │ ├── test_delattr.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_delattr.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_delattr.cpython-39.pyc │ │ │ │ │ ├── test_errno.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_errno.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_errno.cpython-39.pyc │ │ │ │ │ ├── test_find.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_find.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_find.cpython-39.pyc │ │ │ │ │ ├── test_frombuffer.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_frombuffer.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_frombuffer.cpython-39.pyc │ │ │ │ │ ├── test_funcptr.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_funcptr.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_funcptr.cpython-39.pyc │ │ │ │ │ ├── test_functions.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_functions.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_functions.cpython-39.pyc │ │ │ │ │ ├── test_incomplete.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_incomplete.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_incomplete.cpython-39.pyc │ │ │ │ │ ├── test_init.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_init.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_init.cpython-39.pyc │ │ │ │ │ ├── test_internals.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_internals.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_internals.cpython-39.pyc │ │ │ │ │ ├── test_keeprefs.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_keeprefs.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_keeprefs.cpython-39.pyc │ │ │ │ │ ├── test_libc.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_libc.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_libc.cpython-39.pyc │ │ │ │ │ ├── test_loading.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_loading.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_loading.cpython-39.pyc │ │ │ │ │ ├── test_macholib.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_macholib.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_macholib.cpython-39.pyc │ │ │ │ │ ├── test_memfunctions.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_memfunctions.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_memfunctions.cpython-39.pyc │ │ │ │ │ ├── test_numbers.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_numbers.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_numbers.cpython-39.pyc │ │ │ │ │ ├── test_objects.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_objects.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_objects.cpython-39.pyc │ │ │ │ │ ├── test_parameters.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_parameters.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_parameters.cpython-39.pyc │ │ │ │ │ ├── test_pep3118.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pep3118.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pep3118.cpython-39.pyc │ │ │ │ │ ├── test_pickling.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pickling.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pickling.cpython-39.pyc │ │ │ │ │ ├── test_pointers.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pointers.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pointers.cpython-39.pyc │ │ │ │ │ ├── test_prototypes.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_prototypes.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_prototypes.cpython-39.pyc │ │ │ │ │ ├── test_python_api.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_python_api.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_python_api.cpython-39.pyc │ │ │ │ │ ├── test_random_things.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_random_things.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_random_things.cpython-39.pyc │ │ │ │ │ ├── test_refcounts.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_refcounts.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_refcounts.cpython-39.pyc │ │ │ │ │ ├── test_repr.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_repr.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_repr.cpython-39.pyc │ │ │ │ │ ├── test_returnfuncptrs.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_returnfuncptrs.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_returnfuncptrs.cpython-39.pyc │ │ │ │ │ ├── test_simplesubclasses.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_simplesubclasses.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_simplesubclasses.cpython-39.pyc │ │ │ │ │ ├── test_sizes.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_sizes.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_sizes.cpython-39.pyc │ │ │ │ │ ├── test_slicing.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_slicing.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_slicing.cpython-39.pyc │ │ │ │ │ ├── test_stringptr.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_stringptr.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_stringptr.cpython-39.pyc │ │ │ │ │ ├── test_strings.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_strings.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_strings.cpython-39.pyc │ │ │ │ │ ├── test_struct_fields.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_struct_fields.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_struct_fields.cpython-39.pyc │ │ │ │ │ ├── test_structures.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_structures.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_structures.cpython-39.pyc │ │ │ │ │ ├── test_unaligned_structures.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_unaligned_structures.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_unaligned_structures.cpython-39.pyc │ │ │ │ │ ├── test_unicode.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_unicode.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_unicode.cpython-39.pyc │ │ │ │ │ ├── test_values.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_values.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_values.cpython-39.pyc │ │ │ │ │ ├── test_varsize_struct.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_varsize_struct.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_varsize_struct.cpython-39.pyc │ │ │ │ │ ├── test_win32.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_win32.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_win32.cpython-39.pyc │ │ │ │ │ ├── test_wintypes.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_wintypes.cpython-39.opt-2.pyc │ │ │ │ │ └── test_wintypes.cpython-39.pyc │ │ │ │ ├── test_anon.py │ │ │ │ ├── test_array_in_pointer.py │ │ │ │ ├── test_arrays.py │ │ │ │ ├── test_as_parameter.py │ │ │ │ ├── test_bitfields.py │ │ │ │ ├── test_buffers.py │ │ │ │ ├── test_bytes.py │ │ │ │ ├── test_byteswap.py │ │ │ │ ├── test_callbacks.py │ │ │ │ ├── test_cast.py │ │ │ │ ├── test_cfuncs.py │ │ │ │ ├── test_checkretval.py │ │ │ │ ├── test_delattr.py │ │ │ │ ├── test_errno.py │ │ │ │ ├── test_find.py │ │ │ │ ├── test_frombuffer.py │ │ │ │ ├── test_funcptr.py │ │ │ │ ├── test_functions.py │ │ │ │ ├── test_incomplete.py │ │ │ │ ├── test_init.py │ │ │ │ ├── test_internals.py │ │ │ │ ├── test_keeprefs.py │ │ │ │ ├── test_libc.py │ │ │ │ ├── test_loading.py │ │ │ │ ├── test_macholib.py │ │ │ │ ├── test_memfunctions.py │ │ │ │ ├── test_numbers.py │ │ │ │ ├── test_objects.py │ │ │ │ ├── test_parameters.py │ │ │ │ ├── test_pep3118.py │ │ │ │ ├── test_pickling.py │ │ │ │ ├── test_pointers.py │ │ │ │ ├── test_prototypes.py │ │ │ │ ├── test_python_api.py │ │ │ │ ├── test_random_things.py │ │ │ │ ├── test_refcounts.py │ │ │ │ ├── test_repr.py │ │ │ │ ├── test_returnfuncptrs.py │ │ │ │ ├── test_simplesubclasses.py │ │ │ │ ├── test_sizes.py │ │ │ │ ├── test_slicing.py │ │ │ │ ├── test_stringptr.py │ │ │ │ ├── test_strings.py │ │ │ │ ├── test_struct_fields.py │ │ │ │ ├── test_structures.py │ │ │ │ ├── test_unaligned_structures.py │ │ │ │ ├── test_unicode.py │ │ │ │ ├── test_values.py │ │ │ │ ├── test_varsize_struct.py │ │ │ │ ├── test_win32.py │ │ │ │ └── test_wintypes.py │ │ │ ├── util.py │ │ │ └── wintypes.py │ │ ├── curses │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── ascii.cpython-39.opt-1.pyc │ │ │ │ ├── ascii.cpython-39.opt-2.pyc │ │ │ │ ├── ascii.cpython-39.pyc │ │ │ │ ├── has_key.cpython-39.opt-1.pyc │ │ │ │ ├── has_key.cpython-39.opt-2.pyc │ │ │ │ ├── has_key.cpython-39.pyc │ │ │ │ ├── panel.cpython-39.opt-1.pyc │ │ │ │ ├── panel.cpython-39.opt-2.pyc │ │ │ │ ├── panel.cpython-39.pyc │ │ │ │ ├── textpad.cpython-39.opt-1.pyc │ │ │ │ ├── textpad.cpython-39.opt-2.pyc │ │ │ │ └── textpad.cpython-39.pyc │ │ │ ├── ascii.py │ │ │ ├── has_key.py │ │ │ ├── panel.py │ │ │ └── textpad.py │ │ ├── dataclasses.py │ │ ├── datetime.py │ │ ├── dbm │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── dumb.cpython-39.opt-1.pyc │ │ │ │ ├── dumb.cpython-39.opt-2.pyc │ │ │ │ ├── dumb.cpython-39.pyc │ │ │ │ ├── gnu.cpython-39.opt-1.pyc │ │ │ │ ├── gnu.cpython-39.opt-2.pyc │ │ │ │ ├── gnu.cpython-39.pyc │ │ │ │ ├── ndbm.cpython-39.opt-1.pyc │ │ │ │ ├── ndbm.cpython-39.opt-2.pyc │ │ │ │ └── ndbm.cpython-39.pyc │ │ │ ├── dumb.py │ │ │ ├── gnu.py │ │ │ └── ndbm.py │ │ ├── decimal.py │ │ ├── difflib.py │ │ ├── dis.py │ │ ├── distutils │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _msvccompiler.cpython-39.opt-1.pyc │ │ │ │ ├── _msvccompiler.cpython-39.opt-2.pyc │ │ │ │ ├── _msvccompiler.cpython-39.pyc │ │ │ │ ├── archive_util.cpython-39.opt-1.pyc │ │ │ │ ├── archive_util.cpython-39.opt-2.pyc │ │ │ │ ├── archive_util.cpython-39.pyc │ │ │ │ ├── bcppcompiler.cpython-39.opt-1.pyc │ │ │ │ ├── bcppcompiler.cpython-39.opt-2.pyc │ │ │ │ ├── bcppcompiler.cpython-39.pyc │ │ │ │ ├── ccompiler.cpython-39.opt-1.pyc │ │ │ │ ├── ccompiler.cpython-39.opt-2.pyc │ │ │ │ ├── ccompiler.cpython-39.pyc │ │ │ │ ├── cmd.cpython-39.opt-1.pyc │ │ │ │ ├── cmd.cpython-39.opt-2.pyc │ │ │ │ ├── cmd.cpython-39.pyc │ │ │ │ ├── config.cpython-39.opt-1.pyc │ │ │ │ ├── config.cpython-39.opt-2.pyc │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ ├── core.cpython-39.opt-1.pyc │ │ │ │ ├── core.cpython-39.opt-2.pyc │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ ├── cygwinccompiler.cpython-39.opt-1.pyc │ │ │ │ ├── cygwinccompiler.cpython-39.opt-2.pyc │ │ │ │ ├── cygwinccompiler.cpython-39.pyc │ │ │ │ ├── debug.cpython-39.opt-1.pyc │ │ │ │ ├── debug.cpython-39.opt-2.pyc │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ ├── dep_util.cpython-39.opt-1.pyc │ │ │ │ ├── dep_util.cpython-39.opt-2.pyc │ │ │ │ ├── dep_util.cpython-39.pyc │ │ │ │ ├── dir_util.cpython-39.opt-1.pyc │ │ │ │ ├── dir_util.cpython-39.opt-2.pyc │ │ │ │ ├── dir_util.cpython-39.pyc │ │ │ │ ├── dist.cpython-39.opt-1.pyc │ │ │ │ ├── dist.cpython-39.opt-2.pyc │ │ │ │ ├── dist.cpython-39.pyc │ │ │ │ ├── errors.cpython-39.opt-1.pyc │ │ │ │ ├── errors.cpython-39.opt-2.pyc │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ ├── extension.cpython-39.opt-1.pyc │ │ │ │ ├── extension.cpython-39.opt-2.pyc │ │ │ │ ├── extension.cpython-39.pyc │ │ │ │ ├── fancy_getopt.cpython-39.opt-1.pyc │ │ │ │ ├── fancy_getopt.cpython-39.opt-2.pyc │ │ │ │ ├── fancy_getopt.cpython-39.pyc │ │ │ │ ├── file_util.cpython-39.opt-1.pyc │ │ │ │ ├── file_util.cpython-39.opt-2.pyc │ │ │ │ ├── file_util.cpython-39.pyc │ │ │ │ ├── filelist.cpython-39.opt-1.pyc │ │ │ │ ├── filelist.cpython-39.opt-2.pyc │ │ │ │ ├── filelist.cpython-39.pyc │ │ │ │ ├── log.cpython-39.opt-1.pyc │ │ │ │ ├── log.cpython-39.opt-2.pyc │ │ │ │ ├── log.cpython-39.pyc │ │ │ │ ├── msvc9compiler.cpython-39.opt-1.pyc │ │ │ │ ├── msvc9compiler.cpython-39.opt-2.pyc │ │ │ │ ├── msvc9compiler.cpython-39.pyc │ │ │ │ ├── msvccompiler.cpython-39.opt-1.pyc │ │ │ │ ├── msvccompiler.cpython-39.opt-2.pyc │ │ │ │ ├── msvccompiler.cpython-39.pyc │ │ │ │ ├── spawn.cpython-39.opt-1.pyc │ │ │ │ ├── spawn.cpython-39.opt-2.pyc │ │ │ │ ├── spawn.cpython-39.pyc │ │ │ │ ├── sysconfig.cpython-39.opt-1.pyc │ │ │ │ ├── sysconfig.cpython-39.opt-2.pyc │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ ├── text_file.cpython-39.opt-1.pyc │ │ │ │ ├── text_file.cpython-39.opt-2.pyc │ │ │ │ ├── text_file.cpython-39.pyc │ │ │ │ ├── unixccompiler.cpython-39.opt-1.pyc │ │ │ │ ├── unixccompiler.cpython-39.opt-2.pyc │ │ │ │ ├── unixccompiler.cpython-39.pyc │ │ │ │ ├── util.cpython-39.opt-1.pyc │ │ │ │ ├── util.cpython-39.opt-2.pyc │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ ├── version.cpython-39.opt-1.pyc │ │ │ │ ├── version.cpython-39.opt-2.pyc │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ ├── versionpredicate.cpython-39.opt-1.pyc │ │ │ │ ├── versionpredicate.cpython-39.opt-2.pyc │ │ │ │ └── versionpredicate.cpython-39.pyc │ │ │ ├── _msvccompiler.py │ │ │ ├── archive_util.py │ │ │ ├── bcppcompiler.py │ │ │ ├── ccompiler.py │ │ │ ├── cmd.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── bdist.cpython-39.opt-1.pyc │ │ │ │ │ ├── bdist.cpython-39.opt-2.pyc │ │ │ │ │ ├── bdist.cpython-39.pyc │ │ │ │ │ ├── bdist_dumb.cpython-39.opt-1.pyc │ │ │ │ │ ├── bdist_dumb.cpython-39.opt-2.pyc │ │ │ │ │ ├── bdist_dumb.cpython-39.pyc │ │ │ │ │ ├── bdist_msi.cpython-39.opt-1.pyc │ │ │ │ │ ├── bdist_msi.cpython-39.opt-2.pyc │ │ │ │ │ ├── bdist_msi.cpython-39.pyc │ │ │ │ │ ├── bdist_rpm.cpython-39.opt-1.pyc │ │ │ │ │ ├── bdist_rpm.cpython-39.opt-2.pyc │ │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ │ ├── bdist_wininst.cpython-39.opt-1.pyc │ │ │ │ │ ├── bdist_wininst.cpython-39.opt-2.pyc │ │ │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ │ │ ├── build.cpython-39.opt-1.pyc │ │ │ │ │ ├── build.cpython-39.opt-2.pyc │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ ├── build_clib.cpython-39.opt-1.pyc │ │ │ │ │ ├── build_clib.cpython-39.opt-2.pyc │ │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ │ ├── build_ext.cpython-39.opt-1.pyc │ │ │ │ │ ├── build_ext.cpython-39.opt-2.pyc │ │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ │ ├── build_py.cpython-39.opt-1.pyc │ │ │ │ │ ├── build_py.cpython-39.opt-2.pyc │ │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ │ ├── build_scripts.cpython-39.opt-1.pyc │ │ │ │ │ ├── build_scripts.cpython-39.opt-2.pyc │ │ │ │ │ ├── build_scripts.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.opt-1.pyc │ │ │ │ │ ├── check.cpython-39.opt-2.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── clean.cpython-39.opt-1.pyc │ │ │ │ │ ├── clean.cpython-39.opt-2.pyc │ │ │ │ │ ├── clean.cpython-39.pyc │ │ │ │ │ ├── config.cpython-39.opt-1.pyc │ │ │ │ │ ├── config.cpython-39.opt-2.pyc │ │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ │ ├── install.cpython-39.opt-1.pyc │ │ │ │ │ ├── install.cpython-39.opt-2.pyc │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ ├── install_data.cpython-39.opt-1.pyc │ │ │ │ │ ├── install_data.cpython-39.opt-2.pyc │ │ │ │ │ ├── install_data.cpython-39.pyc │ │ │ │ │ ├── install_egg_info.cpython-39.opt-1.pyc │ │ │ │ │ ├── install_egg_info.cpython-39.opt-2.pyc │ │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ │ ├── install_headers.cpython-39.opt-1.pyc │ │ │ │ │ ├── install_headers.cpython-39.opt-2.pyc │ │ │ │ │ ├── install_headers.cpython-39.pyc │ │ │ │ │ ├── install_lib.cpython-39.opt-1.pyc │ │ │ │ │ ├── install_lib.cpython-39.opt-2.pyc │ │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ │ ├── install_scripts.cpython-39.opt-1.pyc │ │ │ │ │ ├── install_scripts.cpython-39.opt-2.pyc │ │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ │ ├── register.cpython-39.opt-1.pyc │ │ │ │ │ ├── register.cpython-39.opt-2.pyc │ │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ │ ├── sdist.cpython-39.opt-1.pyc │ │ │ │ │ ├── sdist.cpython-39.opt-2.pyc │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ ├── upload.cpython-39.opt-1.pyc │ │ │ │ │ ├── upload.cpython-39.opt-2.pyc │ │ │ │ │ └── upload.cpython-39.pyc │ │ │ │ ├── bdist.py │ │ │ │ ├── bdist_dumb.py │ │ │ │ ├── bdist_msi.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── check.py │ │ │ │ ├── clean.py │ │ │ │ ├── command_template │ │ │ │ ├── config.py │ │ │ │ ├── install.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_headers.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── register.py │ │ │ │ ├── sdist.py │ │ │ │ ├── upload.py │ │ │ │ ├── wininst-10.0-amd64.exe │ │ │ │ ├── wininst-10.0.exe │ │ │ │ ├── wininst-14.0-amd64.exe │ │ │ │ ├── wininst-14.0.exe │ │ │ │ ├── wininst-6.0.exe │ │ │ │ ├── wininst-7.1.exe │ │ │ │ ├── wininst-8.0.exe │ │ │ │ ├── wininst-9.0-amd64.exe │ │ │ │ └── wininst-9.0.exe │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── cygwinccompiler.py │ │ │ ├── debug.py │ │ │ ├── dep_util.py │ │ │ ├── dir_util.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── fancy_getopt.py │ │ │ ├── file_util.py │ │ │ ├── filelist.py │ │ │ ├── log.py │ │ │ ├── msvc9compiler.py │ │ │ ├── msvccompiler.py │ │ │ ├── spawn.py │ │ │ ├── sysconfig.py │ │ │ ├── tests │ │ │ │ ├── Setup.sample │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── support.cpython-39.opt-1.pyc │ │ │ │ │ ├── support.cpython-39.opt-2.pyc │ │ │ │ │ ├── support.cpython-39.pyc │ │ │ │ │ ├── test_archive_util.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_archive_util.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_archive_util.cpython-39.pyc │ │ │ │ │ ├── test_bdist.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_bdist.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_bdist.cpython-39.pyc │ │ │ │ │ ├── test_bdist_dumb.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_bdist_dumb.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_bdist_dumb.cpython-39.pyc │ │ │ │ │ ├── test_bdist_msi.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_bdist_msi.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_bdist_msi.cpython-39.pyc │ │ │ │ │ ├── test_bdist_rpm.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_bdist_rpm.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_bdist_rpm.cpython-39.pyc │ │ │ │ │ ├── test_bdist_wininst.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_bdist_wininst.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_bdist_wininst.cpython-39.pyc │ │ │ │ │ ├── test_build.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_build.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_build.cpython-39.pyc │ │ │ │ │ ├── test_build_clib.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_build_clib.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_build_clib.cpython-39.pyc │ │ │ │ │ ├── test_build_ext.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_build_ext.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_build_ext.cpython-39.pyc │ │ │ │ │ ├── test_build_py.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_build_py.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_build_py.cpython-39.pyc │ │ │ │ │ ├── test_build_scripts.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_build_scripts.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_build_scripts.cpython-39.pyc │ │ │ │ │ ├── test_check.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_check.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_check.cpython-39.pyc │ │ │ │ │ ├── test_clean.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_clean.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_clean.cpython-39.pyc │ │ │ │ │ ├── test_cmd.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_cmd.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_cmd.cpython-39.pyc │ │ │ │ │ ├── test_config.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_config.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_config.cpython-39.pyc │ │ │ │ │ ├── test_config_cmd.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_config_cmd.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_config_cmd.cpython-39.pyc │ │ │ │ │ ├── test_core.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_core.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_core.cpython-39.pyc │ │ │ │ │ ├── test_cygwinccompiler.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_cygwinccompiler.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_cygwinccompiler.cpython-39.pyc │ │ │ │ │ ├── test_dep_util.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_dep_util.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_dep_util.cpython-39.pyc │ │ │ │ │ ├── test_dir_util.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_dir_util.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_dir_util.cpython-39.pyc │ │ │ │ │ ├── test_dist.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_dist.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_dist.cpython-39.pyc │ │ │ │ │ ├── test_extension.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_extension.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_extension.cpython-39.pyc │ │ │ │ │ ├── test_file_util.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_file_util.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_file_util.cpython-39.pyc │ │ │ │ │ ├── test_filelist.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_filelist.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_filelist.cpython-39.pyc │ │ │ │ │ ├── test_install.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_install.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_install.cpython-39.pyc │ │ │ │ │ ├── test_install_data.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_install_data.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_install_data.cpython-39.pyc │ │ │ │ │ ├── test_install_headers.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_install_headers.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_install_headers.cpython-39.pyc │ │ │ │ │ ├── test_install_lib.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_install_lib.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_install_lib.cpython-39.pyc │ │ │ │ │ ├── test_install_scripts.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_install_scripts.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_install_scripts.cpython-39.pyc │ │ │ │ │ ├── test_log.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_log.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_log.cpython-39.pyc │ │ │ │ │ ├── test_msvc9compiler.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_msvc9compiler.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_msvc9compiler.cpython-39.pyc │ │ │ │ │ ├── test_msvccompiler.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_msvccompiler.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_msvccompiler.cpython-39.pyc │ │ │ │ │ ├── test_register.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_register.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_register.cpython-39.pyc │ │ │ │ │ ├── test_sdist.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_sdist.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_sdist.cpython-39.pyc │ │ │ │ │ ├── test_spawn.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_spawn.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_spawn.cpython-39.pyc │ │ │ │ │ ├── test_sysconfig.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_sysconfig.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_sysconfig.cpython-39.pyc │ │ │ │ │ ├── test_text_file.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_text_file.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_text_file.cpython-39.pyc │ │ │ │ │ ├── test_unixccompiler.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_unixccompiler.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_unixccompiler.cpython-39.pyc │ │ │ │ │ ├── test_upload.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_upload.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_upload.cpython-39.pyc │ │ │ │ │ ├── test_util.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_util.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_util.cpython-39.pyc │ │ │ │ │ ├── test_version.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_version.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_version.cpython-39.pyc │ │ │ │ │ ├── test_versionpredicate.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_versionpredicate.cpython-39.opt-2.pyc │ │ │ │ │ └── test_versionpredicate.cpython-39.pyc │ │ │ │ ├── includetest.rst │ │ │ │ ├── support.py │ │ │ │ ├── test_archive_util.py │ │ │ │ ├── test_bdist.py │ │ │ │ ├── test_bdist_dumb.py │ │ │ │ ├── test_bdist_msi.py │ │ │ │ ├── test_bdist_rpm.py │ │ │ │ ├── test_bdist_wininst.py │ │ │ │ ├── test_build.py │ │ │ │ ├── test_build_clib.py │ │ │ │ ├── test_build_ext.py │ │ │ │ ├── test_build_py.py │ │ │ │ ├── test_build_scripts.py │ │ │ │ ├── test_check.py │ │ │ │ ├── test_clean.py │ │ │ │ ├── test_cmd.py │ │ │ │ ├── test_config.py │ │ │ │ ├── test_config_cmd.py │ │ │ │ ├── test_core.py │ │ │ │ ├── test_cygwinccompiler.py │ │ │ │ ├── test_dep_util.py │ │ │ │ ├── test_dir_util.py │ │ │ │ ├── test_dist.py │ │ │ │ ├── test_extension.py │ │ │ │ ├── test_file_util.py │ │ │ │ ├── test_filelist.py │ │ │ │ ├── test_install.py │ │ │ │ ├── test_install_data.py │ │ │ │ ├── test_install_headers.py │ │ │ │ ├── test_install_lib.py │ │ │ │ ├── test_install_scripts.py │ │ │ │ ├── test_log.py │ │ │ │ ├── test_msvc9compiler.py │ │ │ │ ├── test_msvccompiler.py │ │ │ │ ├── test_register.py │ │ │ │ ├── test_sdist.py │ │ │ │ ├── test_spawn.py │ │ │ │ ├── test_sysconfig.py │ │ │ │ ├── test_text_file.py │ │ │ │ ├── test_unixccompiler.py │ │ │ │ ├── test_upload.py │ │ │ │ ├── test_util.py │ │ │ │ ├── test_version.py │ │ │ │ └── test_versionpredicate.py │ │ │ ├── text_file.py │ │ │ ├── unixccompiler.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ └── versionpredicate.py │ │ ├── doctest.py │ │ ├── email │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _encoded_words.cpython-39.opt-1.pyc │ │ │ │ ├── _encoded_words.cpython-39.opt-2.pyc │ │ │ │ ├── _encoded_words.cpython-39.pyc │ │ │ │ ├── _header_value_parser.cpython-39.opt-1.pyc │ │ │ │ ├── _header_value_parser.cpython-39.opt-2.pyc │ │ │ │ ├── _header_value_parser.cpython-39.pyc │ │ │ │ ├── _parseaddr.cpython-39.opt-1.pyc │ │ │ │ ├── _parseaddr.cpython-39.opt-2.pyc │ │ │ │ ├── _parseaddr.cpython-39.pyc │ │ │ │ ├── _policybase.cpython-39.opt-1.pyc │ │ │ │ ├── _policybase.cpython-39.opt-2.pyc │ │ │ │ ├── _policybase.cpython-39.pyc │ │ │ │ ├── base64mime.cpython-39.opt-1.pyc │ │ │ │ ├── base64mime.cpython-39.opt-2.pyc │ │ │ │ ├── base64mime.cpython-39.pyc │ │ │ │ ├── charset.cpython-39.opt-1.pyc │ │ │ │ ├── charset.cpython-39.opt-2.pyc │ │ │ │ ├── charset.cpython-39.pyc │ │ │ │ ├── contentmanager.cpython-39.opt-1.pyc │ │ │ │ ├── contentmanager.cpython-39.opt-2.pyc │ │ │ │ ├── contentmanager.cpython-39.pyc │ │ │ │ ├── encoders.cpython-39.opt-1.pyc │ │ │ │ ├── encoders.cpython-39.opt-2.pyc │ │ │ │ ├── encoders.cpython-39.pyc │ │ │ │ ├── errors.cpython-39.opt-1.pyc │ │ │ │ ├── errors.cpython-39.opt-2.pyc │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ ├── feedparser.cpython-39.opt-1.pyc │ │ │ │ ├── feedparser.cpython-39.opt-2.pyc │ │ │ │ ├── feedparser.cpython-39.pyc │ │ │ │ ├── generator.cpython-39.opt-1.pyc │ │ │ │ ├── generator.cpython-39.opt-2.pyc │ │ │ │ ├── generator.cpython-39.pyc │ │ │ │ ├── header.cpython-39.opt-1.pyc │ │ │ │ ├── header.cpython-39.opt-2.pyc │ │ │ │ ├── header.cpython-39.pyc │ │ │ │ ├── headerregistry.cpython-39.opt-1.pyc │ │ │ │ ├── headerregistry.cpython-39.opt-2.pyc │ │ │ │ ├── headerregistry.cpython-39.pyc │ │ │ │ ├── iterators.cpython-39.opt-1.pyc │ │ │ │ ├── iterators.cpython-39.opt-2.pyc │ │ │ │ ├── iterators.cpython-39.pyc │ │ │ │ ├── message.cpython-39.opt-1.pyc │ │ │ │ ├── message.cpython-39.opt-2.pyc │ │ │ │ ├── message.cpython-39.pyc │ │ │ │ ├── parser.cpython-39.opt-1.pyc │ │ │ │ ├── parser.cpython-39.opt-2.pyc │ │ │ │ ├── parser.cpython-39.pyc │ │ │ │ ├── policy.cpython-39.opt-1.pyc │ │ │ │ ├── policy.cpython-39.opt-2.pyc │ │ │ │ ├── policy.cpython-39.pyc │ │ │ │ ├── quoprimime.cpython-39.opt-1.pyc │ │ │ │ ├── quoprimime.cpython-39.opt-2.pyc │ │ │ │ ├── quoprimime.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.opt-1.pyc │ │ │ │ ├── utils.cpython-39.opt-2.pyc │ │ │ │ └── utils.cpython-39.pyc │ │ │ ├── _encoded_words.py │ │ │ ├── _header_value_parser.py │ │ │ ├── _parseaddr.py │ │ │ ├── _policybase.py │ │ │ ├── architecture.rst │ │ │ ├── base64mime.py │ │ │ ├── charset.py │ │ │ ├── contentmanager.py │ │ │ ├── encoders.py │ │ │ ├── errors.py │ │ │ ├── feedparser.py │ │ │ ├── generator.py │ │ │ ├── header.py │ │ │ ├── headerregistry.py │ │ │ ├── iterators.py │ │ │ ├── message.py │ │ │ ├── mime │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── application.cpython-39.opt-1.pyc │ │ │ │ │ ├── application.cpython-39.opt-2.pyc │ │ │ │ │ ├── application.cpython-39.pyc │ │ │ │ │ ├── audio.cpython-39.opt-1.pyc │ │ │ │ │ ├── audio.cpython-39.opt-2.pyc │ │ │ │ │ ├── audio.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.opt-1.pyc │ │ │ │ │ ├── base.cpython-39.opt-2.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── image.cpython-39.opt-1.pyc │ │ │ │ │ ├── image.cpython-39.opt-2.pyc │ │ │ │ │ ├── image.cpython-39.pyc │ │ │ │ │ ├── message.cpython-39.opt-1.pyc │ │ │ │ │ ├── message.cpython-39.opt-2.pyc │ │ │ │ │ ├── message.cpython-39.pyc │ │ │ │ │ ├── multipart.cpython-39.opt-1.pyc │ │ │ │ │ ├── multipart.cpython-39.opt-2.pyc │ │ │ │ │ ├── multipart.cpython-39.pyc │ │ │ │ │ ├── nonmultipart.cpython-39.opt-1.pyc │ │ │ │ │ ├── nonmultipart.cpython-39.opt-2.pyc │ │ │ │ │ ├── nonmultipart.cpython-39.pyc │ │ │ │ │ ├── text.cpython-39.opt-1.pyc │ │ │ │ │ ├── text.cpython-39.opt-2.pyc │ │ │ │ │ └── text.cpython-39.pyc │ │ │ │ ├── application.py │ │ │ │ ├── audio.py │ │ │ │ ├── base.py │ │ │ │ ├── image.py │ │ │ │ ├── message.py │ │ │ │ ├── multipart.py │ │ │ │ ├── nonmultipart.py │ │ │ │ └── text.py │ │ │ ├── parser.py │ │ │ ├── policy.py │ │ │ ├── quoprimime.py │ │ │ └── utils.py │ │ ├── encodings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── aliases.cpython-39.opt-1.pyc │ │ │ │ ├── aliases.cpython-39.opt-2.pyc │ │ │ │ ├── aliases.cpython-39.pyc │ │ │ │ ├── ascii.cpython-39.opt-1.pyc │ │ │ │ ├── ascii.cpython-39.opt-2.pyc │ │ │ │ ├── ascii.cpython-39.pyc │ │ │ │ ├── base64_codec.cpython-39.opt-1.pyc │ │ │ │ ├── base64_codec.cpython-39.opt-2.pyc │ │ │ │ ├── base64_codec.cpython-39.pyc │ │ │ │ ├── big5.cpython-39.opt-1.pyc │ │ │ │ ├── big5.cpython-39.opt-2.pyc │ │ │ │ ├── big5.cpython-39.pyc │ │ │ │ ├── big5hkscs.cpython-39.opt-1.pyc │ │ │ │ ├── big5hkscs.cpython-39.opt-2.pyc │ │ │ │ ├── big5hkscs.cpython-39.pyc │ │ │ │ ├── bz2_codec.cpython-39.opt-1.pyc │ │ │ │ ├── bz2_codec.cpython-39.opt-2.pyc │ │ │ │ ├── bz2_codec.cpython-39.pyc │ │ │ │ ├── charmap.cpython-39.opt-1.pyc │ │ │ │ ├── charmap.cpython-39.opt-2.pyc │ │ │ │ ├── charmap.cpython-39.pyc │ │ │ │ ├── cp037.cpython-39.opt-1.pyc │ │ │ │ ├── cp037.cpython-39.opt-2.pyc │ │ │ │ ├── cp037.cpython-39.pyc │ │ │ │ ├── cp1006.cpython-39.opt-1.pyc │ │ │ │ ├── cp1006.cpython-39.opt-2.pyc │ │ │ │ ├── cp1006.cpython-39.pyc │ │ │ │ ├── cp1026.cpython-39.opt-1.pyc │ │ │ │ ├── cp1026.cpython-39.opt-2.pyc │ │ │ │ ├── cp1026.cpython-39.pyc │ │ │ │ ├── cp1125.cpython-39.opt-1.pyc │ │ │ │ ├── cp1125.cpython-39.opt-2.pyc │ │ │ │ ├── cp1125.cpython-39.pyc │ │ │ │ ├── cp1140.cpython-39.opt-1.pyc │ │ │ │ ├── cp1140.cpython-39.opt-2.pyc │ │ │ │ ├── cp1140.cpython-39.pyc │ │ │ │ ├── cp1250.cpython-39.opt-1.pyc │ │ │ │ ├── cp1250.cpython-39.opt-2.pyc │ │ │ │ ├── cp1250.cpython-39.pyc │ │ │ │ ├── cp1251.cpython-39.opt-1.pyc │ │ │ │ ├── cp1251.cpython-39.opt-2.pyc │ │ │ │ ├── cp1251.cpython-39.pyc │ │ │ │ ├── cp1252.cpython-39.opt-1.pyc │ │ │ │ ├── cp1252.cpython-39.opt-2.pyc │ │ │ │ ├── cp1252.cpython-39.pyc │ │ │ │ ├── cp1253.cpython-39.opt-1.pyc │ │ │ │ ├── cp1253.cpython-39.opt-2.pyc │ │ │ │ ├── cp1253.cpython-39.pyc │ │ │ │ ├── cp1254.cpython-39.opt-1.pyc │ │ │ │ ├── cp1254.cpython-39.opt-2.pyc │ │ │ │ ├── cp1254.cpython-39.pyc │ │ │ │ ├── cp1255.cpython-39.opt-1.pyc │ │ │ │ ├── cp1255.cpython-39.opt-2.pyc │ │ │ │ ├── cp1255.cpython-39.pyc │ │ │ │ ├── cp1256.cpython-39.opt-1.pyc │ │ │ │ ├── cp1256.cpython-39.opt-2.pyc │ │ │ │ ├── cp1256.cpython-39.pyc │ │ │ │ ├── cp1257.cpython-39.opt-1.pyc │ │ │ │ ├── cp1257.cpython-39.opt-2.pyc │ │ │ │ ├── cp1257.cpython-39.pyc │ │ │ │ ├── cp1258.cpython-39.opt-1.pyc │ │ │ │ ├── cp1258.cpython-39.opt-2.pyc │ │ │ │ ├── cp1258.cpython-39.pyc │ │ │ │ ├── cp273.cpython-39.opt-1.pyc │ │ │ │ ├── cp273.cpython-39.opt-2.pyc │ │ │ │ ├── cp273.cpython-39.pyc │ │ │ │ ├── cp424.cpython-39.opt-1.pyc │ │ │ │ ├── cp424.cpython-39.opt-2.pyc │ │ │ │ ├── cp424.cpython-39.pyc │ │ │ │ ├── cp437.cpython-39.opt-1.pyc │ │ │ │ ├── cp437.cpython-39.opt-2.pyc │ │ │ │ ├── cp437.cpython-39.pyc │ │ │ │ ├── cp500.cpython-39.opt-1.pyc │ │ │ │ ├── cp500.cpython-39.opt-2.pyc │ │ │ │ ├── cp500.cpython-39.pyc │ │ │ │ ├── cp720.cpython-39.opt-1.pyc │ │ │ │ ├── cp720.cpython-39.opt-2.pyc │ │ │ │ ├── cp720.cpython-39.pyc │ │ │ │ ├── cp737.cpython-39.opt-1.pyc │ │ │ │ ├── cp737.cpython-39.opt-2.pyc │ │ │ │ ├── cp737.cpython-39.pyc │ │ │ │ ├── cp775.cpython-39.opt-1.pyc │ │ │ │ ├── cp775.cpython-39.opt-2.pyc │ │ │ │ ├── cp775.cpython-39.pyc │ │ │ │ ├── cp850.cpython-39.opt-1.pyc │ │ │ │ ├── cp850.cpython-39.opt-2.pyc │ │ │ │ ├── cp850.cpython-39.pyc │ │ │ │ ├── cp852.cpython-39.opt-1.pyc │ │ │ │ ├── cp852.cpython-39.opt-2.pyc │ │ │ │ ├── cp852.cpython-39.pyc │ │ │ │ ├── cp855.cpython-39.opt-1.pyc │ │ │ │ ├── cp855.cpython-39.opt-2.pyc │ │ │ │ ├── cp855.cpython-39.pyc │ │ │ │ ├── cp856.cpython-39.opt-1.pyc │ │ │ │ ├── cp856.cpython-39.opt-2.pyc │ │ │ │ ├── cp856.cpython-39.pyc │ │ │ │ ├── cp857.cpython-39.opt-1.pyc │ │ │ │ ├── cp857.cpython-39.opt-2.pyc │ │ │ │ ├── cp857.cpython-39.pyc │ │ │ │ ├── cp858.cpython-39.opt-1.pyc │ │ │ │ ├── cp858.cpython-39.opt-2.pyc │ │ │ │ ├── cp858.cpython-39.pyc │ │ │ │ ├── cp860.cpython-39.opt-1.pyc │ │ │ │ ├── cp860.cpython-39.opt-2.pyc │ │ │ │ ├── cp860.cpython-39.pyc │ │ │ │ ├── cp861.cpython-39.opt-1.pyc │ │ │ │ ├── cp861.cpython-39.opt-2.pyc │ │ │ │ ├── cp861.cpython-39.pyc │ │ │ │ ├── cp862.cpython-39.opt-1.pyc │ │ │ │ ├── cp862.cpython-39.opt-2.pyc │ │ │ │ ├── cp862.cpython-39.pyc │ │ │ │ ├── cp863.cpython-39.opt-1.pyc │ │ │ │ ├── cp863.cpython-39.opt-2.pyc │ │ │ │ ├── cp863.cpython-39.pyc │ │ │ │ ├── cp864.cpython-39.opt-1.pyc │ │ │ │ ├── cp864.cpython-39.opt-2.pyc │ │ │ │ ├── cp864.cpython-39.pyc │ │ │ │ ├── cp865.cpython-39.opt-1.pyc │ │ │ │ ├── cp865.cpython-39.opt-2.pyc │ │ │ │ ├── cp865.cpython-39.pyc │ │ │ │ ├── cp866.cpython-39.opt-1.pyc │ │ │ │ ├── cp866.cpython-39.opt-2.pyc │ │ │ │ ├── cp866.cpython-39.pyc │ │ │ │ ├── cp869.cpython-39.opt-1.pyc │ │ │ │ ├── cp869.cpython-39.opt-2.pyc │ │ │ │ ├── cp869.cpython-39.pyc │ │ │ │ ├── cp874.cpython-39.opt-1.pyc │ │ │ │ ├── cp874.cpython-39.opt-2.pyc │ │ │ │ ├── cp874.cpython-39.pyc │ │ │ │ ├── cp875.cpython-39.opt-1.pyc │ │ │ │ ├── cp875.cpython-39.opt-2.pyc │ │ │ │ ├── cp875.cpython-39.pyc │ │ │ │ ├── cp932.cpython-39.opt-1.pyc │ │ │ │ ├── cp932.cpython-39.opt-2.pyc │ │ │ │ ├── cp932.cpython-39.pyc │ │ │ │ ├── cp949.cpython-39.opt-1.pyc │ │ │ │ ├── cp949.cpython-39.opt-2.pyc │ │ │ │ ├── cp949.cpython-39.pyc │ │ │ │ ├── cp950.cpython-39.opt-1.pyc │ │ │ │ ├── cp950.cpython-39.opt-2.pyc │ │ │ │ ├── cp950.cpython-39.pyc │ │ │ │ ├── euc_jis_2004.cpython-39.opt-1.pyc │ │ │ │ ├── euc_jis_2004.cpython-39.opt-2.pyc │ │ │ │ ├── euc_jis_2004.cpython-39.pyc │ │ │ │ ├── euc_jisx0213.cpython-39.opt-1.pyc │ │ │ │ ├── euc_jisx0213.cpython-39.opt-2.pyc │ │ │ │ ├── euc_jisx0213.cpython-39.pyc │ │ │ │ ├── euc_jp.cpython-39.opt-1.pyc │ │ │ │ ├── euc_jp.cpython-39.opt-2.pyc │ │ │ │ ├── euc_jp.cpython-39.pyc │ │ │ │ ├── euc_kr.cpython-39.opt-1.pyc │ │ │ │ ├── euc_kr.cpython-39.opt-2.pyc │ │ │ │ ├── euc_kr.cpython-39.pyc │ │ │ │ ├── gb18030.cpython-39.opt-1.pyc │ │ │ │ ├── gb18030.cpython-39.opt-2.pyc │ │ │ │ ├── gb18030.cpython-39.pyc │ │ │ │ ├── gb2312.cpython-39.opt-1.pyc │ │ │ │ ├── gb2312.cpython-39.opt-2.pyc │ │ │ │ ├── gb2312.cpython-39.pyc │ │ │ │ ├── gbk.cpython-39.opt-1.pyc │ │ │ │ ├── gbk.cpython-39.opt-2.pyc │ │ │ │ ├── gbk.cpython-39.pyc │ │ │ │ ├── hex_codec.cpython-39.opt-1.pyc │ │ │ │ ├── hex_codec.cpython-39.opt-2.pyc │ │ │ │ ├── hex_codec.cpython-39.pyc │ │ │ │ ├── hp_roman8.cpython-39.opt-1.pyc │ │ │ │ ├── hp_roman8.cpython-39.opt-2.pyc │ │ │ │ ├── hp_roman8.cpython-39.pyc │ │ │ │ ├── hz.cpython-39.opt-1.pyc │ │ │ │ ├── hz.cpython-39.opt-2.pyc │ │ │ │ ├── hz.cpython-39.pyc │ │ │ │ ├── idna.cpython-39.opt-1.pyc │ │ │ │ ├── idna.cpython-39.opt-2.pyc │ │ │ │ ├── idna.cpython-39.pyc │ │ │ │ ├── iso2022_jp.cpython-39.opt-1.pyc │ │ │ │ ├── iso2022_jp.cpython-39.opt-2.pyc │ │ │ │ ├── iso2022_jp.cpython-39.pyc │ │ │ │ ├── iso2022_jp_1.cpython-39.opt-1.pyc │ │ │ │ ├── iso2022_jp_1.cpython-39.opt-2.pyc │ │ │ │ ├── iso2022_jp_1.cpython-39.pyc │ │ │ │ ├── iso2022_jp_2.cpython-39.opt-1.pyc │ │ │ │ ├── iso2022_jp_2.cpython-39.opt-2.pyc │ │ │ │ ├── iso2022_jp_2.cpython-39.pyc │ │ │ │ ├── iso2022_jp_2004.cpython-39.opt-1.pyc │ │ │ │ ├── iso2022_jp_2004.cpython-39.opt-2.pyc │ │ │ │ ├── iso2022_jp_2004.cpython-39.pyc │ │ │ │ ├── iso2022_jp_3.cpython-39.opt-1.pyc │ │ │ │ ├── iso2022_jp_3.cpython-39.opt-2.pyc │ │ │ │ ├── iso2022_jp_3.cpython-39.pyc │ │ │ │ ├── iso2022_jp_ext.cpython-39.opt-1.pyc │ │ │ │ ├── iso2022_jp_ext.cpython-39.opt-2.pyc │ │ │ │ ├── iso2022_jp_ext.cpython-39.pyc │ │ │ │ ├── iso2022_kr.cpython-39.opt-1.pyc │ │ │ │ ├── iso2022_kr.cpython-39.opt-2.pyc │ │ │ │ ├── iso2022_kr.cpython-39.pyc │ │ │ │ ├── iso8859_1.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_1.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_1.cpython-39.pyc │ │ │ │ ├── iso8859_10.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_10.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_10.cpython-39.pyc │ │ │ │ ├── iso8859_11.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_11.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_11.cpython-39.pyc │ │ │ │ ├── iso8859_13.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_13.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_13.cpython-39.pyc │ │ │ │ ├── iso8859_14.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_14.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_14.cpython-39.pyc │ │ │ │ ├── iso8859_15.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_15.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_15.cpython-39.pyc │ │ │ │ ├── iso8859_16.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_16.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_16.cpython-39.pyc │ │ │ │ ├── iso8859_2.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_2.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_2.cpython-39.pyc │ │ │ │ ├── iso8859_3.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_3.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_3.cpython-39.pyc │ │ │ │ ├── iso8859_4.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_4.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_4.cpython-39.pyc │ │ │ │ ├── iso8859_5.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_5.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_5.cpython-39.pyc │ │ │ │ ├── iso8859_6.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_6.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_6.cpython-39.pyc │ │ │ │ ├── iso8859_7.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_7.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_7.cpython-39.pyc │ │ │ │ ├── iso8859_8.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_8.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_8.cpython-39.pyc │ │ │ │ ├── iso8859_9.cpython-39.opt-1.pyc │ │ │ │ ├── iso8859_9.cpython-39.opt-2.pyc │ │ │ │ ├── iso8859_9.cpython-39.pyc │ │ │ │ ├── johab.cpython-39.opt-1.pyc │ │ │ │ ├── johab.cpython-39.opt-2.pyc │ │ │ │ ├── johab.cpython-39.pyc │ │ │ │ ├── koi8_r.cpython-39.opt-1.pyc │ │ │ │ ├── koi8_r.cpython-39.opt-2.pyc │ │ │ │ ├── koi8_r.cpython-39.pyc │ │ │ │ ├── koi8_t.cpython-39.opt-1.pyc │ │ │ │ ├── koi8_t.cpython-39.opt-2.pyc │ │ │ │ ├── koi8_t.cpython-39.pyc │ │ │ │ ├── koi8_u.cpython-39.opt-1.pyc │ │ │ │ ├── koi8_u.cpython-39.opt-2.pyc │ │ │ │ ├── koi8_u.cpython-39.pyc │ │ │ │ ├── kz1048.cpython-39.opt-1.pyc │ │ │ │ ├── kz1048.cpython-39.opt-2.pyc │ │ │ │ ├── kz1048.cpython-39.pyc │ │ │ │ ├── latin_1.cpython-39.opt-1.pyc │ │ │ │ ├── latin_1.cpython-39.opt-2.pyc │ │ │ │ ├── latin_1.cpython-39.pyc │ │ │ │ ├── mac_arabic.cpython-39.opt-1.pyc │ │ │ │ ├── mac_arabic.cpython-39.opt-2.pyc │ │ │ │ ├── mac_arabic.cpython-39.pyc │ │ │ │ ├── mac_croatian.cpython-39.opt-1.pyc │ │ │ │ ├── mac_croatian.cpython-39.opt-2.pyc │ │ │ │ ├── mac_croatian.cpython-39.pyc │ │ │ │ ├── mac_cyrillic.cpython-39.opt-1.pyc │ │ │ │ ├── mac_cyrillic.cpython-39.opt-2.pyc │ │ │ │ ├── mac_cyrillic.cpython-39.pyc │ │ │ │ ├── mac_farsi.cpython-39.opt-1.pyc │ │ │ │ ├── mac_farsi.cpython-39.opt-2.pyc │ │ │ │ ├── mac_farsi.cpython-39.pyc │ │ │ │ ├── mac_greek.cpython-39.opt-1.pyc │ │ │ │ ├── mac_greek.cpython-39.opt-2.pyc │ │ │ │ ├── mac_greek.cpython-39.pyc │ │ │ │ ├── mac_iceland.cpython-39.opt-1.pyc │ │ │ │ ├── mac_iceland.cpython-39.opt-2.pyc │ │ │ │ ├── mac_iceland.cpython-39.pyc │ │ │ │ ├── mac_latin2.cpython-39.opt-1.pyc │ │ │ │ ├── mac_latin2.cpython-39.opt-2.pyc │ │ │ │ ├── mac_latin2.cpython-39.pyc │ │ │ │ ├── mac_roman.cpython-39.opt-1.pyc │ │ │ │ ├── mac_roman.cpython-39.opt-2.pyc │ │ │ │ ├── mac_roman.cpython-39.pyc │ │ │ │ ├── mac_romanian.cpython-39.opt-1.pyc │ │ │ │ ├── mac_romanian.cpython-39.opt-2.pyc │ │ │ │ ├── mac_romanian.cpython-39.pyc │ │ │ │ ├── mac_turkish.cpython-39.opt-1.pyc │ │ │ │ ├── mac_turkish.cpython-39.opt-2.pyc │ │ │ │ ├── mac_turkish.cpython-39.pyc │ │ │ │ ├── mbcs.cpython-39.opt-1.pyc │ │ │ │ ├── mbcs.cpython-39.opt-2.pyc │ │ │ │ ├── mbcs.cpython-39.pyc │ │ │ │ ├── oem.cpython-39.opt-1.pyc │ │ │ │ ├── oem.cpython-39.opt-2.pyc │ │ │ │ ├── oem.cpython-39.pyc │ │ │ │ ├── palmos.cpython-39.opt-1.pyc │ │ │ │ ├── palmos.cpython-39.opt-2.pyc │ │ │ │ ├── palmos.cpython-39.pyc │ │ │ │ ├── ptcp154.cpython-39.opt-1.pyc │ │ │ │ ├── ptcp154.cpython-39.opt-2.pyc │ │ │ │ ├── ptcp154.cpython-39.pyc │ │ │ │ ├── punycode.cpython-39.opt-1.pyc │ │ │ │ ├── punycode.cpython-39.opt-2.pyc │ │ │ │ ├── punycode.cpython-39.pyc │ │ │ │ ├── quopri_codec.cpython-39.opt-1.pyc │ │ │ │ ├── quopri_codec.cpython-39.opt-2.pyc │ │ │ │ ├── quopri_codec.cpython-39.pyc │ │ │ │ ├── raw_unicode_escape.cpython-39.opt-1.pyc │ │ │ │ ├── raw_unicode_escape.cpython-39.opt-2.pyc │ │ │ │ ├── raw_unicode_escape.cpython-39.pyc │ │ │ │ ├── rot_13.cpython-39.opt-1.pyc │ │ │ │ ├── rot_13.cpython-39.opt-2.pyc │ │ │ │ ├── rot_13.cpython-39.pyc │ │ │ │ ├── shift_jis.cpython-39.opt-1.pyc │ │ │ │ ├── shift_jis.cpython-39.opt-2.pyc │ │ │ │ ├── shift_jis.cpython-39.pyc │ │ │ │ ├── shift_jis_2004.cpython-39.opt-1.pyc │ │ │ │ ├── shift_jis_2004.cpython-39.opt-2.pyc │ │ │ │ ├── shift_jis_2004.cpython-39.pyc │ │ │ │ ├── shift_jisx0213.cpython-39.opt-1.pyc │ │ │ │ ├── shift_jisx0213.cpython-39.opt-2.pyc │ │ │ │ ├── shift_jisx0213.cpython-39.pyc │ │ │ │ ├── tis_620.cpython-39.opt-1.pyc │ │ │ │ ├── tis_620.cpython-39.opt-2.pyc │ │ │ │ ├── tis_620.cpython-39.pyc │ │ │ │ ├── undefined.cpython-39.opt-1.pyc │ │ │ │ ├── undefined.cpython-39.opt-2.pyc │ │ │ │ ├── undefined.cpython-39.pyc │ │ │ │ ├── unicode_escape.cpython-39.opt-1.pyc │ │ │ │ ├── unicode_escape.cpython-39.opt-2.pyc │ │ │ │ ├── unicode_escape.cpython-39.pyc │ │ │ │ ├── utf_16.cpython-39.opt-1.pyc │ │ │ │ ├── utf_16.cpython-39.opt-2.pyc │ │ │ │ ├── utf_16.cpython-39.pyc │ │ │ │ ├── utf_16_be.cpython-39.opt-1.pyc │ │ │ │ ├── utf_16_be.cpython-39.opt-2.pyc │ │ │ │ ├── utf_16_be.cpython-39.pyc │ │ │ │ ├── utf_16_le.cpython-39.opt-1.pyc │ │ │ │ ├── utf_16_le.cpython-39.opt-2.pyc │ │ │ │ ├── utf_16_le.cpython-39.pyc │ │ │ │ ├── utf_32.cpython-39.opt-1.pyc │ │ │ │ ├── utf_32.cpython-39.opt-2.pyc │ │ │ │ ├── utf_32.cpython-39.pyc │ │ │ │ ├── utf_32_be.cpython-39.opt-1.pyc │ │ │ │ ├── utf_32_be.cpython-39.opt-2.pyc │ │ │ │ ├── utf_32_be.cpython-39.pyc │ │ │ │ ├── utf_32_le.cpython-39.opt-1.pyc │ │ │ │ ├── utf_32_le.cpython-39.opt-2.pyc │ │ │ │ ├── utf_32_le.cpython-39.pyc │ │ │ │ ├── utf_7.cpython-39.opt-1.pyc │ │ │ │ ├── utf_7.cpython-39.opt-2.pyc │ │ │ │ ├── utf_7.cpython-39.pyc │ │ │ │ ├── utf_8.cpython-39.opt-1.pyc │ │ │ │ ├── utf_8.cpython-39.opt-2.pyc │ │ │ │ ├── utf_8.cpython-39.pyc │ │ │ │ ├── utf_8_sig.cpython-39.opt-1.pyc │ │ │ │ ├── utf_8_sig.cpython-39.opt-2.pyc │ │ │ │ ├── utf_8_sig.cpython-39.pyc │ │ │ │ ├── uu_codec.cpython-39.opt-1.pyc │ │ │ │ ├── uu_codec.cpython-39.opt-2.pyc │ │ │ │ ├── uu_codec.cpython-39.pyc │ │ │ │ ├── zlib_codec.cpython-39.opt-1.pyc │ │ │ │ ├── zlib_codec.cpython-39.opt-2.pyc │ │ │ │ └── zlib_codec.cpython-39.pyc │ │ │ ├── aliases.py │ │ │ ├── ascii.py │ │ │ ├── base64_codec.py │ │ │ ├── big5.py │ │ │ ├── big5hkscs.py │ │ │ ├── bz2_codec.py │ │ │ ├── charmap.py │ │ │ ├── cp037.py │ │ │ ├── cp1006.py │ │ │ ├── cp1026.py │ │ │ ├── cp1125.py │ │ │ ├── cp1140.py │ │ │ ├── cp1250.py │ │ │ ├── cp1251.py │ │ │ ├── cp1252.py │ │ │ ├── cp1253.py │ │ │ ├── cp1254.py │ │ │ ├── cp1255.py │ │ │ ├── cp1256.py │ │ │ ├── cp1257.py │ │ │ ├── cp1258.py │ │ │ ├── cp273.py │ │ │ ├── cp424.py │ │ │ ├── cp437.py │ │ │ ├── cp500.py │ │ │ ├── cp720.py │ │ │ ├── cp737.py │ │ │ ├── cp775.py │ │ │ ├── cp850.py │ │ │ ├── cp852.py │ │ │ ├── cp855.py │ │ │ ├── cp856.py │ │ │ ├── cp857.py │ │ │ ├── cp858.py │ │ │ ├── cp860.py │ │ │ ├── cp861.py │ │ │ ├── cp862.py │ │ │ ├── cp863.py │ │ │ ├── cp864.py │ │ │ ├── cp865.py │ │ │ ├── cp866.py │ │ │ ├── cp869.py │ │ │ ├── cp874.py │ │ │ ├── cp875.py │ │ │ ├── cp932.py │ │ │ ├── cp949.py │ │ │ ├── cp950.py │ │ │ ├── euc_jis_2004.py │ │ │ ├── euc_jisx0213.py │ │ │ ├── euc_jp.py │ │ │ ├── euc_kr.py │ │ │ ├── gb18030.py │ │ │ ├── gb2312.py │ │ │ ├── gbk.py │ │ │ ├── hex_codec.py │ │ │ ├── hp_roman8.py │ │ │ ├── hz.py │ │ │ ├── idna.py │ │ │ ├── iso2022_jp.py │ │ │ ├── iso2022_jp_1.py │ │ │ ├── iso2022_jp_2.py │ │ │ ├── iso2022_jp_2004.py │ │ │ ├── iso2022_jp_3.py │ │ │ ├── iso2022_jp_ext.py │ │ │ ├── iso2022_kr.py │ │ │ ├── iso8859_1.py │ │ │ ├── iso8859_10.py │ │ │ ├── iso8859_11.py │ │ │ ├── iso8859_13.py │ │ │ ├── iso8859_14.py │ │ │ ├── iso8859_15.py │ │ │ ├── iso8859_16.py │ │ │ ├── iso8859_2.py │ │ │ ├── iso8859_3.py │ │ │ ├── iso8859_4.py │ │ │ ├── iso8859_5.py │ │ │ ├── iso8859_6.py │ │ │ ├── iso8859_7.py │ │ │ ├── iso8859_8.py │ │ │ ├── iso8859_9.py │ │ │ ├── johab.py │ │ │ ├── koi8_r.py │ │ │ ├── koi8_t.py │ │ │ ├── koi8_u.py │ │ │ ├── kz1048.py │ │ │ ├── latin_1.py │ │ │ ├── mac_arabic.py │ │ │ ├── mac_croatian.py │ │ │ ├── mac_cyrillic.py │ │ │ ├── mac_farsi.py │ │ │ ├── mac_greek.py │ │ │ ├── mac_iceland.py │ │ │ ├── mac_latin2.py │ │ │ ├── mac_roman.py │ │ │ ├── mac_romanian.py │ │ │ ├── mac_turkish.py │ │ │ ├── mbcs.py │ │ │ ├── oem.py │ │ │ ├── palmos.py │ │ │ ├── ptcp154.py │ │ │ ├── punycode.py │ │ │ ├── quopri_codec.py │ │ │ ├── raw_unicode_escape.py │ │ │ ├── rot_13.py │ │ │ ├── shift_jis.py │ │ │ ├── shift_jis_2004.py │ │ │ ├── shift_jisx0213.py │ │ │ ├── tis_620.py │ │ │ ├── undefined.py │ │ │ ├── unicode_escape.py │ │ │ ├── utf_16.py │ │ │ ├── utf_16_be.py │ │ │ ├── utf_16_le.py │ │ │ ├── utf_32.py │ │ │ ├── utf_32_be.py │ │ │ ├── utf_32_le.py │ │ │ ├── utf_7.py │ │ │ ├── utf_8.py │ │ │ ├── utf_8_sig.py │ │ │ ├── uu_codec.py │ │ │ └── zlib_codec.py │ │ ├── ensurepip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ ├── _uninstall.cpython-39.opt-1.pyc │ │ │ │ ├── _uninstall.cpython-39.opt-2.pyc │ │ │ │ └── _uninstall.cpython-39.pyc │ │ │ ├── _bundled │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── pip-20.2.3-py2.py3-none-any.whl │ │ │ │ └── setuptools-49.2.1-py3-none-any.whl │ │ │ └── _uninstall.py │ │ ├── enum.py │ │ ├── filecmp.py │ │ ├── fileinput.py │ │ ├── fnmatch.py │ │ ├── formatter.py │ │ ├── fractions.py │ │ ├── ftplib.py │ │ ├── functools.py │ │ ├── genericpath.py │ │ ├── getopt.py │ │ ├── getpass.py │ │ ├── gettext.py │ │ ├── glob.py │ │ ├── graphlib.py │ │ ├── gzip.py │ │ ├── hashlib.py │ │ ├── heapq.py │ │ ├── hmac.py │ │ ├── html │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── entities.cpython-39.opt-1.pyc │ │ │ │ ├── entities.cpython-39.opt-2.pyc │ │ │ │ ├── entities.cpython-39.pyc │ │ │ │ ├── parser.cpython-39.opt-1.pyc │ │ │ │ ├── parser.cpython-39.opt-2.pyc │ │ │ │ └── parser.cpython-39.pyc │ │ │ ├── entities.py │ │ │ └── parser.py │ │ ├── http │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── client.cpython-39.opt-1.pyc │ │ │ │ ├── client.cpython-39.opt-2.pyc │ │ │ │ ├── client.cpython-39.pyc │ │ │ │ ├── cookiejar.cpython-39.opt-1.pyc │ │ │ │ ├── cookiejar.cpython-39.opt-2.pyc │ │ │ │ ├── cookiejar.cpython-39.pyc │ │ │ │ ├── cookies.cpython-39.opt-1.pyc │ │ │ │ ├── cookies.cpython-39.opt-2.pyc │ │ │ │ ├── cookies.cpython-39.pyc │ │ │ │ ├── server.cpython-39.opt-1.pyc │ │ │ │ ├── server.cpython-39.opt-2.pyc │ │ │ │ └── server.cpython-39.pyc │ │ │ ├── client.py │ │ │ ├── cookiejar.py │ │ │ ├── cookies.py │ │ │ └── server.py │ │ ├── idlelib │ │ │ ├── CREDITS.txt │ │ │ ├── ChangeLog │ │ │ ├── HISTORY.txt │ │ │ ├── Icons │ │ │ │ ├── README.txt │ │ │ │ ├── folder.gif │ │ │ │ ├── idle.ico │ │ │ │ ├── idle_16.gif │ │ │ │ ├── idle_16.png │ │ │ │ ├── idle_256.png │ │ │ │ ├── idle_32.gif │ │ │ │ ├── idle_32.png │ │ │ │ ├── idle_48.gif │ │ │ │ ├── idle_48.png │ │ │ │ ├── minusnode.gif │ │ │ │ ├── openfolder.gif │ │ │ │ ├── plusnode.gif │ │ │ │ ├── python.gif │ │ │ │ └── tk.gif │ │ │ ├── NEWS.txt │ │ │ ├── NEWS2x.txt │ │ │ ├── README.txt │ │ │ ├── TODO.txt │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ ├── autocomplete.cpython-39.opt-1.pyc │ │ │ │ ├── autocomplete.cpython-39.opt-2.pyc │ │ │ │ ├── autocomplete.cpython-39.pyc │ │ │ │ ├── autocomplete_w.cpython-39.opt-1.pyc │ │ │ │ ├── autocomplete_w.cpython-39.opt-2.pyc │ │ │ │ ├── autocomplete_w.cpython-39.pyc │ │ │ │ ├── autoexpand.cpython-39.opt-1.pyc │ │ │ │ ├── autoexpand.cpython-39.opt-2.pyc │ │ │ │ ├── autoexpand.cpython-39.pyc │ │ │ │ ├── browser.cpython-39.opt-1.pyc │ │ │ │ ├── browser.cpython-39.opt-2.pyc │ │ │ │ ├── browser.cpython-39.pyc │ │ │ │ ├── calltip.cpython-39.opt-1.pyc │ │ │ │ ├── calltip.cpython-39.opt-2.pyc │ │ │ │ ├── calltip.cpython-39.pyc │ │ │ │ ├── calltip_w.cpython-39.opt-1.pyc │ │ │ │ ├── calltip_w.cpython-39.opt-2.pyc │ │ │ │ ├── calltip_w.cpython-39.pyc │ │ │ │ ├── codecontext.cpython-39.opt-1.pyc │ │ │ │ ├── codecontext.cpython-39.opt-2.pyc │ │ │ │ ├── codecontext.cpython-39.pyc │ │ │ │ ├── colorizer.cpython-39.opt-1.pyc │ │ │ │ ├── colorizer.cpython-39.opt-2.pyc │ │ │ │ ├── colorizer.cpython-39.pyc │ │ │ │ ├── config.cpython-39.opt-1.pyc │ │ │ │ ├── config.cpython-39.opt-2.pyc │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ ├── config_key.cpython-39.opt-1.pyc │ │ │ │ ├── config_key.cpython-39.opt-2.pyc │ │ │ │ ├── config_key.cpython-39.pyc │ │ │ │ ├── configdialog.cpython-39.opt-1.pyc │ │ │ │ ├── configdialog.cpython-39.opt-2.pyc │ │ │ │ ├── configdialog.cpython-39.pyc │ │ │ │ ├── debugger.cpython-39.opt-1.pyc │ │ │ │ ├── debugger.cpython-39.opt-2.pyc │ │ │ │ ├── debugger.cpython-39.pyc │ │ │ │ ├── debugger_r.cpython-39.opt-1.pyc │ │ │ │ ├── debugger_r.cpython-39.opt-2.pyc │ │ │ │ ├── debugger_r.cpython-39.pyc │ │ │ │ ├── debugobj.cpython-39.opt-1.pyc │ │ │ │ ├── debugobj.cpython-39.opt-2.pyc │ │ │ │ ├── debugobj.cpython-39.pyc │ │ │ │ ├── debugobj_r.cpython-39.opt-1.pyc │ │ │ │ ├── debugobj_r.cpython-39.opt-2.pyc │ │ │ │ ├── debugobj_r.cpython-39.pyc │ │ │ │ ├── delegator.cpython-39.opt-1.pyc │ │ │ │ ├── delegator.cpython-39.opt-2.pyc │ │ │ │ ├── delegator.cpython-39.pyc │ │ │ │ ├── dynoption.cpython-39.opt-1.pyc │ │ │ │ ├── dynoption.cpython-39.opt-2.pyc │ │ │ │ ├── dynoption.cpython-39.pyc │ │ │ │ ├── editor.cpython-39.opt-1.pyc │ │ │ │ ├── editor.cpython-39.opt-2.pyc │ │ │ │ ├── editor.cpython-39.pyc │ │ │ │ ├── filelist.cpython-39.opt-1.pyc │ │ │ │ ├── filelist.cpython-39.opt-2.pyc │ │ │ │ ├── filelist.cpython-39.pyc │ │ │ │ ├── format.cpython-39.opt-1.pyc │ │ │ │ ├── format.cpython-39.opt-2.pyc │ │ │ │ ├── format.cpython-39.pyc │ │ │ │ ├── grep.cpython-39.opt-1.pyc │ │ │ │ ├── grep.cpython-39.opt-2.pyc │ │ │ │ ├── grep.cpython-39.pyc │ │ │ │ ├── help.cpython-39.opt-1.pyc │ │ │ │ ├── help.cpython-39.opt-2.pyc │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ ├── help_about.cpython-39.opt-1.pyc │ │ │ │ ├── help_about.cpython-39.opt-2.pyc │ │ │ │ ├── help_about.cpython-39.pyc │ │ │ │ ├── history.cpython-39.opt-1.pyc │ │ │ │ ├── history.cpython-39.opt-2.pyc │ │ │ │ ├── history.cpython-39.pyc │ │ │ │ ├── hyperparser.cpython-39.opt-1.pyc │ │ │ │ ├── hyperparser.cpython-39.opt-2.pyc │ │ │ │ ├── hyperparser.cpython-39.pyc │ │ │ │ ├── idle.cpython-39.opt-1.pyc │ │ │ │ ├── idle.cpython-39.opt-2.pyc │ │ │ │ ├── idle.cpython-39.pyc │ │ │ │ ├── iomenu.cpython-39.opt-1.pyc │ │ │ │ ├── iomenu.cpython-39.opt-2.pyc │ │ │ │ ├── iomenu.cpython-39.pyc │ │ │ │ ├── macosx.cpython-39.opt-1.pyc │ │ │ │ ├── macosx.cpython-39.opt-2.pyc │ │ │ │ ├── macosx.cpython-39.pyc │ │ │ │ ├── mainmenu.cpython-39.opt-1.pyc │ │ │ │ ├── mainmenu.cpython-39.opt-2.pyc │ │ │ │ ├── mainmenu.cpython-39.pyc │ │ │ │ ├── multicall.cpython-39.opt-1.pyc │ │ │ │ ├── multicall.cpython-39.opt-2.pyc │ │ │ │ ├── multicall.cpython-39.pyc │ │ │ │ ├── outwin.cpython-39.opt-1.pyc │ │ │ │ ├── outwin.cpython-39.opt-2.pyc │ │ │ │ ├── outwin.cpython-39.pyc │ │ │ │ ├── parenmatch.cpython-39.opt-1.pyc │ │ │ │ ├── parenmatch.cpython-39.opt-2.pyc │ │ │ │ ├── parenmatch.cpython-39.pyc │ │ │ │ ├── pathbrowser.cpython-39.opt-1.pyc │ │ │ │ ├── pathbrowser.cpython-39.opt-2.pyc │ │ │ │ ├── pathbrowser.cpython-39.pyc │ │ │ │ ├── percolator.cpython-39.opt-1.pyc │ │ │ │ ├── percolator.cpython-39.opt-2.pyc │ │ │ │ ├── percolator.cpython-39.pyc │ │ │ │ ├── pyparse.cpython-39.opt-1.pyc │ │ │ │ ├── pyparse.cpython-39.opt-2.pyc │ │ │ │ ├── pyparse.cpython-39.pyc │ │ │ │ ├── pyshell.cpython-39.opt-1.pyc │ │ │ │ ├── pyshell.cpython-39.opt-2.pyc │ │ │ │ ├── pyshell.cpython-39.pyc │ │ │ │ ├── query.cpython-39.opt-1.pyc │ │ │ │ ├── query.cpython-39.opt-2.pyc │ │ │ │ ├── query.cpython-39.pyc │ │ │ │ ├── redirector.cpython-39.opt-1.pyc │ │ │ │ ├── redirector.cpython-39.opt-2.pyc │ │ │ │ ├── redirector.cpython-39.pyc │ │ │ │ ├── replace.cpython-39.opt-1.pyc │ │ │ │ ├── replace.cpython-39.opt-2.pyc │ │ │ │ ├── replace.cpython-39.pyc │ │ │ │ ├── rpc.cpython-39.opt-1.pyc │ │ │ │ ├── rpc.cpython-39.opt-2.pyc │ │ │ │ ├── rpc.cpython-39.pyc │ │ │ │ ├── run.cpython-39.opt-1.pyc │ │ │ │ ├── run.cpython-39.opt-2.pyc │ │ │ │ ├── run.cpython-39.pyc │ │ │ │ ├── runscript.cpython-39.opt-1.pyc │ │ │ │ ├── runscript.cpython-39.opt-2.pyc │ │ │ │ ├── runscript.cpython-39.pyc │ │ │ │ ├── scrolledlist.cpython-39.opt-1.pyc │ │ │ │ ├── scrolledlist.cpython-39.opt-2.pyc │ │ │ │ ├── scrolledlist.cpython-39.pyc │ │ │ │ ├── search.cpython-39.opt-1.pyc │ │ │ │ ├── search.cpython-39.opt-2.pyc │ │ │ │ ├── search.cpython-39.pyc │ │ │ │ ├── searchbase.cpython-39.opt-1.pyc │ │ │ │ ├── searchbase.cpython-39.opt-2.pyc │ │ │ │ ├── searchbase.cpython-39.pyc │ │ │ │ ├── searchengine.cpython-39.opt-1.pyc │ │ │ │ ├── searchengine.cpython-39.opt-2.pyc │ │ │ │ ├── searchengine.cpython-39.pyc │ │ │ │ ├── sidebar.cpython-39.opt-1.pyc │ │ │ │ ├── sidebar.cpython-39.opt-2.pyc │ │ │ │ ├── sidebar.cpython-39.pyc │ │ │ │ ├── squeezer.cpython-39.opt-1.pyc │ │ │ │ ├── squeezer.cpython-39.opt-2.pyc │ │ │ │ ├── squeezer.cpython-39.pyc │ │ │ │ ├── stackviewer.cpython-39.opt-1.pyc │ │ │ │ ├── stackviewer.cpython-39.opt-2.pyc │ │ │ │ ├── stackviewer.cpython-39.pyc │ │ │ │ ├── statusbar.cpython-39.opt-1.pyc │ │ │ │ ├── statusbar.cpython-39.opt-2.pyc │ │ │ │ ├── statusbar.cpython-39.pyc │ │ │ │ ├── textview.cpython-39.opt-1.pyc │ │ │ │ ├── textview.cpython-39.opt-2.pyc │ │ │ │ ├── textview.cpython-39.pyc │ │ │ │ ├── tooltip.cpython-39.opt-1.pyc │ │ │ │ ├── tooltip.cpython-39.opt-2.pyc │ │ │ │ ├── tooltip.cpython-39.pyc │ │ │ │ ├── tree.cpython-39.opt-1.pyc │ │ │ │ ├── tree.cpython-39.opt-2.pyc │ │ │ │ ├── tree.cpython-39.pyc │ │ │ │ ├── undo.cpython-39.opt-1.pyc │ │ │ │ ├── undo.cpython-39.opt-2.pyc │ │ │ │ ├── undo.cpython-39.pyc │ │ │ │ ├── window.cpython-39.opt-1.pyc │ │ │ │ ├── window.cpython-39.opt-2.pyc │ │ │ │ ├── window.cpython-39.pyc │ │ │ │ ├── zoomheight.cpython-39.opt-1.pyc │ │ │ │ ├── zoomheight.cpython-39.opt-2.pyc │ │ │ │ ├── zoomheight.cpython-39.pyc │ │ │ │ ├── zzdummy.cpython-39.opt-1.pyc │ │ │ │ ├── zzdummy.cpython-39.opt-2.pyc │ │ │ │ └── zzdummy.cpython-39.pyc │ │ │ ├── autocomplete.py │ │ │ ├── autocomplete_w.py │ │ │ ├── autoexpand.py │ │ │ ├── browser.py │ │ │ ├── calltip.py │ │ │ ├── calltip_w.py │ │ │ ├── codecontext.py │ │ │ ├── colorizer.py │ │ │ ├── config-extensions.def │ │ │ ├── config-highlight.def │ │ │ ├── config-keys.def │ │ │ ├── config-main.def │ │ │ ├── config.py │ │ │ ├── config_key.py │ │ │ ├── configdialog.py │ │ │ ├── debugger.py │ │ │ ├── debugger_r.py │ │ │ ├── debugobj.py │ │ │ ├── debugobj_r.py │ │ │ ├── delegator.py │ │ │ ├── dynoption.py │ │ │ ├── editor.py │ │ │ ├── extend.txt │ │ │ ├── filelist.py │ │ │ ├── format.py │ │ │ ├── grep.py │ │ │ ├── help.html │ │ │ ├── help.py │ │ │ ├── help_about.py │ │ │ ├── history.py │ │ │ ├── hyperparser.py │ │ │ ├── idle.bat │ │ │ ├── idle.py │ │ │ ├── idle.pyw │ │ │ ├── idle_test │ │ │ │ ├── README.txt │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── htest.cpython-39.opt-1.pyc │ │ │ │ │ ├── htest.cpython-39.opt-2.pyc │ │ │ │ │ ├── htest.cpython-39.pyc │ │ │ │ │ ├── mock_idle.cpython-39.opt-1.pyc │ │ │ │ │ ├── mock_idle.cpython-39.opt-2.pyc │ │ │ │ │ ├── mock_idle.cpython-39.pyc │ │ │ │ │ ├── mock_tk.cpython-39.opt-1.pyc │ │ │ │ │ ├── mock_tk.cpython-39.opt-2.pyc │ │ │ │ │ ├── mock_tk.cpython-39.pyc │ │ │ │ │ ├── template.cpython-39.opt-1.pyc │ │ │ │ │ ├── template.cpython-39.opt-2.pyc │ │ │ │ │ ├── template.cpython-39.pyc │ │ │ │ │ ├── test_autocomplete.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_autocomplete.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_autocomplete.cpython-39.pyc │ │ │ │ │ ├── test_autocomplete_w.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_autocomplete_w.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_autocomplete_w.cpython-39.pyc │ │ │ │ │ ├── test_autoexpand.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_autoexpand.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_autoexpand.cpython-39.pyc │ │ │ │ │ ├── test_browser.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_browser.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_browser.cpython-39.pyc │ │ │ │ │ ├── test_calltip.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_calltip.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_calltip.cpython-39.pyc │ │ │ │ │ ├── test_calltip_w.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_calltip_w.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_calltip_w.cpython-39.pyc │ │ │ │ │ ├── test_codecontext.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_codecontext.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_codecontext.cpython-39.pyc │ │ │ │ │ ├── test_colorizer.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_colorizer.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_colorizer.cpython-39.pyc │ │ │ │ │ ├── test_config.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_config.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_config.cpython-39.pyc │ │ │ │ │ ├── test_config_key.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_config_key.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_config_key.cpython-39.pyc │ │ │ │ │ ├── test_configdialog.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_configdialog.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_configdialog.cpython-39.pyc │ │ │ │ │ ├── test_debugger.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_debugger.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_debugger.cpython-39.pyc │ │ │ │ │ ├── test_debugger_r.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_debugger_r.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_debugger_r.cpython-39.pyc │ │ │ │ │ ├── test_debugobj.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_debugobj.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_debugobj.cpython-39.pyc │ │ │ │ │ ├── test_debugobj_r.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_debugobj_r.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_debugobj_r.cpython-39.pyc │ │ │ │ │ ├── test_delegator.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_delegator.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_delegator.cpython-39.pyc │ │ │ │ │ ├── test_editmenu.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_editmenu.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_editmenu.cpython-39.pyc │ │ │ │ │ ├── test_editor.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_editor.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_editor.cpython-39.pyc │ │ │ │ │ ├── test_filelist.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_filelist.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_filelist.cpython-39.pyc │ │ │ │ │ ├── test_format.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_format.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_format.cpython-39.pyc │ │ │ │ │ ├── test_grep.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_grep.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_grep.cpython-39.pyc │ │ │ │ │ ├── test_help.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_help.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_help.cpython-39.pyc │ │ │ │ │ ├── test_help_about.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_help_about.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_help_about.cpython-39.pyc │ │ │ │ │ ├── test_history.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_history.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_history.cpython-39.pyc │ │ │ │ │ ├── test_hyperparser.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_hyperparser.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_hyperparser.cpython-39.pyc │ │ │ │ │ ├── test_iomenu.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_iomenu.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_iomenu.cpython-39.pyc │ │ │ │ │ ├── test_macosx.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_macosx.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_macosx.cpython-39.pyc │ │ │ │ │ ├── test_mainmenu.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_mainmenu.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_mainmenu.cpython-39.pyc │ │ │ │ │ ├── test_multicall.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_multicall.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_multicall.cpython-39.pyc │ │ │ │ │ ├── test_outwin.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_outwin.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_outwin.cpython-39.pyc │ │ │ │ │ ├── test_parenmatch.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_parenmatch.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_parenmatch.cpython-39.pyc │ │ │ │ │ ├── test_pathbrowser.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pathbrowser.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pathbrowser.cpython-39.pyc │ │ │ │ │ ├── test_percolator.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_percolator.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_percolator.cpython-39.pyc │ │ │ │ │ ├── test_pyparse.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pyparse.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pyparse.cpython-39.pyc │ │ │ │ │ ├── test_pyshell.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pyshell.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pyshell.cpython-39.pyc │ │ │ │ │ ├── test_query.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_query.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_query.cpython-39.pyc │ │ │ │ │ ├── test_redirector.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_redirector.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_redirector.cpython-39.pyc │ │ │ │ │ ├── test_replace.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_replace.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_replace.cpython-39.pyc │ │ │ │ │ ├── test_rpc.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_rpc.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_rpc.cpython-39.pyc │ │ │ │ │ ├── test_run.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_run.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_run.cpython-39.pyc │ │ │ │ │ ├── test_runscript.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_runscript.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_runscript.cpython-39.pyc │ │ │ │ │ ├── test_scrolledlist.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_scrolledlist.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_scrolledlist.cpython-39.pyc │ │ │ │ │ ├── test_search.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_search.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_search.cpython-39.pyc │ │ │ │ │ ├── test_searchbase.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_searchbase.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_searchbase.cpython-39.pyc │ │ │ │ │ ├── test_searchengine.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_searchengine.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_searchengine.cpython-39.pyc │ │ │ │ │ ├── test_sidebar.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_sidebar.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_sidebar.cpython-39.pyc │ │ │ │ │ ├── test_squeezer.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_squeezer.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_squeezer.cpython-39.pyc │ │ │ │ │ ├── test_stackviewer.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_stackviewer.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_stackviewer.cpython-39.pyc │ │ │ │ │ ├── test_statusbar.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_statusbar.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_statusbar.cpython-39.pyc │ │ │ │ │ ├── test_text.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_text.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_text.cpython-39.pyc │ │ │ │ │ ├── test_textview.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_textview.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_textview.cpython-39.pyc │ │ │ │ │ ├── test_tooltip.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_tooltip.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_tooltip.cpython-39.pyc │ │ │ │ │ ├── test_tree.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_tree.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_tree.cpython-39.pyc │ │ │ │ │ ├── test_undo.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_undo.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_undo.cpython-39.pyc │ │ │ │ │ ├── test_warning.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_warning.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_warning.cpython-39.pyc │ │ │ │ │ ├── test_window.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_window.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_window.cpython-39.pyc │ │ │ │ │ ├── test_zoomheight.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_zoomheight.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_zoomheight.cpython-39.pyc │ │ │ │ │ ├── test_zzdummy.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_zzdummy.cpython-39.opt-2.pyc │ │ │ │ │ └── test_zzdummy.cpython-39.pyc │ │ │ │ ├── htest.py │ │ │ │ ├── mock_idle.py │ │ │ │ ├── mock_tk.py │ │ │ │ ├── template.py │ │ │ │ ├── test_autocomplete.py │ │ │ │ ├── test_autocomplete_w.py │ │ │ │ ├── test_autoexpand.py │ │ │ │ ├── test_browser.py │ │ │ │ ├── test_calltip.py │ │ │ │ ├── test_calltip_w.py │ │ │ │ ├── test_codecontext.py │ │ │ │ ├── test_colorizer.py │ │ │ │ ├── test_config.py │ │ │ │ ├── test_config_key.py │ │ │ │ ├── test_configdialog.py │ │ │ │ ├── test_debugger.py │ │ │ │ ├── test_debugger_r.py │ │ │ │ ├── test_debugobj.py │ │ │ │ ├── test_debugobj_r.py │ │ │ │ ├── test_delegator.py │ │ │ │ ├── test_editmenu.py │ │ │ │ ├── test_editor.py │ │ │ │ ├── test_filelist.py │ │ │ │ ├── test_format.py │ │ │ │ ├── test_grep.py │ │ │ │ ├── test_help.py │ │ │ │ ├── test_help_about.py │ │ │ │ ├── test_history.py │ │ │ │ ├── test_hyperparser.py │ │ │ │ ├── test_iomenu.py │ │ │ │ ├── test_macosx.py │ │ │ │ ├── test_mainmenu.py │ │ │ │ ├── test_multicall.py │ │ │ │ ├── test_outwin.py │ │ │ │ ├── test_parenmatch.py │ │ │ │ ├── test_pathbrowser.py │ │ │ │ ├── test_percolator.py │ │ │ │ ├── test_pyparse.py │ │ │ │ ├── test_pyshell.py │ │ │ │ ├── test_query.py │ │ │ │ ├── test_redirector.py │ │ │ │ ├── test_replace.py │ │ │ │ ├── test_rpc.py │ │ │ │ ├── test_run.py │ │ │ │ ├── test_runscript.py │ │ │ │ ├── test_scrolledlist.py │ │ │ │ ├── test_search.py │ │ │ │ ├── test_searchbase.py │ │ │ │ ├── test_searchengine.py │ │ │ │ ├── test_sidebar.py │ │ │ │ ├── test_squeezer.py │ │ │ │ ├── test_stackviewer.py │ │ │ │ ├── test_statusbar.py │ │ │ │ ├── test_text.py │ │ │ │ ├── test_textview.py │ │ │ │ ├── test_tooltip.py │ │ │ │ ├── test_tree.py │ │ │ │ ├── test_undo.py │ │ │ │ ├── test_warning.py │ │ │ │ ├── test_window.py │ │ │ │ ├── test_zoomheight.py │ │ │ │ └── test_zzdummy.py │ │ │ ├── iomenu.py │ │ │ ├── macosx.py │ │ │ ├── mainmenu.py │ │ │ ├── multicall.py │ │ │ ├── outwin.py │ │ │ ├── parenmatch.py │ │ │ ├── pathbrowser.py │ │ │ ├── percolator.py │ │ │ ├── pyparse.py │ │ │ ├── pyshell.py │ │ │ ├── query.py │ │ │ ├── redirector.py │ │ │ ├── replace.py │ │ │ ├── rpc.py │ │ │ ├── run.py │ │ │ ├── runscript.py │ │ │ ├── scrolledlist.py │ │ │ ├── search.py │ │ │ ├── searchbase.py │ │ │ ├── searchengine.py │ │ │ ├── sidebar.py │ │ │ ├── squeezer.py │ │ │ ├── stackviewer.py │ │ │ ├── statusbar.py │ │ │ ├── textview.py │ │ │ ├── tooltip.py │ │ │ ├── tree.py │ │ │ ├── undo.py │ │ │ ├── window.py │ │ │ ├── zoomheight.py │ │ │ └── zzdummy.py │ │ ├── imaplib.py │ │ ├── imghdr.py │ │ ├── imp.py │ │ ├── importlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _bootstrap.cpython-39.opt-1.pyc │ │ │ │ ├── _bootstrap.cpython-39.opt-2.pyc │ │ │ │ ├── _bootstrap.cpython-39.pyc │ │ │ │ ├── _bootstrap_external.cpython-39.opt-1.pyc │ │ │ │ ├── _bootstrap_external.cpython-39.opt-2.pyc │ │ │ │ ├── _bootstrap_external.cpython-39.pyc │ │ │ │ ├── _common.cpython-39.opt-1.pyc │ │ │ │ ├── _common.cpython-39.opt-2.pyc │ │ │ │ ├── _common.cpython-39.pyc │ │ │ │ ├── abc.cpython-39.opt-1.pyc │ │ │ │ ├── abc.cpython-39.opt-2.pyc │ │ │ │ ├── abc.cpython-39.pyc │ │ │ │ ├── machinery.cpython-39.opt-1.pyc │ │ │ │ ├── machinery.cpython-39.opt-2.pyc │ │ │ │ ├── machinery.cpython-39.pyc │ │ │ │ ├── metadata.cpython-39.opt-1.pyc │ │ │ │ ├── metadata.cpython-39.opt-2.pyc │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ ├── resources.cpython-39.opt-1.pyc │ │ │ │ ├── resources.cpython-39.opt-2.pyc │ │ │ │ ├── resources.cpython-39.pyc │ │ │ │ ├── util.cpython-39.opt-1.pyc │ │ │ │ ├── util.cpython-39.opt-2.pyc │ │ │ │ └── util.cpython-39.pyc │ │ │ ├── _bootstrap.py │ │ │ ├── _bootstrap_external.py │ │ │ ├── _common.py │ │ │ ├── abc.py │ │ │ ├── machinery.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ └── util.py │ │ ├── inspect.py │ │ ├── io.py │ │ ├── ipaddress.py │ │ ├── json │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── decoder.cpython-39.opt-1.pyc │ │ │ │ ├── decoder.cpython-39.opt-2.pyc │ │ │ │ ├── decoder.cpython-39.pyc │ │ │ │ ├── encoder.cpython-39.opt-1.pyc │ │ │ │ ├── encoder.cpython-39.opt-2.pyc │ │ │ │ ├── encoder.cpython-39.pyc │ │ │ │ ├── scanner.cpython-39.opt-1.pyc │ │ │ │ ├── scanner.cpython-39.opt-2.pyc │ │ │ │ ├── scanner.cpython-39.pyc │ │ │ │ ├── tool.cpython-39.opt-1.pyc │ │ │ │ ├── tool.cpython-39.opt-2.pyc │ │ │ │ └── tool.cpython-39.pyc │ │ │ ├── decoder.py │ │ │ ├── encoder.py │ │ │ ├── scanner.py │ │ │ └── tool.py │ │ ├── keyword.py │ │ ├── lib2to3 │ │ │ ├── Grammar.txt │ │ │ ├── Grammar3.9.2.final.0.pickle │ │ │ ├── PatternGrammar.txt │ │ │ ├── PatternGrammar3.9.2.final.0.pickle │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ ├── btm_matcher.cpython-39.opt-1.pyc │ │ │ │ ├── btm_matcher.cpython-39.opt-2.pyc │ │ │ │ ├── btm_matcher.cpython-39.pyc │ │ │ │ ├── btm_utils.cpython-39.opt-1.pyc │ │ │ │ ├── btm_utils.cpython-39.opt-2.pyc │ │ │ │ ├── btm_utils.cpython-39.pyc │ │ │ │ ├── fixer_base.cpython-39.opt-1.pyc │ │ │ │ ├── fixer_base.cpython-39.opt-2.pyc │ │ │ │ ├── fixer_base.cpython-39.pyc │ │ │ │ ├── fixer_util.cpython-39.opt-1.pyc │ │ │ │ ├── fixer_util.cpython-39.opt-2.pyc │ │ │ │ ├── fixer_util.cpython-39.pyc │ │ │ │ ├── main.cpython-39.opt-1.pyc │ │ │ │ ├── main.cpython-39.opt-2.pyc │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ ├── patcomp.cpython-39.opt-1.pyc │ │ │ │ ├── patcomp.cpython-39.opt-2.pyc │ │ │ │ ├── patcomp.cpython-39.pyc │ │ │ │ ├── pygram.cpython-39.opt-1.pyc │ │ │ │ ├── pygram.cpython-39.opt-2.pyc │ │ │ │ ├── pygram.cpython-39.pyc │ │ │ │ ├── pytree.cpython-39.opt-1.pyc │ │ │ │ ├── pytree.cpython-39.opt-2.pyc │ │ │ │ ├── pytree.cpython-39.pyc │ │ │ │ ├── refactor.cpython-39.opt-1.pyc │ │ │ │ ├── refactor.cpython-39.opt-2.pyc │ │ │ │ └── refactor.cpython-39.pyc │ │ │ ├── btm_matcher.py │ │ │ ├── btm_utils.py │ │ │ ├── fixer_base.py │ │ │ ├── fixer_util.py │ │ │ ├── fixes │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── fix_apply.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_apply.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_apply.cpython-39.pyc │ │ │ │ │ ├── fix_asserts.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_asserts.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_asserts.cpython-39.pyc │ │ │ │ │ ├── fix_basestring.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_basestring.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_basestring.cpython-39.pyc │ │ │ │ │ ├── fix_buffer.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_buffer.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_buffer.cpython-39.pyc │ │ │ │ │ ├── fix_dict.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_dict.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_dict.cpython-39.pyc │ │ │ │ │ ├── fix_except.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_except.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_except.cpython-39.pyc │ │ │ │ │ ├── fix_exec.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_exec.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_exec.cpython-39.pyc │ │ │ │ │ ├── fix_execfile.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_execfile.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_execfile.cpython-39.pyc │ │ │ │ │ ├── fix_exitfunc.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_exitfunc.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_exitfunc.cpython-39.pyc │ │ │ │ │ ├── fix_filter.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_filter.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_filter.cpython-39.pyc │ │ │ │ │ ├── fix_funcattrs.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_funcattrs.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_funcattrs.cpython-39.pyc │ │ │ │ │ ├── fix_future.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_future.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_future.cpython-39.pyc │ │ │ │ │ ├── fix_getcwdu.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_getcwdu.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_getcwdu.cpython-39.pyc │ │ │ │ │ ├── fix_has_key.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_has_key.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_has_key.cpython-39.pyc │ │ │ │ │ ├── fix_idioms.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_idioms.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_idioms.cpython-39.pyc │ │ │ │ │ ├── fix_import.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_import.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_import.cpython-39.pyc │ │ │ │ │ ├── fix_imports.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_imports.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_imports.cpython-39.pyc │ │ │ │ │ ├── fix_imports2.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_imports2.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_imports2.cpython-39.pyc │ │ │ │ │ ├── fix_input.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_input.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_input.cpython-39.pyc │ │ │ │ │ ├── fix_intern.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_intern.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_intern.cpython-39.pyc │ │ │ │ │ ├── fix_isinstance.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_isinstance.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_isinstance.cpython-39.pyc │ │ │ │ │ ├── fix_itertools.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_itertools.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_itertools.cpython-39.pyc │ │ │ │ │ ├── fix_itertools_imports.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_itertools_imports.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_itertools_imports.cpython-39.pyc │ │ │ │ │ ├── fix_long.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_long.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_long.cpython-39.pyc │ │ │ │ │ ├── fix_map.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_map.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_map.cpython-39.pyc │ │ │ │ │ ├── fix_metaclass.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_metaclass.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_metaclass.cpython-39.pyc │ │ │ │ │ ├── fix_methodattrs.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_methodattrs.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_methodattrs.cpython-39.pyc │ │ │ │ │ ├── fix_ne.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_ne.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_ne.cpython-39.pyc │ │ │ │ │ ├── fix_next.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_next.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_next.cpython-39.pyc │ │ │ │ │ ├── fix_nonzero.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_nonzero.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_nonzero.cpython-39.pyc │ │ │ │ │ ├── fix_numliterals.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_numliterals.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_numliterals.cpython-39.pyc │ │ │ │ │ ├── fix_operator.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_operator.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_operator.cpython-39.pyc │ │ │ │ │ ├── fix_paren.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_paren.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_paren.cpython-39.pyc │ │ │ │ │ ├── fix_print.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_print.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_print.cpython-39.pyc │ │ │ │ │ ├── fix_raise.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_raise.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_raise.cpython-39.pyc │ │ │ │ │ ├── fix_raw_input.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_raw_input.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_raw_input.cpython-39.pyc │ │ │ │ │ ├── fix_reduce.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_reduce.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_reduce.cpython-39.pyc │ │ │ │ │ ├── fix_reload.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_reload.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_reload.cpython-39.pyc │ │ │ │ │ ├── fix_renames.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_renames.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_renames.cpython-39.pyc │ │ │ │ │ ├── fix_repr.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_repr.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_repr.cpython-39.pyc │ │ │ │ │ ├── fix_set_literal.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_set_literal.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_set_literal.cpython-39.pyc │ │ │ │ │ ├── fix_standarderror.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_standarderror.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_standarderror.cpython-39.pyc │ │ │ │ │ ├── fix_sys_exc.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_sys_exc.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_sys_exc.cpython-39.pyc │ │ │ │ │ ├── fix_throw.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_throw.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_throw.cpython-39.pyc │ │ │ │ │ ├── fix_tuple_params.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_tuple_params.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_tuple_params.cpython-39.pyc │ │ │ │ │ ├── fix_types.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_types.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_types.cpython-39.pyc │ │ │ │ │ ├── fix_unicode.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_unicode.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_unicode.cpython-39.pyc │ │ │ │ │ ├── fix_urllib.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_urllib.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_urllib.cpython-39.pyc │ │ │ │ │ ├── fix_ws_comma.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_ws_comma.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_ws_comma.cpython-39.pyc │ │ │ │ │ ├── fix_xrange.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_xrange.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_xrange.cpython-39.pyc │ │ │ │ │ ├── fix_xreadlines.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_xreadlines.cpython-39.opt-2.pyc │ │ │ │ │ ├── fix_xreadlines.cpython-39.pyc │ │ │ │ │ ├── fix_zip.cpython-39.opt-1.pyc │ │ │ │ │ ├── fix_zip.cpython-39.opt-2.pyc │ │ │ │ │ └── fix_zip.cpython-39.pyc │ │ │ │ ├── fix_apply.py │ │ │ │ ├── fix_asserts.py │ │ │ │ ├── fix_basestring.py │ │ │ │ ├── fix_buffer.py │ │ │ │ ├── fix_dict.py │ │ │ │ ├── fix_except.py │ │ │ │ ├── fix_exec.py │ │ │ │ ├── fix_execfile.py │ │ │ │ ├── fix_exitfunc.py │ │ │ │ ├── fix_filter.py │ │ │ │ ├── fix_funcattrs.py │ │ │ │ ├── fix_future.py │ │ │ │ ├── fix_getcwdu.py │ │ │ │ ├── fix_has_key.py │ │ │ │ ├── fix_idioms.py │ │ │ │ ├── fix_import.py │ │ │ │ ├── fix_imports.py │ │ │ │ ├── fix_imports2.py │ │ │ │ ├── fix_input.py │ │ │ │ ├── fix_intern.py │ │ │ │ ├── fix_isinstance.py │ │ │ │ ├── fix_itertools.py │ │ │ │ ├── fix_itertools_imports.py │ │ │ │ ├── fix_long.py │ │ │ │ ├── fix_map.py │ │ │ │ ├── fix_metaclass.py │ │ │ │ ├── fix_methodattrs.py │ │ │ │ ├── fix_ne.py │ │ │ │ ├── fix_next.py │ │ │ │ ├── fix_nonzero.py │ │ │ │ ├── fix_numliterals.py │ │ │ │ ├── fix_operator.py │ │ │ │ ├── fix_paren.py │ │ │ │ ├── fix_print.py │ │ │ │ ├── fix_raise.py │ │ │ │ ├── fix_raw_input.py │ │ │ │ ├── fix_reduce.py │ │ │ │ ├── fix_reload.py │ │ │ │ ├── fix_renames.py │ │ │ │ ├── fix_repr.py │ │ │ │ ├── fix_set_literal.py │ │ │ │ ├── fix_standarderror.py │ │ │ │ ├── fix_sys_exc.py │ │ │ │ ├── fix_throw.py │ │ │ │ ├── fix_tuple_params.py │ │ │ │ ├── fix_types.py │ │ │ │ ├── fix_unicode.py │ │ │ │ ├── fix_urllib.py │ │ │ │ ├── fix_ws_comma.py │ │ │ │ ├── fix_xrange.py │ │ │ │ ├── fix_xreadlines.py │ │ │ │ └── fix_zip.py │ │ │ ├── main.py │ │ │ ├── patcomp.py │ │ │ ├── pgen2 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── conv.cpython-39.opt-1.pyc │ │ │ │ │ ├── conv.cpython-39.opt-2.pyc │ │ │ │ │ ├── conv.cpython-39.pyc │ │ │ │ │ ├── driver.cpython-39.opt-1.pyc │ │ │ │ │ ├── driver.cpython-39.opt-2.pyc │ │ │ │ │ ├── driver.cpython-39.pyc │ │ │ │ │ ├── grammar.cpython-39.opt-1.pyc │ │ │ │ │ ├── grammar.cpython-39.opt-2.pyc │ │ │ │ │ ├── grammar.cpython-39.pyc │ │ │ │ │ ├── literals.cpython-39.opt-1.pyc │ │ │ │ │ ├── literals.cpython-39.opt-2.pyc │ │ │ │ │ ├── literals.cpython-39.pyc │ │ │ │ │ ├── parse.cpython-39.opt-1.pyc │ │ │ │ │ ├── parse.cpython-39.opt-2.pyc │ │ │ │ │ ├── parse.cpython-39.pyc │ │ │ │ │ ├── pgen.cpython-39.opt-1.pyc │ │ │ │ │ ├── pgen.cpython-39.opt-2.pyc │ │ │ │ │ ├── pgen.cpython-39.pyc │ │ │ │ │ ├── token.cpython-39.opt-1.pyc │ │ │ │ │ ├── token.cpython-39.opt-2.pyc │ │ │ │ │ ├── token.cpython-39.pyc │ │ │ │ │ ├── tokenize.cpython-39.opt-1.pyc │ │ │ │ │ ├── tokenize.cpython-39.opt-2.pyc │ │ │ │ │ └── tokenize.cpython-39.pyc │ │ │ │ ├── conv.py │ │ │ │ ├── driver.py │ │ │ │ ├── grammar.py │ │ │ │ ├── literals.py │ │ │ │ ├── parse.py │ │ │ │ ├── pgen.py │ │ │ │ ├── token.py │ │ │ │ └── tokenize.py │ │ │ ├── pygram.py │ │ │ ├── pytree.py │ │ │ ├── refactor.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── data │ │ │ │ ├── README │ │ │ │ ├── bom.py │ │ │ │ ├── crlf.py │ │ │ │ ├── different_encoding.py │ │ │ │ ├── false_encoding.py │ │ │ │ ├── fixers │ │ │ │ │ ├── bad_order.py │ │ │ │ │ ├── myfixes │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── fix_explicit.py │ │ │ │ │ │ ├── fix_first.py │ │ │ │ │ │ ├── fix_last.py │ │ │ │ │ │ ├── fix_parrot.py │ │ │ │ │ │ └── fix_preorder.py │ │ │ │ │ ├── no_fixer_cls.py │ │ │ │ │ └── parrot_example.py │ │ │ │ ├── infinite_recursion.py │ │ │ │ ├── py2_test_grammar.py │ │ │ │ └── py3_test_grammar.py │ │ │ │ ├── pytree_idempotency.py │ │ │ │ ├── support.py │ │ │ │ ├── test_all_fixers.py │ │ │ │ ├── test_fixers.py │ │ │ │ ├── test_main.py │ │ │ │ ├── test_parser.py │ │ │ │ ├── test_pytree.py │ │ │ │ ├── test_refactor.py │ │ │ │ └── test_util.py │ │ ├── linecache.py │ │ ├── locale.py │ │ ├── logging │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── config.cpython-39.opt-1.pyc │ │ │ │ ├── config.cpython-39.opt-2.pyc │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ ├── handlers.cpython-39.opt-1.pyc │ │ │ │ ├── handlers.cpython-39.opt-2.pyc │ │ │ │ └── handlers.cpython-39.pyc │ │ │ ├── config.py │ │ │ └── handlers.py │ │ ├── lzma.py │ │ ├── mailbox.py │ │ ├── mailcap.py │ │ ├── mimetypes.py │ │ ├── modulefinder.py │ │ ├── msilib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── schema.cpython-39.opt-1.pyc │ │ │ │ ├── schema.cpython-39.opt-2.pyc │ │ │ │ ├── schema.cpython-39.pyc │ │ │ │ ├── sequence.cpython-39.opt-1.pyc │ │ │ │ ├── sequence.cpython-39.opt-2.pyc │ │ │ │ ├── sequence.cpython-39.pyc │ │ │ │ ├── text.cpython-39.opt-1.pyc │ │ │ │ ├── text.cpython-39.opt-2.pyc │ │ │ │ └── text.cpython-39.pyc │ │ │ ├── schema.py │ │ │ ├── sequence.py │ │ │ └── text.py │ │ ├── multiprocessing │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── connection.cpython-39.opt-1.pyc │ │ │ │ ├── connection.cpython-39.opt-2.pyc │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ ├── context.cpython-39.opt-1.pyc │ │ │ │ ├── context.cpython-39.opt-2.pyc │ │ │ │ ├── context.cpython-39.pyc │ │ │ │ ├── forkserver.cpython-39.opt-1.pyc │ │ │ │ ├── forkserver.cpython-39.opt-2.pyc │ │ │ │ ├── forkserver.cpython-39.pyc │ │ │ │ ├── heap.cpython-39.opt-1.pyc │ │ │ │ ├── heap.cpython-39.opt-2.pyc │ │ │ │ ├── heap.cpython-39.pyc │ │ │ │ ├── managers.cpython-39.opt-1.pyc │ │ │ │ ├── managers.cpython-39.opt-2.pyc │ │ │ │ ├── managers.cpython-39.pyc │ │ │ │ ├── pool.cpython-39.opt-1.pyc │ │ │ │ ├── pool.cpython-39.opt-2.pyc │ │ │ │ ├── pool.cpython-39.pyc │ │ │ │ ├── popen_fork.cpython-39.opt-1.pyc │ │ │ │ ├── popen_fork.cpython-39.opt-2.pyc │ │ │ │ ├── popen_fork.cpython-39.pyc │ │ │ │ ├── popen_forkserver.cpython-39.opt-1.pyc │ │ │ │ ├── popen_forkserver.cpython-39.opt-2.pyc │ │ │ │ ├── popen_forkserver.cpython-39.pyc │ │ │ │ ├── popen_spawn_posix.cpython-39.opt-1.pyc │ │ │ │ ├── popen_spawn_posix.cpython-39.opt-2.pyc │ │ │ │ ├── popen_spawn_posix.cpython-39.pyc │ │ │ │ ├── popen_spawn_win32.cpython-39.opt-1.pyc │ │ │ │ ├── popen_spawn_win32.cpython-39.opt-2.pyc │ │ │ │ ├── popen_spawn_win32.cpython-39.pyc │ │ │ │ ├── process.cpython-39.opt-1.pyc │ │ │ │ ├── process.cpython-39.opt-2.pyc │ │ │ │ ├── process.cpython-39.pyc │ │ │ │ ├── queues.cpython-39.opt-1.pyc │ │ │ │ ├── queues.cpython-39.opt-2.pyc │ │ │ │ ├── queues.cpython-39.pyc │ │ │ │ ├── reduction.cpython-39.opt-1.pyc │ │ │ │ ├── reduction.cpython-39.opt-2.pyc │ │ │ │ ├── reduction.cpython-39.pyc │ │ │ │ ├── resource_sharer.cpython-39.opt-1.pyc │ │ │ │ ├── resource_sharer.cpython-39.opt-2.pyc │ │ │ │ ├── resource_sharer.cpython-39.pyc │ │ │ │ ├── resource_tracker.cpython-39.opt-1.pyc │ │ │ │ ├── resource_tracker.cpython-39.opt-2.pyc │ │ │ │ ├── resource_tracker.cpython-39.pyc │ │ │ │ ├── shared_memory.cpython-39.opt-1.pyc │ │ │ │ ├── shared_memory.cpython-39.opt-2.pyc │ │ │ │ ├── shared_memory.cpython-39.pyc │ │ │ │ ├── sharedctypes.cpython-39.opt-1.pyc │ │ │ │ ├── sharedctypes.cpython-39.opt-2.pyc │ │ │ │ ├── sharedctypes.cpython-39.pyc │ │ │ │ ├── spawn.cpython-39.opt-1.pyc │ │ │ │ ├── spawn.cpython-39.opt-2.pyc │ │ │ │ ├── spawn.cpython-39.pyc │ │ │ │ ├── synchronize.cpython-39.opt-1.pyc │ │ │ │ ├── synchronize.cpython-39.opt-2.pyc │ │ │ │ ├── synchronize.cpython-39.pyc │ │ │ │ ├── util.cpython-39.opt-1.pyc │ │ │ │ ├── util.cpython-39.opt-2.pyc │ │ │ │ └── util.cpython-39.pyc │ │ │ ├── connection.py │ │ │ ├── context.py │ │ │ ├── dummy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── connection.cpython-39.opt-1.pyc │ │ │ │ │ ├── connection.cpython-39.opt-2.pyc │ │ │ │ │ └── connection.cpython-39.pyc │ │ │ │ └── connection.py │ │ │ ├── forkserver.py │ │ │ ├── heap.py │ │ │ ├── managers.py │ │ │ ├── pool.py │ │ │ ├── popen_fork.py │ │ │ ├── popen_forkserver.py │ │ │ ├── popen_spawn_posix.py │ │ │ ├── popen_spawn_win32.py │ │ │ ├── process.py │ │ │ ├── queues.py │ │ │ ├── reduction.py │ │ │ ├── resource_sharer.py │ │ │ ├── resource_tracker.py │ │ │ ├── shared_memory.py │ │ │ ├── sharedctypes.py │ │ │ ├── spawn.py │ │ │ ├── synchronize.py │ │ │ └── util.py │ │ ├── netrc.py │ │ ├── nntplib.py │ │ ├── ntpath.py │ │ ├── nturl2path.py │ │ ├── numbers.py │ │ ├── opcode.py │ │ ├── operator.py │ │ ├── optparse.py │ │ ├── os.py │ │ ├── pathlib.py │ │ ├── pdb.py │ │ ├── pickle.py │ │ ├── pickletools.py │ │ ├── pipes.py │ │ ├── pkgutil.py │ │ ├── platform.py │ │ ├── plistlib.py │ │ ├── poplib.py │ │ ├── posixpath.py │ │ ├── pprint.py │ │ ├── profile.py │ │ ├── pstats.py │ │ ├── pty.py │ │ ├── py_compile.py │ │ ├── pyclbr.py │ │ ├── pydoc.py │ │ ├── pydoc_data │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── topics.cpython-39.opt-1.pyc │ │ │ │ ├── topics.cpython-39.opt-2.pyc │ │ │ │ └── topics.cpython-39.pyc │ │ │ ├── _pydoc.css │ │ │ └── topics.py │ │ ├── queue.py │ │ ├── quopri.py │ │ ├── random.py │ │ ├── re.py │ │ ├── reprlib.py │ │ ├── rlcompleter.py │ │ ├── runpy.py │ │ ├── sched.py │ │ ├── secrets.py │ │ ├── selectors.py │ │ ├── shelve.py │ │ ├── shlex.py │ │ ├── shutil.py │ │ ├── signal.py │ │ ├── site-packages │ │ │ ├── README.txt │ │ │ ├── __pycache__ │ │ │ │ ├── easy_install.cpython-39.pyc │ │ │ │ └── jdcal.cpython-39.pyc │ │ │ ├── easy_install.py │ │ │ ├── et_xmlfile-1.0.1-py3.9.egg-info │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── installed-files.txt │ │ │ │ └── top_level.txt │ │ │ ├── et_xmlfile │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── xmlfile.cpython-39.pyc │ │ │ │ ├── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── common_imports.cpython-39.pyc │ │ │ │ │ │ ├── helper.cpython-39.pyc │ │ │ │ │ │ └── test_incremental_xmlfile.cpython-39.pyc │ │ │ │ │ ├── common_imports.py │ │ │ │ │ ├── helper.py │ │ │ │ │ └── test_incremental_xmlfile.py │ │ │ │ └── xmlfile.py │ │ │ ├── jdcal-1.4.1.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ ├── jdcal.py │ │ │ ├── openpyxl-3.0.6.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENCE.rst │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── openpyxl │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── _constants.cpython-39.pyc │ │ │ │ ├── _constants.py │ │ │ │ ├── cell │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _writer.cpython-39.pyc │ │ │ │ │ │ ├── cell.cpython-39.pyc │ │ │ │ │ │ ├── read_only.cpython-39.pyc │ │ │ │ │ │ └── text.cpython-39.pyc │ │ │ │ │ ├── _writer.py │ │ │ │ │ ├── cell.py │ │ │ │ │ ├── read_only.py │ │ │ │ │ └── text.py │ │ │ │ ├── chart │ │ │ │ │ ├── _3d.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── _3d.cpython-39.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _chart.cpython-39.pyc │ │ │ │ │ │ ├── area_chart.cpython-39.pyc │ │ │ │ │ │ ├── axis.cpython-39.pyc │ │ │ │ │ │ ├── bar_chart.cpython-39.pyc │ │ │ │ │ │ ├── bubble_chart.cpython-39.pyc │ │ │ │ │ │ ├── chartspace.cpython-39.pyc │ │ │ │ │ │ ├── data_source.cpython-39.pyc │ │ │ │ │ │ ├── descriptors.cpython-39.pyc │ │ │ │ │ │ ├── error_bar.cpython-39.pyc │ │ │ │ │ │ ├── label.cpython-39.pyc │ │ │ │ │ │ ├── layout.cpython-39.pyc │ │ │ │ │ │ ├── legend.cpython-39.pyc │ │ │ │ │ │ ├── line_chart.cpython-39.pyc │ │ │ │ │ │ ├── marker.cpython-39.pyc │ │ │ │ │ │ ├── picture.cpython-39.pyc │ │ │ │ │ │ ├── pie_chart.cpython-39.pyc │ │ │ │ │ │ ├── pivot.cpython-39.pyc │ │ │ │ │ │ ├── plotarea.cpython-39.pyc │ │ │ │ │ │ ├── print_settings.cpython-39.pyc │ │ │ │ │ │ ├── radar_chart.cpython-39.pyc │ │ │ │ │ │ ├── reader.cpython-39.pyc │ │ │ │ │ │ ├── reference.cpython-39.pyc │ │ │ │ │ │ ├── scatter_chart.cpython-39.pyc │ │ │ │ │ │ ├── series.cpython-39.pyc │ │ │ │ │ │ ├── series_factory.cpython-39.pyc │ │ │ │ │ │ ├── shapes.cpython-39.pyc │ │ │ │ │ │ ├── stock_chart.cpython-39.pyc │ │ │ │ │ │ ├── surface_chart.cpython-39.pyc │ │ │ │ │ │ ├── text.cpython-39.pyc │ │ │ │ │ │ ├── title.cpython-39.pyc │ │ │ │ │ │ ├── trendline.cpython-39.pyc │ │ │ │ │ │ └── updown_bars.cpython-39.pyc │ │ │ │ │ ├── _chart.py │ │ │ │ │ ├── area_chart.py │ │ │ │ │ ├── axis.py │ │ │ │ │ ├── bar_chart.py │ │ │ │ │ ├── bubble_chart.py │ │ │ │ │ ├── chartspace.py │ │ │ │ │ ├── data_source.py │ │ │ │ │ ├── descriptors.py │ │ │ │ │ ├── error_bar.py │ │ │ │ │ ├── label.py │ │ │ │ │ ├── layout.py │ │ │ │ │ ├── legend.py │ │ │ │ │ ├── line_chart.py │ │ │ │ │ ├── marker.py │ │ │ │ │ ├── picture.py │ │ │ │ │ ├── pie_chart.py │ │ │ │ │ ├── pivot.py │ │ │ │ │ ├── plotarea.py │ │ │ │ │ ├── print_settings.py │ │ │ │ │ ├── radar_chart.py │ │ │ │ │ ├── reader.py │ │ │ │ │ ├── reference.py │ │ │ │ │ ├── scatter_chart.py │ │ │ │ │ ├── series.py │ │ │ │ │ ├── series_factory.py │ │ │ │ │ ├── shapes.py │ │ │ │ │ ├── stock_chart.py │ │ │ │ │ ├── surface_chart.py │ │ │ │ │ ├── text.py │ │ │ │ │ ├── title.py │ │ │ │ │ ├── trendline.py │ │ │ │ │ └── updown_bars.py │ │ │ │ ├── chartsheet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── chartsheet.cpython-39.pyc │ │ │ │ │ │ ├── custom.cpython-39.pyc │ │ │ │ │ │ ├── properties.cpython-39.pyc │ │ │ │ │ │ ├── protection.cpython-39.pyc │ │ │ │ │ │ ├── publish.cpython-39.pyc │ │ │ │ │ │ ├── relation.cpython-39.pyc │ │ │ │ │ │ └── views.cpython-39.pyc │ │ │ │ │ ├── chartsheet.py │ │ │ │ │ ├── custom.py │ │ │ │ │ ├── properties.py │ │ │ │ │ ├── protection.py │ │ │ │ │ ├── publish.py │ │ │ │ │ ├── relation.py │ │ │ │ │ └── views.py │ │ │ │ ├── comments │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── author.cpython-39.pyc │ │ │ │ │ │ ├── comment_sheet.cpython-39.pyc │ │ │ │ │ │ ├── comments.cpython-39.pyc │ │ │ │ │ │ └── shape_writer.cpython-39.pyc │ │ │ │ │ ├── author.py │ │ │ │ │ ├── comment_sheet.py │ │ │ │ │ ├── comments.py │ │ │ │ │ └── shape_writer.py │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── abc.cpython-39.pyc │ │ │ │ │ │ ├── numbers.cpython-39.pyc │ │ │ │ │ │ ├── product.cpython-39.pyc │ │ │ │ │ │ ├── singleton.cpython-39.pyc │ │ │ │ │ │ └── strings.cpython-39.pyc │ │ │ │ │ ├── abc.py │ │ │ │ │ ├── numbers.py │ │ │ │ │ ├── product.py │ │ │ │ │ ├── singleton.py │ │ │ │ │ └── strings.py │ │ │ │ ├── descriptors │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── excel.cpython-39.pyc │ │ │ │ │ │ ├── namespace.cpython-39.pyc │ │ │ │ │ │ ├── nested.cpython-39.pyc │ │ │ │ │ │ ├── sequence.cpython-39.pyc │ │ │ │ │ │ ├── serialisable.cpython-39.pyc │ │ │ │ │ │ └── slots.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── excel.py │ │ │ │ │ ├── namespace.py │ │ │ │ │ ├── nested.py │ │ │ │ │ ├── sequence.py │ │ │ │ │ ├── serialisable.py │ │ │ │ │ └── slots.py │ │ │ │ ├── drawing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── colors.cpython-39.pyc │ │ │ │ │ │ ├── connector.cpython-39.pyc │ │ │ │ │ │ ├── drawing.cpython-39.pyc │ │ │ │ │ │ ├── effect.cpython-39.pyc │ │ │ │ │ │ ├── fill.cpython-39.pyc │ │ │ │ │ │ ├── geometry.cpython-39.pyc │ │ │ │ │ │ ├── graphic.cpython-39.pyc │ │ │ │ │ │ ├── image.cpython-39.pyc │ │ │ │ │ │ ├── line.cpython-39.pyc │ │ │ │ │ │ ├── picture.cpython-39.pyc │ │ │ │ │ │ ├── properties.cpython-39.pyc │ │ │ │ │ │ ├── relation.cpython-39.pyc │ │ │ │ │ │ ├── spreadsheet_drawing.cpython-39.pyc │ │ │ │ │ │ ├── text.cpython-39.pyc │ │ │ │ │ │ └── xdr.cpython-39.pyc │ │ │ │ │ ├── colors.py │ │ │ │ │ ├── connector.py │ │ │ │ │ ├── drawing.py │ │ │ │ │ ├── effect.py │ │ │ │ │ ├── fill.py │ │ │ │ │ ├── geometry.py │ │ │ │ │ ├── graphic.py │ │ │ │ │ ├── image.py │ │ │ │ │ ├── line.py │ │ │ │ │ ├── picture.py │ │ │ │ │ ├── properties.py │ │ │ │ │ ├── relation.py │ │ │ │ │ ├── spreadsheet_drawing.py │ │ │ │ │ ├── text.py │ │ │ │ │ └── xdr.py │ │ │ │ ├── formatting │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── formatting.cpython-39.pyc │ │ │ │ │ │ └── rule.cpython-39.pyc │ │ │ │ │ ├── formatting.py │ │ │ │ │ └── rule.py │ │ │ │ ├── formula │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── tokenizer.cpython-39.pyc │ │ │ │ │ │ └── translate.cpython-39.pyc │ │ │ │ │ ├── tokenizer.py │ │ │ │ │ └── translate.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ │ │ ├── extended.cpython-39.pyc │ │ │ │ │ │ ├── interface.cpython-39.pyc │ │ │ │ │ │ ├── manifest.cpython-39.pyc │ │ │ │ │ │ ├── relationship.cpython-39.pyc │ │ │ │ │ │ └── workbook.cpython-39.pyc │ │ │ │ │ ├── core.py │ │ │ │ │ ├── extended.py │ │ │ │ │ ├── interface.py │ │ │ │ │ ├── manifest.py │ │ │ │ │ ├── relationship.py │ │ │ │ │ └── workbook.py │ │ │ │ ├── pivot │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ │ ├── record.cpython-39.pyc │ │ │ │ │ │ └── table.cpython-39.pyc │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── record.py │ │ │ │ │ └── table.py │ │ │ │ ├── reader │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── drawings.cpython-39.pyc │ │ │ │ │ │ ├── excel.cpython-39.pyc │ │ │ │ │ │ ├── strings.cpython-39.pyc │ │ │ │ │ │ └── workbook.cpython-39.pyc │ │ │ │ │ ├── drawings.py │ │ │ │ │ ├── excel.py │ │ │ │ │ ├── strings.py │ │ │ │ │ └── workbook.py │ │ │ │ ├── styles │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── alignment.cpython-39.pyc │ │ │ │ │ │ ├── borders.cpython-39.pyc │ │ │ │ │ │ ├── builtins.cpython-39.pyc │ │ │ │ │ │ ├── cell_style.cpython-39.pyc │ │ │ │ │ │ ├── colors.cpython-39.pyc │ │ │ │ │ │ ├── differential.cpython-39.pyc │ │ │ │ │ │ ├── fills.cpython-39.pyc │ │ │ │ │ │ ├── fonts.cpython-39.pyc │ │ │ │ │ │ ├── named_styles.cpython-39.pyc │ │ │ │ │ │ ├── numbers.cpython-39.pyc │ │ │ │ │ │ ├── protection.cpython-39.pyc │ │ │ │ │ │ ├── proxy.cpython-39.pyc │ │ │ │ │ │ ├── styleable.cpython-39.pyc │ │ │ │ │ │ ├── stylesheet.cpython-39.pyc │ │ │ │ │ │ └── table.cpython-39.pyc │ │ │ │ │ ├── alignment.py │ │ │ │ │ ├── borders.py │ │ │ │ │ ├── builtins.py │ │ │ │ │ ├── cell_style.py │ │ │ │ │ ├── colors.py │ │ │ │ │ ├── differential.py │ │ │ │ │ ├── fills.py │ │ │ │ │ ├── fonts.py │ │ │ │ │ ├── named_styles.py │ │ │ │ │ ├── numbers.py │ │ │ │ │ ├── protection.py │ │ │ │ │ ├── proxy.py │ │ │ │ │ ├── styleable.py │ │ │ │ │ ├── stylesheet.py │ │ │ │ │ └── table.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _accel.cpython-39.pyc │ │ │ │ │ │ ├── bound_dictionary.cpython-39.pyc │ │ │ │ │ │ ├── cell.cpython-39.pyc │ │ │ │ │ │ ├── dataframe.cpython-39.pyc │ │ │ │ │ │ ├── datetime.cpython-39.pyc │ │ │ │ │ │ ├── escape.cpython-39.pyc │ │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ │ ├── formulas.cpython-39.pyc │ │ │ │ │ │ ├── indexed_list.cpython-39.pyc │ │ │ │ │ │ ├── inference.cpython-39.pyc │ │ │ │ │ │ ├── protection.cpython-39.pyc │ │ │ │ │ │ └── units.cpython-39.pyc │ │ │ │ │ ├── _accel.py │ │ │ │ │ ├── bound_dictionary.py │ │ │ │ │ ├── cell.py │ │ │ │ │ ├── dataframe.py │ │ │ │ │ ├── datetime.py │ │ │ │ │ ├── escape.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── formulas.py │ │ │ │ │ ├── indexed_list.py │ │ │ │ │ ├── inference.py │ │ │ │ │ ├── protection.py │ │ │ │ │ └── units.py │ │ │ │ ├── workbook │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _writer.cpython-39.pyc │ │ │ │ │ │ ├── child.cpython-39.pyc │ │ │ │ │ │ ├── defined_name.cpython-39.pyc │ │ │ │ │ │ ├── external_reference.cpython-39.pyc │ │ │ │ │ │ ├── function_group.cpython-39.pyc │ │ │ │ │ │ ├── properties.cpython-39.pyc │ │ │ │ │ │ ├── protection.cpython-39.pyc │ │ │ │ │ │ ├── smart_tags.cpython-39.pyc │ │ │ │ │ │ ├── views.cpython-39.pyc │ │ │ │ │ │ ├── web.cpython-39.pyc │ │ │ │ │ │ └── workbook.cpython-39.pyc │ │ │ │ │ ├── _writer.py │ │ │ │ │ ├── child.py │ │ │ │ │ ├── defined_name.py │ │ │ │ │ ├── external_link │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── external.cpython-39.pyc │ │ │ │ │ │ └── external.py │ │ │ │ │ ├── external_reference.py │ │ │ │ │ ├── function_group.py │ │ │ │ │ ├── properties.py │ │ │ │ │ ├── protection.py │ │ │ │ │ ├── smart_tags.py │ │ │ │ │ ├── views.py │ │ │ │ │ ├── web.py │ │ │ │ │ └── workbook.py │ │ │ │ ├── worksheet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _read_only.cpython-39.pyc │ │ │ │ │ │ ├── _reader.cpython-39.pyc │ │ │ │ │ │ ├── _write_only.cpython-39.pyc │ │ │ │ │ │ ├── _writer.cpython-39.pyc │ │ │ │ │ │ ├── cell_range.cpython-39.pyc │ │ │ │ │ │ ├── cell_watch.cpython-39.pyc │ │ │ │ │ │ ├── controls.cpython-39.pyc │ │ │ │ │ │ ├── copier.cpython-39.pyc │ │ │ │ │ │ ├── custom.cpython-39.pyc │ │ │ │ │ │ ├── datavalidation.cpython-39.pyc │ │ │ │ │ │ ├── dimensions.cpython-39.pyc │ │ │ │ │ │ ├── drawing.cpython-39.pyc │ │ │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ │ │ ├── filters.cpython-39.pyc │ │ │ │ │ │ ├── header_footer.cpython-39.pyc │ │ │ │ │ │ ├── hyperlink.cpython-39.pyc │ │ │ │ │ │ ├── merge.cpython-39.pyc │ │ │ │ │ │ ├── ole.cpython-39.pyc │ │ │ │ │ │ ├── page.cpython-39.pyc │ │ │ │ │ │ ├── pagebreak.cpython-39.pyc │ │ │ │ │ │ ├── picture.cpython-39.pyc │ │ │ │ │ │ ├── properties.cpython-39.pyc │ │ │ │ │ │ ├── protection.cpython-39.pyc │ │ │ │ │ │ ├── related.cpython-39.pyc │ │ │ │ │ │ ├── scenario.cpython-39.pyc │ │ │ │ │ │ ├── smart_tag.cpython-39.pyc │ │ │ │ │ │ ├── table.cpython-39.pyc │ │ │ │ │ │ ├── views.cpython-39.pyc │ │ │ │ │ │ └── worksheet.cpython-39.pyc │ │ │ │ │ ├── _read_only.py │ │ │ │ │ ├── _reader.py │ │ │ │ │ ├── _write_only.py │ │ │ │ │ ├── _writer.py │ │ │ │ │ ├── cell_range.py │ │ │ │ │ ├── cell_watch.py │ │ │ │ │ ├── controls.py │ │ │ │ │ ├── copier.py │ │ │ │ │ ├── custom.py │ │ │ │ │ ├── datavalidation.py │ │ │ │ │ ├── dimensions.py │ │ │ │ │ ├── drawing.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── filters.py │ │ │ │ │ ├── header_footer.py │ │ │ │ │ ├── hyperlink.py │ │ │ │ │ ├── merge.py │ │ │ │ │ ├── ole.py │ │ │ │ │ ├── page.py │ │ │ │ │ ├── pagebreak.py │ │ │ │ │ ├── picture.py │ │ │ │ │ ├── properties.py │ │ │ │ │ ├── protection.py │ │ │ │ │ ├── related.py │ │ │ │ │ ├── scenario.py │ │ │ │ │ ├── smart_tag.py │ │ │ │ │ ├── table.py │ │ │ │ │ ├── views.py │ │ │ │ │ └── worksheet.py │ │ │ │ ├── writer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── excel.cpython-39.pyc │ │ │ │ │ │ └── theme.cpython-39.pyc │ │ │ │ │ ├── excel.py │ │ │ │ │ └── theme.py │ │ │ │ └── xml │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ │ └── functions.cpython-39.pyc │ │ │ │ │ ├── constants.py │ │ │ │ │ └── functions.py │ │ │ ├── pip-21.0.1.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ └── top_level.txt │ │ │ ├── pip │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── __main__.cpython-39.pyc │ │ │ │ ├── _internal │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── build_env.cpython-39.pyc │ │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ │ ├── locations.cpython-39.pyc │ │ │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ │ │ ├── pyproject.cpython-39.pyc │ │ │ │ │ │ ├── self_outdated_check.cpython-39.pyc │ │ │ │ │ │ └── wheel_builder.cpython-39.pyc │ │ │ │ │ ├── build_env.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── autocompletion.cpython-39.pyc │ │ │ │ │ │ │ ├── base_command.cpython-39.pyc │ │ │ │ │ │ │ ├── cmdoptions.cpython-39.pyc │ │ │ │ │ │ │ ├── command_context.cpython-39.pyc │ │ │ │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ │ │ │ ├── main_parser.cpython-39.pyc │ │ │ │ │ │ │ ├── parser.cpython-39.pyc │ │ │ │ │ │ │ ├── progress_bars.cpython-39.pyc │ │ │ │ │ │ │ ├── req_command.cpython-39.pyc │ │ │ │ │ │ │ ├── spinners.cpython-39.pyc │ │ │ │ │ │ │ └── status_codes.cpython-39.pyc │ │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ │ ├── base_command.py │ │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ │ ├── command_context.py │ │ │ │ │ │ ├── main.py │ │ │ │ │ │ ├── main_parser.py │ │ │ │ │ │ ├── parser.py │ │ │ │ │ │ ├── progress_bars.py │ │ │ │ │ │ ├── req_command.py │ │ │ │ │ │ ├── spinners.py │ │ │ │ │ │ └── status_codes.py │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ │ │ ├── completion.cpython-39.pyc │ │ │ │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ │ │ ├── hash.cpython-39.pyc │ │ │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ │ │ ├── list.cpython-39.pyc │ │ │ │ │ │ │ ├── search.cpython-39.pyc │ │ │ │ │ │ │ ├── show.cpython-39.pyc │ │ │ │ │ │ │ ├── uninstall.cpython-39.pyc │ │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ ├── completion.py │ │ │ │ │ │ ├── configuration.py │ │ │ │ │ │ ├── debug.py │ │ │ │ │ │ ├── download.py │ │ │ │ │ │ ├── freeze.py │ │ │ │ │ │ ├── hash.py │ │ │ │ │ │ ├── help.py │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ ├── list.py │ │ │ │ │ │ ├── search.py │ │ │ │ │ │ ├── show.py │ │ │ │ │ │ ├── uninstall.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── distributions │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── installed.cpython-39.pyc │ │ │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── installed.py │ │ │ │ │ │ ├── sdist.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── index │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── collector.cpython-39.pyc │ │ │ │ │ │ │ └── package_finder.cpython-39.pyc │ │ │ │ │ │ ├── collector.py │ │ │ │ │ │ └── package_finder.py │ │ │ │ │ ├── locations.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── models │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── candidate.cpython-39.pyc │ │ │ │ │ │ │ ├── direct_url.cpython-39.pyc │ │ │ │ │ │ │ ├── format_control.cpython-39.pyc │ │ │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ │ │ ├── link.cpython-39.pyc │ │ │ │ │ │ │ ├── scheme.cpython-39.pyc │ │ │ │ │ │ │ ├── search_scope.cpython-39.pyc │ │ │ │ │ │ │ ├── selection_prefs.cpython-39.pyc │ │ │ │ │ │ │ ├── target_python.cpython-39.pyc │ │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ │ ├── candidate.py │ │ │ │ │ │ ├── direct_url.py │ │ │ │ │ │ ├── format_control.py │ │ │ │ │ │ ├── index.py │ │ │ │ │ │ ├── link.py │ │ │ │ │ │ ├── scheme.py │ │ │ │ │ │ ├── search_scope.py │ │ │ │ │ │ ├── selection_prefs.py │ │ │ │ │ │ ├── target_python.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ ├── network │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ │ │ ├── lazy_wheel.cpython-39.pyc │ │ │ │ │ │ │ ├── session.cpython-39.pyc │ │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ │ └── xmlrpc.cpython-39.pyc │ │ │ │ │ │ ├── auth.py │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ ├── download.py │ │ │ │ │ │ ├── lazy_wheel.py │ │ │ │ │ │ ├── session.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── xmlrpc.py │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ │ │ └── prepare.cpython-39.pyc │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ │ │ │ ├── metadata_legacy.cpython-39.pyc │ │ │ │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ │ │ │ └── wheel_legacy.cpython-39.pyc │ │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ │ │ ├── wheel.py │ │ │ │ │ │ │ └── wheel_legacy.py │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ ├── freeze.py │ │ │ │ │ │ ├── install │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ ├── editable_legacy.cpython-39.pyc │ │ │ │ │ │ │ │ ├── legacy.cpython-39.pyc │ │ │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ │ │ ├── legacy.py │ │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ └── prepare.py │ │ │ │ │ ├── pyproject.py │ │ │ │ │ ├── req │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── constructors.cpython-39.pyc │ │ │ │ │ │ │ ├── req_file.cpython-39.pyc │ │ │ │ │ │ │ ├── req_install.cpython-39.pyc │ │ │ │ │ │ │ ├── req_set.cpython-39.pyc │ │ │ │ │ │ │ ├── req_tracker.cpython-39.pyc │ │ │ │ │ │ │ └── req_uninstall.cpython-39.pyc │ │ │ │ │ │ ├── constructors.py │ │ │ │ │ │ ├── req_file.py │ │ │ │ │ │ ├── req_install.py │ │ │ │ │ │ ├── req_set.py │ │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ │ └── req_uninstall.py │ │ │ │ │ ├── resolution │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── base.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── legacy │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ │ │ │ └── resolver.py │ │ │ │ │ │ └── resolvelib │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── candidates.cpython-39.pyc │ │ │ │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ │ │ │ ├── found_candidates.cpython-39.pyc │ │ │ │ │ │ │ ├── provider.cpython-39.pyc │ │ │ │ │ │ │ ├── reporter.cpython-39.pyc │ │ │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── candidates.py │ │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ │ ├── found_candidates.py │ │ │ │ │ │ │ ├── provider.py │ │ │ │ │ │ │ ├── reporter.py │ │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ │ └── resolver.py │ │ │ │ │ ├── self_outdated_check.py │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ │ ├── compatibility_tags.cpython-39.pyc │ │ │ │ │ │ │ ├── datetime.cpython-39.pyc │ │ │ │ │ │ │ ├── deprecation.cpython-39.pyc │ │ │ │ │ │ │ ├── direct_url_helpers.cpython-39.pyc │ │ │ │ │ │ │ ├── distutils_args.cpython-39.pyc │ │ │ │ │ │ │ ├── encoding.cpython-39.pyc │ │ │ │ │ │ │ ├── entrypoints.cpython-39.pyc │ │ │ │ │ │ │ ├── filesystem.cpython-39.pyc │ │ │ │ │ │ │ ├── filetypes.cpython-39.pyc │ │ │ │ │ │ │ ├── glibc.cpython-39.pyc │ │ │ │ │ │ │ ├── hashes.cpython-39.pyc │ │ │ │ │ │ │ ├── inject_securetransport.cpython-39.pyc │ │ │ │ │ │ │ ├── logging.cpython-39.pyc │ │ │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ │ ├── packaging.cpython-39.pyc │ │ │ │ │ │ │ ├── parallel.cpython-39.pyc │ │ │ │ │ │ │ ├── pkg_resources.cpython-39.pyc │ │ │ │ │ │ │ ├── setuptools_build.cpython-39.pyc │ │ │ │ │ │ │ ├── subprocess.cpython-39.pyc │ │ │ │ │ │ │ ├── temp_dir.cpython-39.pyc │ │ │ │ │ │ │ ├── typing.cpython-39.pyc │ │ │ │ │ │ │ ├── unpacking.cpython-39.pyc │ │ │ │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ │ │ │ ├── virtualenv.cpython-39.pyc │ │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ │ ├── appdirs.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── compatibility_tags.py │ │ │ │ │ │ ├── datetime.py │ │ │ │ │ │ ├── deprecation.py │ │ │ │ │ │ ├── direct_url_helpers.py │ │ │ │ │ │ ├── distutils_args.py │ │ │ │ │ │ ├── encoding.py │ │ │ │ │ │ ├── entrypoints.py │ │ │ │ │ │ ├── filesystem.py │ │ │ │ │ │ ├── filetypes.py │ │ │ │ │ │ ├── glibc.py │ │ │ │ │ │ ├── hashes.py │ │ │ │ │ │ ├── inject_securetransport.py │ │ │ │ │ │ ├── logging.py │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── packaging.py │ │ │ │ │ │ ├── parallel.py │ │ │ │ │ │ ├── pkg_resources.py │ │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ │ ├── subprocess.py │ │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ │ ├── typing.py │ │ │ │ │ │ ├── unpacking.py │ │ │ │ │ │ ├── urls.py │ │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ ├── vcs │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── bazaar.cpython-39.pyc │ │ │ │ │ │ │ ├── git.cpython-39.pyc │ │ │ │ │ │ │ ├── mercurial.cpython-39.pyc │ │ │ │ │ │ │ ├── subversion.cpython-39.pyc │ │ │ │ │ │ │ └── versioncontrol.cpython-39.pyc │ │ │ │ │ │ ├── bazaar.py │ │ │ │ │ │ ├── git.py │ │ │ │ │ │ ├── mercurial.py │ │ │ │ │ │ ├── subversion.py │ │ │ │ │ │ └── versioncontrol.py │ │ │ │ │ └── wheel_builder.py │ │ │ │ └── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ │ ├── contextlib2.cpython-39.pyc │ │ │ │ │ ├── distro.cpython-39.pyc │ │ │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ │ │ ├── retrying.cpython-39.pyc │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── cachecontrol │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _cmd.cpython-39.pyc │ │ │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── controller.cpython-39.pyc │ │ │ │ │ │ ├── filewrapper.cpython-39.pyc │ │ │ │ │ │ ├── heuristics.cpython-39.pyc │ │ │ │ │ │ ├── serialize.cpython-39.pyc │ │ │ │ │ │ └── wrapper.cpython-39.pyc │ │ │ │ │ ├── _cmd.py │ │ │ │ │ ├── adapter.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── caches │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── file_cache.cpython-39.pyc │ │ │ │ │ │ │ └── redis_cache.cpython-39.pyc │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── controller.py │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ ├── heuristics.py │ │ │ │ │ ├── serialize.py │ │ │ │ │ └── wrapper.py │ │ │ │ │ ├── certifi │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ │ └── core.cpython-39.pyc │ │ │ │ │ ├── cacert.pem │ │ │ │ │ └── core.py │ │ │ │ │ ├── chardet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── big5freq.cpython-39.pyc │ │ │ │ │ │ ├── big5prober.cpython-39.pyc │ │ │ │ │ │ ├── chardistribution.cpython-39.pyc │ │ │ │ │ │ ├── charsetgroupprober.cpython-39.pyc │ │ │ │ │ │ ├── charsetprober.cpython-39.pyc │ │ │ │ │ │ ├── codingstatemachine.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── cp949prober.cpython-39.pyc │ │ │ │ │ │ ├── enums.cpython-39.pyc │ │ │ │ │ │ ├── escprober.cpython-39.pyc │ │ │ │ │ │ ├── escsm.cpython-39.pyc │ │ │ │ │ │ ├── eucjpprober.cpython-39.pyc │ │ │ │ │ │ ├── euckrfreq.cpython-39.pyc │ │ │ │ │ │ ├── euckrprober.cpython-39.pyc │ │ │ │ │ │ ├── euctwfreq.cpython-39.pyc │ │ │ │ │ │ ├── euctwprober.cpython-39.pyc │ │ │ │ │ │ ├── gb2312freq.cpython-39.pyc │ │ │ │ │ │ ├── gb2312prober.cpython-39.pyc │ │ │ │ │ │ ├── hebrewprober.cpython-39.pyc │ │ │ │ │ │ ├── jisfreq.cpython-39.pyc │ │ │ │ │ │ ├── jpcntx.cpython-39.pyc │ │ │ │ │ │ ├── langbulgarianmodel.cpython-39.pyc │ │ │ │ │ │ ├── langgreekmodel.cpython-39.pyc │ │ │ │ │ │ ├── langhebrewmodel.cpython-39.pyc │ │ │ │ │ │ ├── langhungarianmodel.cpython-39.pyc │ │ │ │ │ │ ├── langrussianmodel.cpython-39.pyc │ │ │ │ │ │ ├── langthaimodel.cpython-39.pyc │ │ │ │ │ │ ├── langturkishmodel.cpython-39.pyc │ │ │ │ │ │ ├── latin1prober.cpython-39.pyc │ │ │ │ │ │ ├── mbcharsetprober.cpython-39.pyc │ │ │ │ │ │ ├── mbcsgroupprober.cpython-39.pyc │ │ │ │ │ │ ├── mbcssm.cpython-39.pyc │ │ │ │ │ │ ├── sbcharsetprober.cpython-39.pyc │ │ │ │ │ │ ├── sbcsgroupprober.cpython-39.pyc │ │ │ │ │ │ ├── sjisprober.cpython-39.pyc │ │ │ │ │ │ ├── universaldetector.cpython-39.pyc │ │ │ │ │ │ ├── utf8prober.cpython-39.pyc │ │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ │ ├── big5freq.py │ │ │ │ │ ├── big5prober.py │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── chardetect.cpython-39.pyc │ │ │ │ │ │ └── chardetect.py │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ ├── enums.py │ │ │ │ │ ├── escprober.py │ │ │ │ │ ├── escsm.py │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ ├── langrussianmodel.py │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ ├── langturkishmodel.py │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ ├── metadata │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── languages.cpython-39.pyc │ │ │ │ │ │ └── languages.py │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ ├── utf8prober.py │ │ │ │ │ └── version.py │ │ │ │ │ ├── colorama │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── ansi.cpython-39.pyc │ │ │ │ │ │ ├── ansitowin32.cpython-39.pyc │ │ │ │ │ │ ├── initialise.cpython-39.pyc │ │ │ │ │ │ ├── win32.cpython-39.pyc │ │ │ │ │ │ └── winterm.cpython-39.pyc │ │ │ │ │ ├── ansi.py │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ ├── initialise.py │ │ │ │ │ ├── win32.py │ │ │ │ │ └── winterm.py │ │ │ │ │ ├── contextlib2.py │ │ │ │ │ ├── distlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ │ ├── locators.cpython-39.pyc │ │ │ │ │ │ ├── manifest.cpython-39.pyc │ │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ │ ├── resources.cpython-39.pyc │ │ │ │ │ │ ├── scripts.cpython-39.pyc │ │ │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── _backport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ │ │ ├── shutil.cpython-39.pyc │ │ │ │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ │ │ │ └── tarfile.cpython-39.pyc │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ ├── shutil.py │ │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ │ └── tarfile.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── database.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── locators.py │ │ │ │ │ ├── manifest.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── scripts.py │ │ │ │ │ ├── t32.exe │ │ │ │ │ ├── t64.exe │ │ │ │ │ ├── util.py │ │ │ │ │ ├── version.py │ │ │ │ │ ├── w32.exe │ │ │ │ │ ├── w64.exe │ │ │ │ │ └── wheel.py │ │ │ │ │ ├── distro.py │ │ │ │ │ ├── html5lib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _ihatexml.cpython-39.pyc │ │ │ │ │ │ ├── _inputstream.cpython-39.pyc │ │ │ │ │ │ ├── _tokenizer.cpython-39.pyc │ │ │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ │ │ ├── html5parser.cpython-39.pyc │ │ │ │ │ │ └── serializer.cpython-39.pyc │ │ │ │ │ ├── _ihatexml.py │ │ │ │ │ ├── _inputstream.py │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ ├── _trie │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── _base.cpython-39.pyc │ │ │ │ │ │ │ └── py.cpython-39.pyc │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ └── py.py │ │ │ │ │ ├── _utils.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── alphabeticalattributes.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── inject_meta_charset.cpython-39.pyc │ │ │ │ │ │ │ ├── lint.cpython-39.pyc │ │ │ │ │ │ │ ├── optionaltags.cpython-39.pyc │ │ │ │ │ │ │ ├── sanitizer.cpython-39.pyc │ │ │ │ │ │ │ └── whitespace.cpython-39.pyc │ │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ │ ├── lint.py │ │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ └── whitespace.py │ │ │ │ │ ├── html5parser.py │ │ │ │ │ ├── serializer.py │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── genshi.cpython-39.pyc │ │ │ │ │ │ │ └── sax.cpython-39.pyc │ │ │ │ │ │ ├── genshi.py │ │ │ │ │ │ └── sax.py │ │ │ │ │ ├── treebuilders │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ │ │ └── etree_lxml.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ └── etree_lxml.py │ │ │ │ │ └── treewalkers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ │ ├── etree_lxml.cpython-39.pyc │ │ │ │ │ │ └── genshi.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ │ └── genshi.py │ │ │ │ │ ├── idna │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── codec.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ │ │ ├── idnadata.cpython-39.pyc │ │ │ │ │ │ ├── intranges.cpython-39.pyc │ │ │ │ │ │ ├── package_data.cpython-39.pyc │ │ │ │ │ │ └── uts46data.cpython-39.pyc │ │ │ │ │ ├── codec.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── idnadata.py │ │ │ │ │ ├── intranges.py │ │ │ │ │ ├── package_data.py │ │ │ │ │ └── uts46data.py │ │ │ │ │ ├── msgpack │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ │ ├── ext.cpython-39.pyc │ │ │ │ │ │ └── fallback.cpython-39.pyc │ │ │ │ │ ├── _version.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── ext.py │ │ │ │ │ └── fallback.py │ │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── _typing.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ │ ├── pep517 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _in_process.cpython-39.pyc │ │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ │ ├── colorlog.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── dirtools.cpython-39.pyc │ │ │ │ │ │ ├── envbuild.cpython-39.pyc │ │ │ │ │ │ ├── meta.cpython-39.pyc │ │ │ │ │ │ └── wrappers.cpython-39.pyc │ │ │ │ │ ├── _in_process.py │ │ │ │ │ ├── build.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── colorlog.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── dirtools.py │ │ │ │ │ ├── envbuild.py │ │ │ │ │ ├── meta.py │ │ │ │ │ └── wrappers.py │ │ │ │ │ ├── pkg_resources │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── py31compat.cpython-39.pyc │ │ │ │ │ └── py31compat.py │ │ │ │ │ ├── progress │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── bar.cpython-39.pyc │ │ │ │ │ │ ├── counter.cpython-39.pyc │ │ │ │ │ │ └── spinner.cpython-39.pyc │ │ │ │ │ ├── bar.py │ │ │ │ │ ├── counter.py │ │ │ │ │ └── spinner.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ ├── requests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── __version__.cpython-39.pyc │ │ │ │ │ │ ├── _internal_utils.cpython-39.pyc │ │ │ │ │ │ ├── adapters.cpython-39.pyc │ │ │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ │ ├── certs.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── cookies.cpython-39.pyc │ │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ │ ├── hooks.cpython-39.pyc │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ ├── packages.cpython-39.pyc │ │ │ │ │ │ ├── sessions.cpython-39.pyc │ │ │ │ │ │ ├── status_codes.cpython-39.pyc │ │ │ │ │ │ ├── structures.cpython-39.pyc │ │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ │ ├── __version__.py │ │ │ │ │ ├── _internal_utils.py │ │ │ │ │ ├── adapters.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── cookies.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── hooks.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packages.py │ │ │ │ │ ├── sessions.py │ │ │ │ │ ├── status_codes.py │ │ │ │ │ ├── structures.py │ │ │ │ │ └── utils.py │ │ │ │ │ ├── resolvelib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── providers.cpython-39.pyc │ │ │ │ │ │ ├── reporters.cpython-39.pyc │ │ │ │ │ │ ├── resolvers.cpython-39.pyc │ │ │ │ │ │ └── structs.cpython-39.pyc │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── collections_abc.cpython-39.pyc │ │ │ │ │ │ └── collections_abc.py │ │ │ │ │ ├── providers.py │ │ │ │ │ ├── reporters.py │ │ │ │ │ ├── resolvers.py │ │ │ │ │ └── structs.py │ │ │ │ │ ├── retrying.py │ │ │ │ │ ├── six.py │ │ │ │ │ ├── toml │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── decoder.cpython-39.pyc │ │ │ │ │ │ ├── encoder.cpython-39.pyc │ │ │ │ │ │ ├── ordered.cpython-39.pyc │ │ │ │ │ │ └── tz.cpython-39.pyc │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── encoder.py │ │ │ │ │ ├── ordered.py │ │ │ │ │ └── tz.py │ │ │ │ │ ├── urllib3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _collections.cpython-39.pyc │ │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ │ ├── connectionpool.cpython-39.pyc │ │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ │ ├── filepost.cpython-39.pyc │ │ │ │ │ │ ├── poolmanager.cpython-39.pyc │ │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ │ └── response.cpython-39.pyc │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── _version.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── _appengine_environ.cpython-39.pyc │ │ │ │ │ │ │ ├── appengine.cpython-39.pyc │ │ │ │ │ │ │ ├── ntlmpool.cpython-39.pyc │ │ │ │ │ │ │ ├── pyopenssl.cpython-39.pyc │ │ │ │ │ │ │ ├── securetransport.cpython-39.pyc │ │ │ │ │ │ │ └── socks.cpython-39.pyc │ │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ ├── bindings.cpython-39.pyc │ │ │ │ │ │ │ │ └── low_level.cpython-39.pyc │ │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ │ └── low_level.py │ │ │ │ │ │ ├── appengine.py │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ ├── securetransport.py │ │ │ │ │ │ └── socks.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── filepost.py │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ │ │ ├── backports │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ │ └── makefile.cpython-39.pyc │ │ │ │ │ │ │ └── makefile.py │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── _implementation.cpython-39.pyc │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── util │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ │ ├── proxy.cpython-39.pyc │ │ │ │ │ │ ├── queue.cpython-39.pyc │ │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ │ │ ├── ssl_.cpython-39.pyc │ │ │ │ │ │ ├── ssltransport.cpython-39.pyc │ │ │ │ │ │ ├── timeout.cpython-39.pyc │ │ │ │ │ │ ├── url.cpython-39.pyc │ │ │ │ │ │ └── wait.cpython-39.pyc │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ ├── proxy.py │ │ │ │ │ │ ├── queue.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ ├── ssltransport.py │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ ├── url.py │ │ │ │ │ │ └── wait.py │ │ │ │ │ ├── vendor.txt │ │ │ │ │ └── webencodings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── labels.cpython-39.pyc │ │ │ │ │ ├── mklabels.cpython-39.pyc │ │ │ │ │ ├── tests.cpython-39.pyc │ │ │ │ │ └── x_user_defined.cpython-39.pyc │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── mklabels.py │ │ │ │ │ ├── tests.py │ │ │ │ │ └── x_user_defined.py │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── packaging │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ ├── tags.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── version.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ └── six.py │ │ │ │ └── extern │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── setuptools-49.2.1.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ ├── WHEEL │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── entry_points.txt │ │ │ │ ├── top_level.txt │ │ │ │ └── zip-safe │ │ │ ├── setuptools │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _deprecation_warning.cpython-39.pyc │ │ │ │ │ ├── _imp.cpython-39.pyc │ │ │ │ │ ├── archive_util.cpython-39.pyc │ │ │ │ │ ├── build_meta.cpython-39.pyc │ │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ │ ├── dep_util.cpython-39.pyc │ │ │ │ │ ├── depends.cpython-39.pyc │ │ │ │ │ ├── dist.cpython-39.pyc │ │ │ │ │ ├── distutils_patch.cpython-39.pyc │ │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ │ ├── extension.cpython-39.pyc │ │ │ │ │ ├── glob.cpython-39.pyc │ │ │ │ │ ├── installer.cpython-39.pyc │ │ │ │ │ ├── launch.cpython-39.pyc │ │ │ │ │ ├── lib2to3_ex.cpython-39.pyc │ │ │ │ │ ├── monkey.cpython-39.pyc │ │ │ │ │ ├── msvc.cpython-39.pyc │ │ │ │ │ ├── namespaces.cpython-39.pyc │ │ │ │ │ ├── package_index.cpython-39.pyc │ │ │ │ │ ├── py27compat.cpython-39.pyc │ │ │ │ │ ├── py31compat.cpython-39.pyc │ │ │ │ │ ├── py33compat.cpython-39.pyc │ │ │ │ │ ├── py34compat.cpython-39.pyc │ │ │ │ │ ├── sandbox.cpython-39.pyc │ │ │ │ │ ├── ssl_support.cpython-39.pyc │ │ │ │ │ ├── unicode_utils.cpython-39.pyc │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ └── windows_support.cpython-39.pyc │ │ │ │ ├── _deprecation_warning.py │ │ │ │ ├── _distutils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _msvccompiler.cpython-39.pyc │ │ │ │ │ │ ├── archive_util.cpython-39.pyc │ │ │ │ │ │ ├── bcppcompiler.cpython-39.pyc │ │ │ │ │ │ ├── ccompiler.cpython-39.pyc │ │ │ │ │ │ ├── cmd.cpython-39.pyc │ │ │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ │ │ ├── cygwinccompiler.cpython-39.pyc │ │ │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ │ │ ├── dep_util.cpython-39.pyc │ │ │ │ │ │ ├── dir_util.cpython-39.pyc │ │ │ │ │ │ ├── dist.cpython-39.pyc │ │ │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ │ │ ├── extension.cpython-39.pyc │ │ │ │ │ │ ├── fancy_getopt.cpython-39.pyc │ │ │ │ │ │ ├── file_util.cpython-39.pyc │ │ │ │ │ │ ├── filelist.cpython-39.pyc │ │ │ │ │ │ ├── log.cpython-39.pyc │ │ │ │ │ │ ├── msvc9compiler.cpython-39.pyc │ │ │ │ │ │ ├── msvccompiler.cpython-39.pyc │ │ │ │ │ │ ├── spawn.cpython-39.pyc │ │ │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ │ │ ├── text_file.cpython-39.pyc │ │ │ │ │ │ ├── unixccompiler.cpython-39.pyc │ │ │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ │ └── versionpredicate.cpython-39.pyc │ │ │ │ │ ├── _msvccompiler.py │ │ │ │ │ ├── archive_util.py │ │ │ │ │ ├── bcppcompiler.py │ │ │ │ │ ├── ccompiler.py │ │ │ │ │ ├── cmd.py │ │ │ │ │ ├── command │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── bdist.cpython-39.pyc │ │ │ │ │ │ │ ├── bdist_dumb.cpython-39.pyc │ │ │ │ │ │ │ ├── bdist_msi.cpython-39.pyc │ │ │ │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ │ │ │ ├── build_scripts.cpython-39.pyc │ │ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ │ │ ├── clean.cpython-39.pyc │ │ │ │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ │ │ ├── install_data.cpython-39.pyc │ │ │ │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ │ │ │ ├── install_headers.cpython-39.pyc │ │ │ │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ │ │ └── upload.cpython-39.pyc │ │ │ │ │ │ ├── bdist.py │ │ │ │ │ │ ├── bdist_dumb.py │ │ │ │ │ │ ├── bdist_msi.py │ │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ │ ├── build.py │ │ │ │ │ │ ├── build_clib.py │ │ │ │ │ │ ├── build_ext.py │ │ │ │ │ │ ├── build_py.py │ │ │ │ │ │ ├── build_scripts.py │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ ├── clean.py │ │ │ │ │ │ ├── config.py │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ ├── install_data.py │ │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ │ ├── install_headers.py │ │ │ │ │ │ ├── install_lib.py │ │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ │ ├── register.py │ │ │ │ │ │ ├── sdist.py │ │ │ │ │ │ └── upload.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── cygwinccompiler.py │ │ │ │ │ ├── debug.py │ │ │ │ │ ├── dep_util.py │ │ │ │ │ ├── dir_util.py │ │ │ │ │ ├── dist.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── extension.py │ │ │ │ │ ├── fancy_getopt.py │ │ │ │ │ ├── file_util.py │ │ │ │ │ ├── filelist.py │ │ │ │ │ ├── log.py │ │ │ │ │ ├── msvc9compiler.py │ │ │ │ │ ├── msvccompiler.py │ │ │ │ │ ├── spawn.py │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ ├── text_file.py │ │ │ │ │ ├── unixccompiler.py │ │ │ │ │ ├── util.py │ │ │ │ │ ├── version.py │ │ │ │ │ └── versionpredicate.py │ │ │ │ ├── _imp.py │ │ │ │ ├── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── ordered_set.cpython-39.pyc │ │ │ │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ │ ├── ordered_set.py │ │ │ │ │ ├── packaging │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ ├── tags.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── version.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ └── six.py │ │ │ │ ├── archive_util.py │ │ │ │ ├── build_meta.py │ │ │ │ ├── cli-32.exe │ │ │ │ ├── cli-64.exe │ │ │ │ ├── cli.exe │ │ │ │ ├── command │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── alias.cpython-39.pyc │ │ │ │ │ │ ├── bdist_egg.cpython-39.pyc │ │ │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ │ │ ├── develop.cpython-39.pyc │ │ │ │ │ │ ├── dist_info.cpython-39.pyc │ │ │ │ │ │ ├── easy_install.cpython-39.pyc │ │ │ │ │ │ ├── egg_info.cpython-39.pyc │ │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ │ │ ├── py36compat.cpython-39.pyc │ │ │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ │ │ ├── rotate.cpython-39.pyc │ │ │ │ │ │ ├── saveopts.cpython-39.pyc │ │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ │ ├── setopt.cpython-39.pyc │ │ │ │ │ │ ├── test.cpython-39.pyc │ │ │ │ │ │ ├── upload.cpython-39.pyc │ │ │ │ │ │ └── upload_docs.cpython-39.pyc │ │ │ │ │ ├── alias.py │ │ │ │ │ ├── bdist_egg.py │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ ├── build_clib.py │ │ │ │ │ ├── build_ext.py │ │ │ │ │ ├── build_py.py │ │ │ │ │ ├── develop.py │ │ │ │ │ ├── dist_info.py │ │ │ │ │ ├── easy_install.py │ │ │ │ │ ├── egg_info.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ ├── install_lib.py │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ ├── launcher manifest.xml │ │ │ │ │ ├── py36compat.py │ │ │ │ │ ├── register.py │ │ │ │ │ ├── rotate.py │ │ │ │ │ ├── saveopts.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ ├── setopt.py │ │ │ │ │ ├── test.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_docs.py │ │ │ │ ├── config.py │ │ │ │ ├── dep_util.py │ │ │ │ ├── depends.py │ │ │ │ ├── dist.py │ │ │ │ ├── distutils_patch.py │ │ │ │ ├── errors.py │ │ │ │ ├── extension.py │ │ │ │ ├── extern │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── glob.py │ │ │ │ ├── gui-32.exe │ │ │ │ ├── gui-64.exe │ │ │ │ ├── gui.exe │ │ │ │ ├── installer.py │ │ │ │ ├── launch.py │ │ │ │ ├── lib2to3_ex.py │ │ │ │ ├── monkey.py │ │ │ │ ├── msvc.py │ │ │ │ ├── namespaces.py │ │ │ │ ├── package_index.py │ │ │ │ ├── py27compat.py │ │ │ │ ├── py31compat.py │ │ │ │ ├── py33compat.py │ │ │ │ ├── py34compat.py │ │ │ │ ├── sandbox.py │ │ │ │ ├── script (dev).tmpl │ │ │ │ ├── script.tmpl │ │ │ │ ├── ssl_support.py │ │ │ │ ├── unicode_utils.py │ │ │ │ ├── version.py │ │ │ │ ├── wheel.py │ │ │ │ └── windows_support.py │ │ │ ├── somepackage-1.2.3-py3.9.egg-info │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── installed-files.txt │ │ │ │ └── top_level.txt │ │ │ └── somepackage │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── module1.cpython-39.pyc │ │ │ │ ├── module2.cpython-39.pyc │ │ │ │ └── version.cpython-39.pyc │ │ │ │ ├── module1.py │ │ │ │ ├── module2.py │ │ │ │ └── version.py │ │ ├── site.py │ │ ├── smtpd.py │ │ ├── smtplib.py │ │ ├── sndhdr.py │ │ ├── socket.py │ │ ├── socketserver.py │ │ ├── sqlite3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── dbapi2.cpython-39.opt-1.pyc │ │ │ │ ├── dbapi2.cpython-39.opt-2.pyc │ │ │ │ ├── dbapi2.cpython-39.pyc │ │ │ │ ├── dump.cpython-39.opt-1.pyc │ │ │ │ ├── dump.cpython-39.opt-2.pyc │ │ │ │ └── dump.cpython-39.pyc │ │ │ ├── dbapi2.py │ │ │ ├── dump.py │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── backup.cpython-39.opt-1.pyc │ │ │ │ ├── backup.cpython-39.opt-2.pyc │ │ │ │ ├── backup.cpython-39.pyc │ │ │ │ ├── dbapi.cpython-39.opt-1.pyc │ │ │ │ ├── dbapi.cpython-39.opt-2.pyc │ │ │ │ ├── dbapi.cpython-39.pyc │ │ │ │ ├── dump.cpython-39.opt-1.pyc │ │ │ │ ├── dump.cpython-39.opt-2.pyc │ │ │ │ ├── dump.cpython-39.pyc │ │ │ │ ├── factory.cpython-39.opt-1.pyc │ │ │ │ ├── factory.cpython-39.opt-2.pyc │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ ├── hooks.cpython-39.opt-1.pyc │ │ │ │ ├── hooks.cpython-39.opt-2.pyc │ │ │ │ ├── hooks.cpython-39.pyc │ │ │ │ ├── regression.cpython-39.opt-1.pyc │ │ │ │ ├── regression.cpython-39.opt-2.pyc │ │ │ │ ├── regression.cpython-39.pyc │ │ │ │ ├── transactions.cpython-39.opt-1.pyc │ │ │ │ ├── transactions.cpython-39.opt-2.pyc │ │ │ │ ├── transactions.cpython-39.pyc │ │ │ │ ├── types.cpython-39.opt-1.pyc │ │ │ │ ├── types.cpython-39.opt-2.pyc │ │ │ │ ├── types.cpython-39.pyc │ │ │ │ ├── userfunctions.cpython-39.opt-1.pyc │ │ │ │ ├── userfunctions.cpython-39.opt-2.pyc │ │ │ │ └── userfunctions.cpython-39.pyc │ │ │ │ ├── backup.py │ │ │ │ ├── dbapi.py │ │ │ │ ├── dump.py │ │ │ │ ├── factory.py │ │ │ │ ├── hooks.py │ │ │ │ ├── regression.py │ │ │ │ ├── transactions.py │ │ │ │ ├── types.py │ │ │ │ └── userfunctions.py │ │ ├── sre_compile.py │ │ ├── sre_constants.py │ │ ├── sre_parse.py │ │ ├── ssl.py │ │ ├── stat.py │ │ ├── statistics.py │ │ ├── string.py │ │ ├── stringprep.py │ │ ├── struct.py │ │ ├── subprocess.py │ │ ├── sunau.py │ │ ├── symbol.py │ │ ├── symtable.py │ │ ├── sysconfig.py │ │ ├── tabnanny.py │ │ ├── tarfile.py │ │ ├── telnetlib.py │ │ ├── tempfile.py │ │ ├── test │ │ │ ├── Sine-1000Hz-300ms.aif │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ ├── _test_multiprocessing.cpython-39.opt-1.pyc │ │ │ │ ├── _test_multiprocessing.cpython-39.opt-2.pyc │ │ │ │ ├── _test_multiprocessing.cpython-39.pyc │ │ │ │ ├── ann_module.cpython-39.opt-1.pyc │ │ │ │ ├── ann_module.cpython-39.opt-2.pyc │ │ │ │ ├── ann_module.cpython-39.pyc │ │ │ │ ├── ann_module2.cpython-39.opt-1.pyc │ │ │ │ ├── ann_module2.cpython-39.opt-2.pyc │ │ │ │ ├── ann_module2.cpython-39.pyc │ │ │ │ ├── ann_module3.cpython-39.opt-1.pyc │ │ │ │ ├── ann_module3.cpython-39.opt-2.pyc │ │ │ │ ├── ann_module3.cpython-39.pyc │ │ │ │ ├── audiotests.cpython-39.opt-1.pyc │ │ │ │ ├── audiotests.cpython-39.opt-2.pyc │ │ │ │ ├── audiotests.cpython-39.pyc │ │ │ │ ├── audit-tests.cpython-39.opt-1.pyc │ │ │ │ ├── audit-tests.cpython-39.opt-2.pyc │ │ │ │ ├── audit-tests.cpython-39.pyc │ │ │ │ ├── autotest.cpython-39.opt-1.pyc │ │ │ │ ├── autotest.cpython-39.opt-2.pyc │ │ │ │ ├── autotest.cpython-39.pyc │ │ │ │ ├── bad_getattr.cpython-39.opt-1.pyc │ │ │ │ ├── bad_getattr.cpython-39.opt-2.pyc │ │ │ │ ├── bad_getattr.cpython-39.pyc │ │ │ │ ├── bad_getattr2.cpython-39.opt-1.pyc │ │ │ │ ├── bad_getattr2.cpython-39.opt-2.pyc │ │ │ │ ├── bad_getattr2.cpython-39.pyc │ │ │ │ ├── bad_getattr3.cpython-39.opt-1.pyc │ │ │ │ ├── bad_getattr3.cpython-39.opt-2.pyc │ │ │ │ ├── bad_getattr3.cpython-39.pyc │ │ │ │ ├── bisect_cmd.cpython-39.opt-1.pyc │ │ │ │ ├── bisect_cmd.cpython-39.opt-2.pyc │ │ │ │ ├── bisect_cmd.cpython-39.pyc │ │ │ │ ├── coding20731.cpython-39.opt-1.pyc │ │ │ │ ├── coding20731.cpython-39.opt-2.pyc │ │ │ │ ├── coding20731.cpython-39.pyc │ │ │ │ ├── curses_tests.cpython-39.opt-1.pyc │ │ │ │ ├── curses_tests.cpython-39.opt-2.pyc │ │ │ │ ├── curses_tests.cpython-39.pyc │ │ │ │ ├── dataclass_module_1.cpython-39.opt-1.pyc │ │ │ │ ├── dataclass_module_1.cpython-39.opt-2.pyc │ │ │ │ ├── dataclass_module_1.cpython-39.pyc │ │ │ │ ├── dataclass_module_1_str.cpython-39.opt-1.pyc │ │ │ │ ├── dataclass_module_1_str.cpython-39.opt-2.pyc │ │ │ │ ├── dataclass_module_1_str.cpython-39.pyc │ │ │ │ ├── dataclass_module_2.cpython-39.opt-1.pyc │ │ │ │ ├── dataclass_module_2.cpython-39.opt-2.pyc │ │ │ │ ├── dataclass_module_2.cpython-39.pyc │ │ │ │ ├── dataclass_module_2_str.cpython-39.opt-1.pyc │ │ │ │ ├── dataclass_module_2_str.cpython-39.opt-2.pyc │ │ │ │ ├── dataclass_module_2_str.cpython-39.pyc │ │ │ │ ├── dataclass_textanno.cpython-39.opt-1.pyc │ │ │ │ ├── dataclass_textanno.cpython-39.opt-2.pyc │ │ │ │ ├── dataclass_textanno.cpython-39.pyc │ │ │ │ ├── datetimetester.cpython-39.opt-1.pyc │ │ │ │ ├── datetimetester.cpython-39.opt-2.pyc │ │ │ │ ├── datetimetester.cpython-39.pyc │ │ │ │ ├── dis_module.cpython-39.opt-1.pyc │ │ │ │ ├── dis_module.cpython-39.opt-2.pyc │ │ │ │ ├── dis_module.cpython-39.pyc │ │ │ │ ├── doctest_aliases.cpython-39.opt-1.pyc │ │ │ │ ├── doctest_aliases.cpython-39.opt-2.pyc │ │ │ │ ├── doctest_aliases.cpython-39.pyc │ │ │ │ ├── double_const.cpython-39.opt-1.pyc │ │ │ │ ├── double_const.cpython-39.opt-2.pyc │ │ │ │ ├── double_const.cpython-39.pyc │ │ │ │ ├── final_a.cpython-39.opt-1.pyc │ │ │ │ ├── final_a.cpython-39.opt-2.pyc │ │ │ │ ├── final_a.cpython-39.pyc │ │ │ │ ├── final_b.cpython-39.opt-1.pyc │ │ │ │ ├── final_b.cpython-39.opt-2.pyc │ │ │ │ ├── final_b.cpython-39.pyc │ │ │ │ ├── fork_wait.cpython-39.opt-1.pyc │ │ │ │ ├── fork_wait.cpython-39.opt-2.pyc │ │ │ │ ├── fork_wait.cpython-39.pyc │ │ │ │ ├── future_test1.cpython-39.opt-1.pyc │ │ │ │ ├── future_test1.cpython-39.opt-2.pyc │ │ │ │ ├── future_test1.cpython-39.pyc │ │ │ │ ├── future_test2.cpython-39.opt-1.pyc │ │ │ │ ├── future_test2.cpython-39.opt-2.pyc │ │ │ │ ├── future_test2.cpython-39.pyc │ │ │ │ ├── gdb_sample.cpython-39.opt-1.pyc │ │ │ │ ├── gdb_sample.cpython-39.opt-2.pyc │ │ │ │ ├── gdb_sample.cpython-39.pyc │ │ │ │ ├── good_getattr.cpython-39.opt-1.pyc │ │ │ │ ├── good_getattr.cpython-39.opt-2.pyc │ │ │ │ ├── good_getattr.cpython-39.pyc │ │ │ │ ├── imp_dummy.cpython-39.opt-1.pyc │ │ │ │ ├── imp_dummy.cpython-39.opt-2.pyc │ │ │ │ ├── imp_dummy.cpython-39.pyc │ │ │ │ ├── inspect_fodder.cpython-39.opt-1.pyc │ │ │ │ ├── inspect_fodder.cpython-39.opt-2.pyc │ │ │ │ ├── inspect_fodder.cpython-39.pyc │ │ │ │ ├── inspect_fodder2.cpython-39.opt-1.pyc │ │ │ │ ├── inspect_fodder2.cpython-39.opt-2.pyc │ │ │ │ ├── inspect_fodder2.cpython-39.pyc │ │ │ │ ├── list_tests.cpython-39.opt-1.pyc │ │ │ │ ├── list_tests.cpython-39.opt-2.pyc │ │ │ │ ├── list_tests.cpython-39.pyc │ │ │ │ ├── lock_tests.cpython-39.opt-1.pyc │ │ │ │ ├── lock_tests.cpython-39.opt-2.pyc │ │ │ │ ├── lock_tests.cpython-39.pyc │ │ │ │ ├── make_ssl_certs.cpython-39.opt-1.pyc │ │ │ │ ├── make_ssl_certs.cpython-39.opt-2.pyc │ │ │ │ ├── make_ssl_certs.cpython-39.pyc │ │ │ │ ├── mapping_tests.cpython-39.opt-1.pyc │ │ │ │ ├── mapping_tests.cpython-39.opt-2.pyc │ │ │ │ ├── mapping_tests.cpython-39.pyc │ │ │ │ ├── memory_watchdog.cpython-39.opt-1.pyc │ │ │ │ ├── memory_watchdog.cpython-39.opt-2.pyc │ │ │ │ ├── memory_watchdog.cpython-39.pyc │ │ │ │ ├── mock_socket.cpython-39.opt-1.pyc │ │ │ │ ├── mock_socket.cpython-39.opt-2.pyc │ │ │ │ ├── mock_socket.cpython-39.pyc │ │ │ │ ├── mod_generics_cache.cpython-39.opt-1.pyc │ │ │ │ ├── mod_generics_cache.cpython-39.opt-2.pyc │ │ │ │ ├── mod_generics_cache.cpython-39.pyc │ │ │ │ ├── mp_fork_bomb.cpython-39.opt-1.pyc │ │ │ │ ├── mp_fork_bomb.cpython-39.opt-2.pyc │ │ │ │ ├── mp_fork_bomb.cpython-39.pyc │ │ │ │ ├── mp_preload.cpython-39.opt-1.pyc │ │ │ │ ├── mp_preload.cpython-39.opt-2.pyc │ │ │ │ ├── mp_preload.cpython-39.pyc │ │ │ │ ├── multibytecodec_support.cpython-39.opt-1.pyc │ │ │ │ ├── multibytecodec_support.cpython-39.opt-2.pyc │ │ │ │ ├── multibytecodec_support.cpython-39.pyc │ │ │ │ ├── pickletester.cpython-39.opt-1.pyc │ │ │ │ ├── pickletester.cpython-39.opt-2.pyc │ │ │ │ ├── pickletester.cpython-39.pyc │ │ │ │ ├── profilee.cpython-39.opt-1.pyc │ │ │ │ ├── profilee.cpython-39.opt-2.pyc │ │ │ │ ├── profilee.cpython-39.pyc │ │ │ │ ├── pyclbr_input.cpython-39.opt-1.pyc │ │ │ │ ├── pyclbr_input.cpython-39.opt-2.pyc │ │ │ │ ├── pyclbr_input.cpython-39.pyc │ │ │ │ ├── pydoc_mod.cpython-39.opt-1.pyc │ │ │ │ ├── pydoc_mod.cpython-39.opt-2.pyc │ │ │ │ ├── pydoc_mod.cpython-39.pyc │ │ │ │ ├── pydocfodder.cpython-39.opt-1.pyc │ │ │ │ ├── pydocfodder.cpython-39.opt-2.pyc │ │ │ │ ├── pydocfodder.cpython-39.pyc │ │ │ │ ├── pythoninfo.cpython-39.opt-1.pyc │ │ │ │ ├── pythoninfo.cpython-39.opt-2.pyc │ │ │ │ ├── pythoninfo.cpython-39.pyc │ │ │ │ ├── re_tests.cpython-39.opt-1.pyc │ │ │ │ ├── re_tests.cpython-39.opt-2.pyc │ │ │ │ ├── re_tests.cpython-39.pyc │ │ │ │ ├── regrtest.cpython-39.opt-1.pyc │ │ │ │ ├── regrtest.cpython-39.opt-2.pyc │ │ │ │ ├── regrtest.cpython-39.pyc │ │ │ │ ├── relimport.cpython-39.opt-1.pyc │ │ │ │ ├── relimport.cpython-39.opt-2.pyc │ │ │ │ ├── relimport.cpython-39.pyc │ │ │ │ ├── reperf.cpython-39.opt-1.pyc │ │ │ │ ├── reperf.cpython-39.opt-2.pyc │ │ │ │ ├── reperf.cpython-39.pyc │ │ │ │ ├── sample_doctest.cpython-39.opt-1.pyc │ │ │ │ ├── sample_doctest.cpython-39.opt-2.pyc │ │ │ │ ├── sample_doctest.cpython-39.pyc │ │ │ │ ├── sample_doctest_no_docstrings.cpython-39.opt-1.pyc │ │ │ │ ├── sample_doctest_no_docstrings.cpython-39.opt-2.pyc │ │ │ │ ├── sample_doctest_no_docstrings.cpython-39.pyc │ │ │ │ ├── sample_doctest_no_doctests.cpython-39.opt-1.pyc │ │ │ │ ├── sample_doctest_no_doctests.cpython-39.opt-2.pyc │ │ │ │ ├── sample_doctest_no_doctests.cpython-39.pyc │ │ │ │ ├── seq_tests.cpython-39.opt-1.pyc │ │ │ │ ├── seq_tests.cpython-39.opt-2.pyc │ │ │ │ ├── seq_tests.cpython-39.pyc │ │ │ │ ├── signalinterproctester.cpython-39.opt-1.pyc │ │ │ │ ├── signalinterproctester.cpython-39.opt-2.pyc │ │ │ │ ├── signalinterproctester.cpython-39.pyc │ │ │ │ ├── sortperf.cpython-39.opt-1.pyc │ │ │ │ ├── sortperf.cpython-39.opt-2.pyc │ │ │ │ ├── sortperf.cpython-39.pyc │ │ │ │ ├── ssl_servers.cpython-39.opt-1.pyc │ │ │ │ ├── ssl_servers.cpython-39.opt-2.pyc │ │ │ │ ├── ssl_servers.cpython-39.pyc │ │ │ │ ├── ssltests.cpython-39.opt-1.pyc │ │ │ │ ├── ssltests.cpython-39.opt-2.pyc │ │ │ │ ├── ssltests.cpython-39.pyc │ │ │ │ ├── string_tests.cpython-39.opt-1.pyc │ │ │ │ ├── string_tests.cpython-39.opt-2.pyc │ │ │ │ ├── string_tests.cpython-39.pyc │ │ │ │ ├── test___all__.cpython-39.opt-1.pyc │ │ │ │ ├── test___all__.cpython-39.opt-2.pyc │ │ │ │ ├── test___all__.cpython-39.pyc │ │ │ │ ├── test___future__.cpython-39.opt-1.pyc │ │ │ │ ├── test___future__.cpython-39.opt-2.pyc │ │ │ │ ├── test___future__.cpython-39.pyc │ │ │ │ ├── test__locale.cpython-39.opt-1.pyc │ │ │ │ ├── test__locale.cpython-39.opt-2.pyc │ │ │ │ ├── test__locale.cpython-39.pyc │ │ │ │ ├── test__opcode.cpython-39.opt-1.pyc │ │ │ │ ├── test__opcode.cpython-39.opt-2.pyc │ │ │ │ ├── test__opcode.cpython-39.pyc │ │ │ │ ├── test__osx_support.cpython-39.opt-1.pyc │ │ │ │ ├── test__osx_support.cpython-39.opt-2.pyc │ │ │ │ ├── test__osx_support.cpython-39.pyc │ │ │ │ ├── test__xxsubinterpreters.cpython-39.opt-1.pyc │ │ │ │ ├── test__xxsubinterpreters.cpython-39.opt-2.pyc │ │ │ │ ├── test__xxsubinterpreters.cpython-39.pyc │ │ │ │ ├── test_abc.cpython-39.opt-1.pyc │ │ │ │ ├── test_abc.cpython-39.opt-2.pyc │ │ │ │ ├── test_abc.cpython-39.pyc │ │ │ │ ├── test_abstract_numbers.cpython-39.opt-1.pyc │ │ │ │ ├── test_abstract_numbers.cpython-39.opt-2.pyc │ │ │ │ ├── test_abstract_numbers.cpython-39.pyc │ │ │ │ ├── test_aifc.cpython-39.opt-1.pyc │ │ │ │ ├── test_aifc.cpython-39.opt-2.pyc │ │ │ │ ├── test_aifc.cpython-39.pyc │ │ │ │ ├── test_argparse.cpython-39.opt-1.pyc │ │ │ │ ├── test_argparse.cpython-39.opt-2.pyc │ │ │ │ ├── test_argparse.cpython-39.pyc │ │ │ │ ├── test_array.cpython-39.opt-1.pyc │ │ │ │ ├── test_array.cpython-39.opt-2.pyc │ │ │ │ ├── test_array.cpython-39.pyc │ │ │ │ ├── test_asdl_parser.cpython-39.opt-1.pyc │ │ │ │ ├── test_asdl_parser.cpython-39.opt-2.pyc │ │ │ │ ├── test_asdl_parser.cpython-39.pyc │ │ │ │ ├── test_ast.cpython-39.opt-1.pyc │ │ │ │ ├── test_ast.cpython-39.opt-2.pyc │ │ │ │ ├── test_ast.cpython-39.pyc │ │ │ │ ├── test_asyncgen.cpython-39.opt-1.pyc │ │ │ │ ├── test_asyncgen.cpython-39.opt-2.pyc │ │ │ │ ├── test_asyncgen.cpython-39.pyc │ │ │ │ ├── test_asynchat.cpython-39.opt-1.pyc │ │ │ │ ├── test_asynchat.cpython-39.opt-2.pyc │ │ │ │ ├── test_asynchat.cpython-39.pyc │ │ │ │ ├── test_asyncore.cpython-39.opt-1.pyc │ │ │ │ ├── test_asyncore.cpython-39.opt-2.pyc │ │ │ │ ├── test_asyncore.cpython-39.pyc │ │ │ │ ├── test_atexit.cpython-39.opt-1.pyc │ │ │ │ ├── test_atexit.cpython-39.opt-2.pyc │ │ │ │ ├── test_atexit.cpython-39.pyc │ │ │ │ ├── test_audioop.cpython-39.opt-1.pyc │ │ │ │ ├── test_audioop.cpython-39.opt-2.pyc │ │ │ │ ├── test_audioop.cpython-39.pyc │ │ │ │ ├── test_audit.cpython-39.opt-1.pyc │ │ │ │ ├── test_audit.cpython-39.opt-2.pyc │ │ │ │ ├── test_audit.cpython-39.pyc │ │ │ │ ├── test_augassign.cpython-39.opt-1.pyc │ │ │ │ ├── test_augassign.cpython-39.opt-2.pyc │ │ │ │ ├── test_augassign.cpython-39.pyc │ │ │ │ ├── test_base64.cpython-39.opt-1.pyc │ │ │ │ ├── test_base64.cpython-39.opt-2.pyc │ │ │ │ ├── test_base64.cpython-39.pyc │ │ │ │ ├── test_baseexception.cpython-39.opt-1.pyc │ │ │ │ ├── test_baseexception.cpython-39.opt-2.pyc │ │ │ │ ├── test_baseexception.cpython-39.pyc │ │ │ │ ├── test_bdb.cpython-39.opt-1.pyc │ │ │ │ ├── test_bdb.cpython-39.opt-2.pyc │ │ │ │ ├── test_bdb.cpython-39.pyc │ │ │ │ ├── test_bigaddrspace.cpython-39.opt-1.pyc │ │ │ │ ├── test_bigaddrspace.cpython-39.opt-2.pyc │ │ │ │ ├── test_bigaddrspace.cpython-39.pyc │ │ │ │ ├── test_bigmem.cpython-39.opt-1.pyc │ │ │ │ ├── test_bigmem.cpython-39.opt-2.pyc │ │ │ │ ├── test_bigmem.cpython-39.pyc │ │ │ │ ├── test_binascii.cpython-39.opt-1.pyc │ │ │ │ ├── test_binascii.cpython-39.opt-2.pyc │ │ │ │ ├── test_binascii.cpython-39.pyc │ │ │ │ ├── test_binhex.cpython-39.opt-1.pyc │ │ │ │ ├── test_binhex.cpython-39.opt-2.pyc │ │ │ │ ├── test_binhex.cpython-39.pyc │ │ │ │ ├── test_binop.cpython-39.opt-1.pyc │ │ │ │ ├── test_binop.cpython-39.opt-2.pyc │ │ │ │ ├── test_binop.cpython-39.pyc │ │ │ │ ├── test_bisect.cpython-39.opt-1.pyc │ │ │ │ ├── test_bisect.cpython-39.opt-2.pyc │ │ │ │ ├── test_bisect.cpython-39.pyc │ │ │ │ ├── test_bool.cpython-39.opt-1.pyc │ │ │ │ ├── test_bool.cpython-39.opt-2.pyc │ │ │ │ ├── test_bool.cpython-39.pyc │ │ │ │ ├── test_buffer.cpython-39.opt-1.pyc │ │ │ │ ├── test_buffer.cpython-39.opt-2.pyc │ │ │ │ ├── test_buffer.cpython-39.pyc │ │ │ │ ├── test_bufio.cpython-39.opt-1.pyc │ │ │ │ ├── test_bufio.cpython-39.opt-2.pyc │ │ │ │ ├── test_bufio.cpython-39.pyc │ │ │ │ ├── test_builtin.cpython-39.opt-1.pyc │ │ │ │ ├── test_builtin.cpython-39.opt-2.pyc │ │ │ │ ├── test_builtin.cpython-39.pyc │ │ │ │ ├── test_bytes.cpython-39.opt-1.pyc │ │ │ │ ├── test_bytes.cpython-39.opt-2.pyc │ │ │ │ ├── test_bytes.cpython-39.pyc │ │ │ │ ├── test_bz2.cpython-39.opt-1.pyc │ │ │ │ ├── test_bz2.cpython-39.opt-2.pyc │ │ │ │ ├── test_bz2.cpython-39.pyc │ │ │ │ ├── test_c_locale_coercion.cpython-39.opt-1.pyc │ │ │ │ ├── test_c_locale_coercion.cpython-39.opt-2.pyc │ │ │ │ ├── test_c_locale_coercion.cpython-39.pyc │ │ │ │ ├── test_calendar.cpython-39.opt-1.pyc │ │ │ │ ├── test_calendar.cpython-39.opt-2.pyc │ │ │ │ ├── test_calendar.cpython-39.pyc │ │ │ │ ├── test_call.cpython-39.opt-1.pyc │ │ │ │ ├── test_call.cpython-39.opt-2.pyc │ │ │ │ ├── test_call.cpython-39.pyc │ │ │ │ ├── test_capi.cpython-39.opt-1.pyc │ │ │ │ ├── test_capi.cpython-39.opt-2.pyc │ │ │ │ ├── test_capi.cpython-39.pyc │ │ │ │ ├── test_cgi.cpython-39.opt-1.pyc │ │ │ │ ├── test_cgi.cpython-39.opt-2.pyc │ │ │ │ ├── test_cgi.cpython-39.pyc │ │ │ │ ├── test_cgitb.cpython-39.opt-1.pyc │ │ │ │ ├── test_cgitb.cpython-39.opt-2.pyc │ │ │ │ ├── test_cgitb.cpython-39.pyc │ │ │ │ ├── test_charmapcodec.cpython-39.opt-1.pyc │ │ │ │ ├── test_charmapcodec.cpython-39.opt-2.pyc │ │ │ │ ├── test_charmapcodec.cpython-39.pyc │ │ │ │ ├── test_check_c_globals.cpython-39.opt-1.pyc │ │ │ │ ├── test_check_c_globals.cpython-39.opt-2.pyc │ │ │ │ ├── test_check_c_globals.cpython-39.pyc │ │ │ │ ├── test_class.cpython-39.opt-1.pyc │ │ │ │ ├── test_class.cpython-39.opt-2.pyc │ │ │ │ ├── test_class.cpython-39.pyc │ │ │ │ ├── test_clinic.cpython-39.opt-1.pyc │ │ │ │ ├── test_clinic.cpython-39.opt-2.pyc │ │ │ │ ├── test_clinic.cpython-39.pyc │ │ │ │ ├── test_cmath.cpython-39.opt-1.pyc │ │ │ │ ├── test_cmath.cpython-39.opt-2.pyc │ │ │ │ ├── test_cmath.cpython-39.pyc │ │ │ │ ├── test_cmd.cpython-39.opt-1.pyc │ │ │ │ ├── test_cmd.cpython-39.opt-2.pyc │ │ │ │ ├── test_cmd.cpython-39.pyc │ │ │ │ ├── test_cmd_line.cpython-39.opt-1.pyc │ │ │ │ ├── test_cmd_line.cpython-39.opt-2.pyc │ │ │ │ ├── test_cmd_line.cpython-39.pyc │ │ │ │ ├── test_cmd_line_script.cpython-39.opt-1.pyc │ │ │ │ ├── test_cmd_line_script.cpython-39.opt-2.pyc │ │ │ │ ├── test_cmd_line_script.cpython-39.pyc │ │ │ │ ├── test_code.cpython-39.opt-1.pyc │ │ │ │ ├── test_code.cpython-39.opt-2.pyc │ │ │ │ ├── test_code.cpython-39.pyc │ │ │ │ ├── test_code_module.cpython-39.opt-1.pyc │ │ │ │ ├── test_code_module.cpython-39.opt-2.pyc │ │ │ │ ├── test_code_module.cpython-39.pyc │ │ │ │ ├── test_codeccallbacks.cpython-39.opt-1.pyc │ │ │ │ ├── test_codeccallbacks.cpython-39.opt-2.pyc │ │ │ │ ├── test_codeccallbacks.cpython-39.pyc │ │ │ │ ├── test_codecencodings_cn.cpython-39.opt-1.pyc │ │ │ │ ├── test_codecencodings_cn.cpython-39.opt-2.pyc │ │ │ │ ├── test_codecencodings_cn.cpython-39.pyc │ │ │ │ ├── test_codecencodings_hk.cpython-39.opt-1.pyc │ │ │ │ ├── test_codecencodings_hk.cpython-39.opt-2.pyc │ │ │ │ ├── test_codecencodings_hk.cpython-39.pyc │ │ │ │ ├── test_codecencodings_iso2022.cpython-39.opt-1.pyc │ │ │ │ ├── test_codecencodings_iso2022.cpython-39.opt-2.pyc │ │ │ │ ├── test_codecencodings_iso2022.cpython-39.pyc │ │ │ │ ├── test_codecencodings_jp.cpython-39.opt-1.pyc │ │ │ │ ├── test_codecencodings_jp.cpython-39.opt-2.pyc │ │ │ │ ├── test_codecencodings_jp.cpython-39.pyc │ │ │ │ ├── test_codecencodings_kr.cpython-39.opt-1.pyc │ │ │ │ ├── test_codecencodings_kr.cpython-39.opt-2.pyc │ │ │ │ ├── test_codecencodings_kr.cpython-39.pyc │ │ │ │ ├── test_codecencodings_tw.cpython-39.opt-1.pyc │ │ │ │ ├── test_codecencodings_tw.cpython-39.opt-2.pyc │ │ │ │ ├── test_codecencodings_tw.cpython-39.pyc │ │ │ │ ├── test_codecmaps_cn.cpython-39.opt-1.pyc │ │ │ │ ├── test_codecmaps_cn.cpython-39.opt-2.pyc │ │ │ │ ├── test_codecmaps_cn.cpython-39.pyc │ │ │ │ ├── test_codecmaps_hk.cpython-39.opt-1.pyc │ │ │ │ ├── test_codecmaps_hk.cpython-39.opt-2.pyc │ │ │ │ ├── test_codecmaps_hk.cpython-39.pyc │ │ │ │ ├── test_codecmaps_jp.cpython-39.opt-1.pyc │ │ │ │ ├── test_codecmaps_jp.cpython-39.opt-2.pyc │ │ │ │ ├── test_codecmaps_jp.cpython-39.pyc │ │ │ │ ├── test_codecmaps_kr.cpython-39.opt-1.pyc │ │ │ │ ├── test_codecmaps_kr.cpython-39.opt-2.pyc │ │ │ │ ├── test_codecmaps_kr.cpython-39.pyc │ │ │ │ ├── test_codecmaps_tw.cpython-39.opt-1.pyc │ │ │ │ ├── test_codecmaps_tw.cpython-39.opt-2.pyc │ │ │ │ ├── test_codecmaps_tw.cpython-39.pyc │ │ │ │ ├── test_codecs.cpython-39.opt-1.pyc │ │ │ │ ├── test_codecs.cpython-39.opt-2.pyc │ │ │ │ ├── test_codecs.cpython-39.pyc │ │ │ │ ├── test_codeop.cpython-39.opt-1.pyc │ │ │ │ ├── test_codeop.cpython-39.opt-2.pyc │ │ │ │ ├── test_codeop.cpython-39.pyc │ │ │ │ ├── test_collections.cpython-39.opt-1.pyc │ │ │ │ ├── test_collections.cpython-39.opt-2.pyc │ │ │ │ ├── test_collections.cpython-39.pyc │ │ │ │ ├── test_colorsys.cpython-39.opt-1.pyc │ │ │ │ ├── test_colorsys.cpython-39.opt-2.pyc │ │ │ │ ├── test_colorsys.cpython-39.pyc │ │ │ │ ├── test_compare.cpython-39.opt-1.pyc │ │ │ │ ├── test_compare.cpython-39.opt-2.pyc │ │ │ │ ├── test_compare.cpython-39.pyc │ │ │ │ ├── test_compile.cpython-39.opt-1.pyc │ │ │ │ ├── test_compile.cpython-39.opt-2.pyc │ │ │ │ ├── test_compile.cpython-39.pyc │ │ │ │ ├── test_compileall.cpython-39.opt-1.pyc │ │ │ │ ├── test_compileall.cpython-39.opt-2.pyc │ │ │ │ ├── test_compileall.cpython-39.pyc │ │ │ │ ├── test_complex.cpython-39.opt-1.pyc │ │ │ │ ├── test_complex.cpython-39.opt-2.pyc │ │ │ │ ├── test_complex.cpython-39.pyc │ │ │ │ ├── test_concurrent_futures.cpython-39.opt-1.pyc │ │ │ │ ├── test_concurrent_futures.cpython-39.opt-2.pyc │ │ │ │ ├── test_concurrent_futures.cpython-39.pyc │ │ │ │ ├── test_configparser.cpython-39.opt-1.pyc │ │ │ │ ├── test_configparser.cpython-39.opt-2.pyc │ │ │ │ ├── test_configparser.cpython-39.pyc │ │ │ │ ├── test_contains.cpython-39.opt-1.pyc │ │ │ │ ├── test_contains.cpython-39.opt-2.pyc │ │ │ │ ├── test_contains.cpython-39.pyc │ │ │ │ ├── test_context.cpython-39.opt-1.pyc │ │ │ │ ├── test_context.cpython-39.opt-2.pyc │ │ │ │ ├── test_context.cpython-39.pyc │ │ │ │ ├── test_contextlib.cpython-39.opt-1.pyc │ │ │ │ ├── test_contextlib.cpython-39.opt-2.pyc │ │ │ │ ├── test_contextlib.cpython-39.pyc │ │ │ │ ├── test_contextlib_async.cpython-39.opt-1.pyc │ │ │ │ ├── test_contextlib_async.cpython-39.opt-2.pyc │ │ │ │ ├── test_contextlib_async.cpython-39.pyc │ │ │ │ ├── test_copy.cpython-39.opt-1.pyc │ │ │ │ ├── test_copy.cpython-39.opt-2.pyc │ │ │ │ ├── test_copy.cpython-39.pyc │ │ │ │ ├── test_copyreg.cpython-39.opt-1.pyc │ │ │ │ ├── test_copyreg.cpython-39.opt-2.pyc │ │ │ │ ├── test_copyreg.cpython-39.pyc │ │ │ │ ├── test_coroutines.cpython-39.opt-1.pyc │ │ │ │ ├── test_coroutines.cpython-39.opt-2.pyc │ │ │ │ ├── test_coroutines.cpython-39.pyc │ │ │ │ ├── test_cprofile.cpython-39.opt-1.pyc │ │ │ │ ├── test_cprofile.cpython-39.opt-2.pyc │ │ │ │ ├── test_cprofile.cpython-39.pyc │ │ │ │ ├── test_crashers.cpython-39.opt-1.pyc │ │ │ │ ├── test_crashers.cpython-39.opt-2.pyc │ │ │ │ ├── test_crashers.cpython-39.pyc │ │ │ │ ├── test_crypt.cpython-39.opt-1.pyc │ │ │ │ ├── test_crypt.cpython-39.opt-2.pyc │ │ │ │ ├── test_crypt.cpython-39.pyc │ │ │ │ ├── test_csv.cpython-39.opt-1.pyc │ │ │ │ ├── test_csv.cpython-39.opt-2.pyc │ │ │ │ ├── test_csv.cpython-39.pyc │ │ │ │ ├── test_ctypes.cpython-39.opt-1.pyc │ │ │ │ ├── test_ctypes.cpython-39.opt-2.pyc │ │ │ │ ├── test_ctypes.cpython-39.pyc │ │ │ │ ├── test_curses.cpython-39.opt-1.pyc │ │ │ │ ├── test_curses.cpython-39.opt-2.pyc │ │ │ │ ├── test_curses.cpython-39.pyc │ │ │ │ ├── test_dataclasses.cpython-39.opt-1.pyc │ │ │ │ ├── test_dataclasses.cpython-39.opt-2.pyc │ │ │ │ ├── test_dataclasses.cpython-39.pyc │ │ │ │ ├── test_datetime.cpython-39.opt-1.pyc │ │ │ │ ├── test_datetime.cpython-39.opt-2.pyc │ │ │ │ ├── test_datetime.cpython-39.pyc │ │ │ │ ├── test_dbm.cpython-39.opt-1.pyc │ │ │ │ ├── test_dbm.cpython-39.opt-2.pyc │ │ │ │ ├── test_dbm.cpython-39.pyc │ │ │ │ ├── test_dbm_dumb.cpython-39.opt-1.pyc │ │ │ │ ├── test_dbm_dumb.cpython-39.opt-2.pyc │ │ │ │ ├── test_dbm_dumb.cpython-39.pyc │ │ │ │ ├── test_dbm_gnu.cpython-39.opt-1.pyc │ │ │ │ ├── test_dbm_gnu.cpython-39.opt-2.pyc │ │ │ │ ├── test_dbm_gnu.cpython-39.pyc │ │ │ │ ├── test_dbm_ndbm.cpython-39.opt-1.pyc │ │ │ │ ├── test_dbm_ndbm.cpython-39.opt-2.pyc │ │ │ │ ├── test_dbm_ndbm.cpython-39.pyc │ │ │ │ ├── test_decimal.cpython-39.opt-1.pyc │ │ │ │ ├── test_decimal.cpython-39.opt-2.pyc │ │ │ │ ├── test_decimal.cpython-39.pyc │ │ │ │ ├── test_decorators.cpython-39.opt-1.pyc │ │ │ │ ├── test_decorators.cpython-39.opt-2.pyc │ │ │ │ ├── test_decorators.cpython-39.pyc │ │ │ │ ├── test_defaultdict.cpython-39.opt-1.pyc │ │ │ │ ├── test_defaultdict.cpython-39.opt-2.pyc │ │ │ │ ├── test_defaultdict.cpython-39.pyc │ │ │ │ ├── test_deque.cpython-39.opt-1.pyc │ │ │ │ ├── test_deque.cpython-39.opt-2.pyc │ │ │ │ ├── test_deque.cpython-39.pyc │ │ │ │ ├── test_descr.cpython-39.opt-1.pyc │ │ │ │ ├── test_descr.cpython-39.opt-2.pyc │ │ │ │ ├── test_descr.cpython-39.pyc │ │ │ │ ├── test_descrtut.cpython-39.opt-1.pyc │ │ │ │ ├── test_descrtut.cpython-39.opt-2.pyc │ │ │ │ ├── test_descrtut.cpython-39.pyc │ │ │ │ ├── test_devpoll.cpython-39.opt-1.pyc │ │ │ │ ├── test_devpoll.cpython-39.opt-2.pyc │ │ │ │ ├── test_devpoll.cpython-39.pyc │ │ │ │ ├── test_dict.cpython-39.opt-1.pyc │ │ │ │ ├── test_dict.cpython-39.opt-2.pyc │ │ │ │ ├── test_dict.cpython-39.pyc │ │ │ │ ├── test_dict_version.cpython-39.opt-1.pyc │ │ │ │ ├── test_dict_version.cpython-39.opt-2.pyc │ │ │ │ ├── test_dict_version.cpython-39.pyc │ │ │ │ ├── test_dictcomps.cpython-39.opt-1.pyc │ │ │ │ ├── test_dictcomps.cpython-39.opt-2.pyc │ │ │ │ ├── test_dictcomps.cpython-39.pyc │ │ │ │ ├── test_dictviews.cpython-39.opt-1.pyc │ │ │ │ ├── test_dictviews.cpython-39.opt-2.pyc │ │ │ │ ├── test_dictviews.cpython-39.pyc │ │ │ │ ├── test_difflib.cpython-39.opt-1.pyc │ │ │ │ ├── test_difflib.cpython-39.opt-2.pyc │ │ │ │ ├── test_difflib.cpython-39.pyc │ │ │ │ ├── test_dis.cpython-39.opt-1.pyc │ │ │ │ ├── test_dis.cpython-39.opt-2.pyc │ │ │ │ ├── test_dis.cpython-39.pyc │ │ │ │ ├── test_distutils.cpython-39.opt-1.pyc │ │ │ │ ├── test_distutils.cpython-39.opt-2.pyc │ │ │ │ ├── test_distutils.cpython-39.pyc │ │ │ │ ├── test_doctest.cpython-39.opt-1.pyc │ │ │ │ ├── test_doctest.cpython-39.opt-2.pyc │ │ │ │ ├── test_doctest.cpython-39.pyc │ │ │ │ ├── test_doctest2.cpython-39.opt-1.pyc │ │ │ │ ├── test_doctest2.cpython-39.opt-2.pyc │ │ │ │ ├── test_doctest2.cpython-39.pyc │ │ │ │ ├── test_docxmlrpc.cpython-39.opt-1.pyc │ │ │ │ ├── test_docxmlrpc.cpython-39.opt-2.pyc │ │ │ │ ├── test_docxmlrpc.cpython-39.pyc │ │ │ │ ├── test_dtrace.cpython-39.opt-1.pyc │ │ │ │ ├── test_dtrace.cpython-39.opt-2.pyc │ │ │ │ ├── test_dtrace.cpython-39.pyc │ │ │ │ ├── test_dynamic.cpython-39.opt-1.pyc │ │ │ │ ├── test_dynamic.cpython-39.opt-2.pyc │ │ │ │ ├── test_dynamic.cpython-39.pyc │ │ │ │ ├── test_dynamicclassattribute.cpython-39.opt-1.pyc │ │ │ │ ├── test_dynamicclassattribute.cpython-39.opt-2.pyc │ │ │ │ ├── test_dynamicclassattribute.cpython-39.pyc │ │ │ │ ├── test_eintr.cpython-39.opt-1.pyc │ │ │ │ ├── test_eintr.cpython-39.opt-2.pyc │ │ │ │ ├── test_eintr.cpython-39.pyc │ │ │ │ ├── test_embed.cpython-39.opt-1.pyc │ │ │ │ ├── test_embed.cpython-39.opt-2.pyc │ │ │ │ ├── test_embed.cpython-39.pyc │ │ │ │ ├── test_ensurepip.cpython-39.opt-1.pyc │ │ │ │ ├── test_ensurepip.cpython-39.opt-2.pyc │ │ │ │ ├── test_ensurepip.cpython-39.pyc │ │ │ │ ├── test_enum.cpython-39.opt-1.pyc │ │ │ │ ├── test_enum.cpython-39.opt-2.pyc │ │ │ │ ├── test_enum.cpython-39.pyc │ │ │ │ ├── test_enumerate.cpython-39.opt-1.pyc │ │ │ │ ├── test_enumerate.cpython-39.opt-2.pyc │ │ │ │ ├── test_enumerate.cpython-39.pyc │ │ │ │ ├── test_eof.cpython-39.opt-1.pyc │ │ │ │ ├── test_eof.cpython-39.opt-2.pyc │ │ │ │ ├── test_eof.cpython-39.pyc │ │ │ │ ├── test_epoll.cpython-39.opt-1.pyc │ │ │ │ ├── test_epoll.cpython-39.opt-2.pyc │ │ │ │ ├── test_epoll.cpython-39.pyc │ │ │ │ ├── test_errno.cpython-39.opt-1.pyc │ │ │ │ ├── test_errno.cpython-39.opt-2.pyc │ │ │ │ ├── test_errno.cpython-39.pyc │ │ │ │ ├── test_exception_hierarchy.cpython-39.opt-1.pyc │ │ │ │ ├── test_exception_hierarchy.cpython-39.opt-2.pyc │ │ │ │ ├── test_exception_hierarchy.cpython-39.pyc │ │ │ │ ├── test_exception_variations.cpython-39.opt-1.pyc │ │ │ │ ├── test_exception_variations.cpython-39.opt-2.pyc │ │ │ │ ├── test_exception_variations.cpython-39.pyc │ │ │ │ ├── test_exceptions.cpython-39.opt-1.pyc │ │ │ │ ├── test_exceptions.cpython-39.opt-2.pyc │ │ │ │ ├── test_exceptions.cpython-39.pyc │ │ │ │ ├── test_extcall.cpython-39.opt-1.pyc │ │ │ │ ├── test_extcall.cpython-39.opt-2.pyc │ │ │ │ ├── test_extcall.cpython-39.pyc │ │ │ │ ├── test_faulthandler.cpython-39.opt-1.pyc │ │ │ │ ├── test_faulthandler.cpython-39.opt-2.pyc │ │ │ │ ├── test_faulthandler.cpython-39.pyc │ │ │ │ ├── test_fcntl.cpython-39.opt-1.pyc │ │ │ │ ├── test_fcntl.cpython-39.opt-2.pyc │ │ │ │ ├── test_fcntl.cpython-39.pyc │ │ │ │ ├── test_file.cpython-39.opt-1.pyc │ │ │ │ ├── test_file.cpython-39.opt-2.pyc │ │ │ │ ├── test_file.cpython-39.pyc │ │ │ │ ├── test_file_eintr.cpython-39.opt-1.pyc │ │ │ │ ├── test_file_eintr.cpython-39.opt-2.pyc │ │ │ │ ├── test_file_eintr.cpython-39.pyc │ │ │ │ ├── test_filecmp.cpython-39.opt-1.pyc │ │ │ │ ├── test_filecmp.cpython-39.opt-2.pyc │ │ │ │ ├── test_filecmp.cpython-39.pyc │ │ │ │ ├── test_fileinput.cpython-39.opt-1.pyc │ │ │ │ ├── test_fileinput.cpython-39.opt-2.pyc │ │ │ │ ├── test_fileinput.cpython-39.pyc │ │ │ │ ├── test_fileio.cpython-39.opt-1.pyc │ │ │ │ ├── test_fileio.cpython-39.opt-2.pyc │ │ │ │ ├── test_fileio.cpython-39.pyc │ │ │ │ ├── test_finalization.cpython-39.opt-1.pyc │ │ │ │ ├── test_finalization.cpython-39.opt-2.pyc │ │ │ │ ├── test_finalization.cpython-39.pyc │ │ │ │ ├── test_float.cpython-39.opt-1.pyc │ │ │ │ ├── test_float.cpython-39.opt-2.pyc │ │ │ │ ├── test_float.cpython-39.pyc │ │ │ │ ├── test_flufl.cpython-39.opt-1.pyc │ │ │ │ ├── test_flufl.cpython-39.opt-2.pyc │ │ │ │ ├── test_flufl.cpython-39.pyc │ │ │ │ ├── test_fnmatch.cpython-39.opt-1.pyc │ │ │ │ ├── test_fnmatch.cpython-39.opt-2.pyc │ │ │ │ ├── test_fnmatch.cpython-39.pyc │ │ │ │ ├── test_fork1.cpython-39.opt-1.pyc │ │ │ │ ├── test_fork1.cpython-39.opt-2.pyc │ │ │ │ ├── test_fork1.cpython-39.pyc │ │ │ │ ├── test_format.cpython-39.opt-1.pyc │ │ │ │ ├── test_format.cpython-39.opt-2.pyc │ │ │ │ ├── test_format.cpython-39.pyc │ │ │ │ ├── test_fractions.cpython-39.opt-1.pyc │ │ │ │ ├── test_fractions.cpython-39.opt-2.pyc │ │ │ │ ├── test_fractions.cpython-39.pyc │ │ │ │ ├── test_frame.cpython-39.opt-1.pyc │ │ │ │ ├── test_frame.cpython-39.opt-2.pyc │ │ │ │ ├── test_frame.cpython-39.pyc │ │ │ │ ├── test_frozen.cpython-39.opt-1.pyc │ │ │ │ ├── test_frozen.cpython-39.opt-2.pyc │ │ │ │ ├── test_frozen.cpython-39.pyc │ │ │ │ ├── test_fstring.cpython-39.opt-1.pyc │ │ │ │ ├── test_fstring.cpython-39.opt-2.pyc │ │ │ │ ├── test_fstring.cpython-39.pyc │ │ │ │ ├── test_ftplib.cpython-39.opt-1.pyc │ │ │ │ ├── test_ftplib.cpython-39.opt-2.pyc │ │ │ │ ├── test_ftplib.cpython-39.pyc │ │ │ │ ├── test_funcattrs.cpython-39.opt-1.pyc │ │ │ │ ├── test_funcattrs.cpython-39.opt-2.pyc │ │ │ │ ├── test_funcattrs.cpython-39.pyc │ │ │ │ ├── test_functools.cpython-39.opt-1.pyc │ │ │ │ ├── test_functools.cpython-39.opt-2.pyc │ │ │ │ ├── test_functools.cpython-39.pyc │ │ │ │ ├── test_future.cpython-39.opt-1.pyc │ │ │ │ ├── test_future.cpython-39.opt-2.pyc │ │ │ │ ├── test_future.cpython-39.pyc │ │ │ │ ├── test_future3.cpython-39.opt-1.pyc │ │ │ │ ├── test_future3.cpython-39.opt-2.pyc │ │ │ │ ├── test_future3.cpython-39.pyc │ │ │ │ ├── test_future4.cpython-39.opt-1.pyc │ │ │ │ ├── test_future4.cpython-39.opt-2.pyc │ │ │ │ ├── test_future4.cpython-39.pyc │ │ │ │ ├── test_future5.cpython-39.opt-1.pyc │ │ │ │ ├── test_future5.cpython-39.opt-2.pyc │ │ │ │ ├── test_future5.cpython-39.pyc │ │ │ │ ├── test_gc.cpython-39.opt-1.pyc │ │ │ │ ├── test_gc.cpython-39.opt-2.pyc │ │ │ │ ├── test_gc.cpython-39.pyc │ │ │ │ ├── test_gdb.cpython-39.opt-1.pyc │ │ │ │ ├── test_gdb.cpython-39.opt-2.pyc │ │ │ │ ├── test_gdb.cpython-39.pyc │ │ │ │ ├── test_generator_stop.cpython-39.opt-1.pyc │ │ │ │ ├── test_generator_stop.cpython-39.opt-2.pyc │ │ │ │ ├── test_generator_stop.cpython-39.pyc │ │ │ │ ├── test_generators.cpython-39.opt-1.pyc │ │ │ │ ├── test_generators.cpython-39.opt-2.pyc │ │ │ │ ├── test_generators.cpython-39.pyc │ │ │ │ ├── test_genericalias.cpython-39.opt-1.pyc │ │ │ │ ├── test_genericalias.cpython-39.opt-2.pyc │ │ │ │ ├── test_genericalias.cpython-39.pyc │ │ │ │ ├── test_genericclass.cpython-39.opt-1.pyc │ │ │ │ ├── test_genericclass.cpython-39.opt-2.pyc │ │ │ │ ├── test_genericclass.cpython-39.pyc │ │ │ │ ├── test_genericpath.cpython-39.opt-1.pyc │ │ │ │ ├── test_genericpath.cpython-39.opt-2.pyc │ │ │ │ ├── test_genericpath.cpython-39.pyc │ │ │ │ ├── test_genexps.cpython-39.opt-1.pyc │ │ │ │ ├── test_genexps.cpython-39.opt-2.pyc │ │ │ │ ├── test_genexps.cpython-39.pyc │ │ │ │ ├── test_getargs2.cpython-39.opt-1.pyc │ │ │ │ ├── test_getargs2.cpython-39.opt-2.pyc │ │ │ │ ├── test_getargs2.cpython-39.pyc │ │ │ │ ├── test_getopt.cpython-39.opt-1.pyc │ │ │ │ ├── test_getopt.cpython-39.opt-2.pyc │ │ │ │ ├── test_getopt.cpython-39.pyc │ │ │ │ ├── test_getpass.cpython-39.opt-1.pyc │ │ │ │ ├── test_getpass.cpython-39.opt-2.pyc │ │ │ │ ├── test_getpass.cpython-39.pyc │ │ │ │ ├── test_gettext.cpython-39.opt-1.pyc │ │ │ │ ├── test_gettext.cpython-39.opt-2.pyc │ │ │ │ ├── test_gettext.cpython-39.pyc │ │ │ │ ├── test_glob.cpython-39.opt-1.pyc │ │ │ │ ├── test_glob.cpython-39.opt-2.pyc │ │ │ │ ├── test_glob.cpython-39.pyc │ │ │ │ ├── test_global.cpython-39.opt-1.pyc │ │ │ │ ├── test_global.cpython-39.opt-2.pyc │ │ │ │ ├── test_global.cpython-39.pyc │ │ │ │ ├── test_grammar.cpython-39.opt-1.pyc │ │ │ │ ├── test_grammar.cpython-39.opt-2.pyc │ │ │ │ ├── test_grammar.cpython-39.pyc │ │ │ │ ├── test_graphlib.cpython-39.opt-1.pyc │ │ │ │ ├── test_graphlib.cpython-39.opt-2.pyc │ │ │ │ ├── test_graphlib.cpython-39.pyc │ │ │ │ ├── test_grp.cpython-39.opt-1.pyc │ │ │ │ ├── test_grp.cpython-39.opt-2.pyc │ │ │ │ ├── test_grp.cpython-39.pyc │ │ │ │ ├── test_gzip.cpython-39.opt-1.pyc │ │ │ │ ├── test_gzip.cpython-39.opt-2.pyc │ │ │ │ ├── test_gzip.cpython-39.pyc │ │ │ │ ├── test_hash.cpython-39.opt-1.pyc │ │ │ │ ├── test_hash.cpython-39.opt-2.pyc │ │ │ │ ├── test_hash.cpython-39.pyc │ │ │ │ ├── test_hashlib.cpython-39.opt-1.pyc │ │ │ │ ├── test_hashlib.cpython-39.opt-2.pyc │ │ │ │ ├── test_hashlib.cpython-39.pyc │ │ │ │ ├── test_heapq.cpython-39.opt-1.pyc │ │ │ │ ├── test_heapq.cpython-39.opt-2.pyc │ │ │ │ ├── test_heapq.cpython-39.pyc │ │ │ │ ├── test_hmac.cpython-39.opt-1.pyc │ │ │ │ ├── test_hmac.cpython-39.opt-2.pyc │ │ │ │ ├── test_hmac.cpython-39.pyc │ │ │ │ ├── test_html.cpython-39.opt-1.pyc │ │ │ │ ├── test_html.cpython-39.opt-2.pyc │ │ │ │ ├── test_html.cpython-39.pyc │ │ │ │ ├── test_htmlparser.cpython-39.opt-1.pyc │ │ │ │ ├── test_htmlparser.cpython-39.opt-2.pyc │ │ │ │ ├── test_htmlparser.cpython-39.pyc │ │ │ │ ├── test_http_cookiejar.cpython-39.opt-1.pyc │ │ │ │ ├── test_http_cookiejar.cpython-39.opt-2.pyc │ │ │ │ ├── test_http_cookiejar.cpython-39.pyc │ │ │ │ ├── test_http_cookies.cpython-39.opt-1.pyc │ │ │ │ ├── test_http_cookies.cpython-39.opt-2.pyc │ │ │ │ ├── test_http_cookies.cpython-39.pyc │ │ │ │ ├── test_httplib.cpython-39.opt-1.pyc │ │ │ │ ├── test_httplib.cpython-39.opt-2.pyc │ │ │ │ ├── test_httplib.cpython-39.pyc │ │ │ │ ├── test_httpservers.cpython-39.opt-1.pyc │ │ │ │ ├── test_httpservers.cpython-39.opt-2.pyc │ │ │ │ ├── test_httpservers.cpython-39.pyc │ │ │ │ ├── test_idle.cpython-39.opt-1.pyc │ │ │ │ ├── test_idle.cpython-39.opt-2.pyc │ │ │ │ ├── test_idle.cpython-39.pyc │ │ │ │ ├── test_imaplib.cpython-39.opt-1.pyc │ │ │ │ ├── test_imaplib.cpython-39.opt-2.pyc │ │ │ │ ├── test_imaplib.cpython-39.pyc │ │ │ │ ├── test_imghdr.cpython-39.opt-1.pyc │ │ │ │ ├── test_imghdr.cpython-39.opt-2.pyc │ │ │ │ ├── test_imghdr.cpython-39.pyc │ │ │ │ ├── test_imp.cpython-39.opt-1.pyc │ │ │ │ ├── test_imp.cpython-39.opt-2.pyc │ │ │ │ ├── test_imp.cpython-39.pyc │ │ │ │ ├── test_index.cpython-39.opt-1.pyc │ │ │ │ ├── test_index.cpython-39.opt-2.pyc │ │ │ │ ├── test_index.cpython-39.pyc │ │ │ │ ├── test_inspect.cpython-39.opt-1.pyc │ │ │ │ ├── test_inspect.cpython-39.opt-2.pyc │ │ │ │ ├── test_inspect.cpython-39.pyc │ │ │ │ ├── test_int.cpython-39.opt-1.pyc │ │ │ │ ├── test_int.cpython-39.opt-2.pyc │ │ │ │ ├── test_int.cpython-39.pyc │ │ │ │ ├── test_int_literal.cpython-39.opt-1.pyc │ │ │ │ ├── test_int_literal.cpython-39.opt-2.pyc │ │ │ │ ├── test_int_literal.cpython-39.pyc │ │ │ │ ├── test_io.cpython-39.opt-1.pyc │ │ │ │ ├── test_io.cpython-39.opt-2.pyc │ │ │ │ ├── test_io.cpython-39.pyc │ │ │ │ ├── test_ioctl.cpython-39.opt-1.pyc │ │ │ │ ├── test_ioctl.cpython-39.opt-2.pyc │ │ │ │ ├── test_ioctl.cpython-39.pyc │ │ │ │ ├── test_ipaddress.cpython-39.opt-1.pyc │ │ │ │ ├── test_ipaddress.cpython-39.opt-2.pyc │ │ │ │ ├── test_ipaddress.cpython-39.pyc │ │ │ │ ├── test_isinstance.cpython-39.opt-1.pyc │ │ │ │ ├── test_isinstance.cpython-39.opt-2.pyc │ │ │ │ ├── test_isinstance.cpython-39.pyc │ │ │ │ ├── test_iter.cpython-39.opt-1.pyc │ │ │ │ ├── test_iter.cpython-39.opt-2.pyc │ │ │ │ ├── test_iter.cpython-39.pyc │ │ │ │ ├── test_iterlen.cpython-39.opt-1.pyc │ │ │ │ ├── test_iterlen.cpython-39.opt-2.pyc │ │ │ │ ├── test_iterlen.cpython-39.pyc │ │ │ │ ├── test_itertools.cpython-39.opt-1.pyc │ │ │ │ ├── test_itertools.cpython-39.opt-2.pyc │ │ │ │ ├── test_itertools.cpython-39.pyc │ │ │ │ ├── test_keyword.cpython-39.opt-1.pyc │ │ │ │ ├── test_keyword.cpython-39.opt-2.pyc │ │ │ │ ├── test_keyword.cpython-39.pyc │ │ │ │ ├── test_keywordonlyarg.cpython-39.opt-1.pyc │ │ │ │ ├── test_keywordonlyarg.cpython-39.opt-2.pyc │ │ │ │ ├── test_keywordonlyarg.cpython-39.pyc │ │ │ │ ├── test_kqueue.cpython-39.opt-1.pyc │ │ │ │ ├── test_kqueue.cpython-39.opt-2.pyc │ │ │ │ ├── test_kqueue.cpython-39.pyc │ │ │ │ ├── test_largefile.cpython-39.opt-1.pyc │ │ │ │ ├── test_largefile.cpython-39.opt-2.pyc │ │ │ │ ├── test_largefile.cpython-39.pyc │ │ │ │ ├── test_lib2to3.cpython-39.opt-1.pyc │ │ │ │ ├── test_lib2to3.cpython-39.opt-2.pyc │ │ │ │ ├── test_lib2to3.cpython-39.pyc │ │ │ │ ├── test_linecache.cpython-39.opt-1.pyc │ │ │ │ ├── test_linecache.cpython-39.opt-2.pyc │ │ │ │ ├── test_linecache.cpython-39.pyc │ │ │ │ ├── test_list.cpython-39.opt-1.pyc │ │ │ │ ├── test_list.cpython-39.opt-2.pyc │ │ │ │ ├── test_list.cpython-39.pyc │ │ │ │ ├── test_listcomps.cpython-39.opt-1.pyc │ │ │ │ ├── test_listcomps.cpython-39.opt-2.pyc │ │ │ │ ├── test_listcomps.cpython-39.pyc │ │ │ │ ├── test_lltrace.cpython-39.opt-1.pyc │ │ │ │ ├── test_lltrace.cpython-39.opt-2.pyc │ │ │ │ ├── test_lltrace.cpython-39.pyc │ │ │ │ ├── test_locale.cpython-39.opt-1.pyc │ │ │ │ ├── test_locale.cpython-39.opt-2.pyc │ │ │ │ ├── test_locale.cpython-39.pyc │ │ │ │ ├── test_logging.cpython-39.opt-1.pyc │ │ │ │ ├── test_logging.cpython-39.opt-2.pyc │ │ │ │ ├── test_logging.cpython-39.pyc │ │ │ │ ├── test_long.cpython-39.opt-1.pyc │ │ │ │ ├── test_long.cpython-39.opt-2.pyc │ │ │ │ ├── test_long.cpython-39.pyc │ │ │ │ ├── test_longexp.cpython-39.opt-1.pyc │ │ │ │ ├── test_longexp.cpython-39.opt-2.pyc │ │ │ │ ├── test_longexp.cpython-39.pyc │ │ │ │ ├── test_lzma.cpython-39.opt-1.pyc │ │ │ │ ├── test_lzma.cpython-39.opt-2.pyc │ │ │ │ ├── test_lzma.cpython-39.pyc │ │ │ │ ├── test_mailbox.cpython-39.opt-1.pyc │ │ │ │ ├── test_mailbox.cpython-39.opt-2.pyc │ │ │ │ ├── test_mailbox.cpython-39.pyc │ │ │ │ ├── test_mailcap.cpython-39.opt-1.pyc │ │ │ │ ├── test_mailcap.cpython-39.opt-2.pyc │ │ │ │ ├── test_mailcap.cpython-39.pyc │ │ │ │ ├── test_marshal.cpython-39.opt-1.pyc │ │ │ │ ├── test_marshal.cpython-39.opt-2.pyc │ │ │ │ ├── test_marshal.cpython-39.pyc │ │ │ │ ├── test_math.cpython-39.opt-1.pyc │ │ │ │ ├── test_math.cpython-39.opt-2.pyc │ │ │ │ ├── test_math.cpython-39.pyc │ │ │ │ ├── test_memoryio.cpython-39.opt-1.pyc │ │ │ │ ├── test_memoryio.cpython-39.opt-2.pyc │ │ │ │ ├── test_memoryio.cpython-39.pyc │ │ │ │ ├── test_memoryview.cpython-39.opt-1.pyc │ │ │ │ ├── test_memoryview.cpython-39.opt-2.pyc │ │ │ │ ├── test_memoryview.cpython-39.pyc │ │ │ │ ├── test_metaclass.cpython-39.opt-1.pyc │ │ │ │ ├── test_metaclass.cpython-39.opt-2.pyc │ │ │ │ ├── test_metaclass.cpython-39.pyc │ │ │ │ ├── test_mimetypes.cpython-39.opt-1.pyc │ │ │ │ ├── test_mimetypes.cpython-39.opt-2.pyc │ │ │ │ ├── test_mimetypes.cpython-39.pyc │ │ │ │ ├── test_minidom.cpython-39.opt-1.pyc │ │ │ │ ├── test_minidom.cpython-39.opt-2.pyc │ │ │ │ ├── test_minidom.cpython-39.pyc │ │ │ │ ├── test_mmap.cpython-39.opt-1.pyc │ │ │ │ ├── test_mmap.cpython-39.opt-2.pyc │ │ │ │ ├── test_mmap.cpython-39.pyc │ │ │ │ ├── test_module.cpython-39.opt-1.pyc │ │ │ │ ├── test_module.cpython-39.opt-2.pyc │ │ │ │ ├── test_module.cpython-39.pyc │ │ │ │ ├── test_modulefinder.cpython-39.opt-1.pyc │ │ │ │ ├── test_modulefinder.cpython-39.opt-2.pyc │ │ │ │ ├── test_modulefinder.cpython-39.pyc │ │ │ │ ├── test_msilib.cpython-39.opt-1.pyc │ │ │ │ ├── test_msilib.cpython-39.opt-2.pyc │ │ │ │ ├── test_msilib.cpython-39.pyc │ │ │ │ ├── test_multibytecodec.cpython-39.opt-1.pyc │ │ │ │ ├── test_multibytecodec.cpython-39.opt-2.pyc │ │ │ │ ├── test_multibytecodec.cpython-39.pyc │ │ │ │ ├── test_multiprocessing_fork.cpython-39.opt-1.pyc │ │ │ │ ├── test_multiprocessing_fork.cpython-39.opt-2.pyc │ │ │ │ ├── test_multiprocessing_fork.cpython-39.pyc │ │ │ │ ├── test_multiprocessing_forkserver.cpython-39.opt-1.pyc │ │ │ │ ├── test_multiprocessing_forkserver.cpython-39.opt-2.pyc │ │ │ │ ├── test_multiprocessing_forkserver.cpython-39.pyc │ │ │ │ ├── test_multiprocessing_main_handling.cpython-39.opt-1.pyc │ │ │ │ ├── test_multiprocessing_main_handling.cpython-39.opt-2.pyc │ │ │ │ ├── test_multiprocessing_main_handling.cpython-39.pyc │ │ │ │ ├── test_multiprocessing_spawn.cpython-39.opt-1.pyc │ │ │ │ ├── test_multiprocessing_spawn.cpython-39.opt-2.pyc │ │ │ │ ├── test_multiprocessing_spawn.cpython-39.pyc │ │ │ │ ├── test_named_expressions.cpython-39.opt-1.pyc │ │ │ │ ├── test_named_expressions.cpython-39.opt-2.pyc │ │ │ │ ├── test_named_expressions.cpython-39.pyc │ │ │ │ ├── test_netrc.cpython-39.opt-1.pyc │ │ │ │ ├── test_netrc.cpython-39.opt-2.pyc │ │ │ │ ├── test_netrc.cpython-39.pyc │ │ │ │ ├── test_nis.cpython-39.opt-1.pyc │ │ │ │ ├── test_nis.cpython-39.opt-2.pyc │ │ │ │ ├── test_nis.cpython-39.pyc │ │ │ │ ├── test_nntplib.cpython-39.opt-1.pyc │ │ │ │ ├── test_nntplib.cpython-39.opt-2.pyc │ │ │ │ ├── test_nntplib.cpython-39.pyc │ │ │ │ ├── test_ntpath.cpython-39.opt-1.pyc │ │ │ │ ├── test_ntpath.cpython-39.opt-2.pyc │ │ │ │ ├── test_ntpath.cpython-39.pyc │ │ │ │ ├── test_numeric_tower.cpython-39.opt-1.pyc │ │ │ │ ├── test_numeric_tower.cpython-39.opt-2.pyc │ │ │ │ ├── test_numeric_tower.cpython-39.pyc │ │ │ │ ├── test_opcodes.cpython-39.opt-1.pyc │ │ │ │ ├── test_opcodes.cpython-39.opt-2.pyc │ │ │ │ ├── test_opcodes.cpython-39.pyc │ │ │ │ ├── test_openpty.cpython-39.opt-1.pyc │ │ │ │ ├── test_openpty.cpython-39.opt-2.pyc │ │ │ │ ├── test_openpty.cpython-39.pyc │ │ │ │ ├── test_operator.cpython-39.opt-1.pyc │ │ │ │ ├── test_operator.cpython-39.opt-2.pyc │ │ │ │ ├── test_operator.cpython-39.pyc │ │ │ │ ├── test_optparse.cpython-39.opt-1.pyc │ │ │ │ ├── test_optparse.cpython-39.opt-2.pyc │ │ │ │ ├── test_optparse.cpython-39.pyc │ │ │ │ ├── test_ordered_dict.cpython-39.opt-1.pyc │ │ │ │ ├── test_ordered_dict.cpython-39.opt-2.pyc │ │ │ │ ├── test_ordered_dict.cpython-39.pyc │ │ │ │ ├── test_os.cpython-39.opt-1.pyc │ │ │ │ ├── test_os.cpython-39.opt-2.pyc │ │ │ │ ├── test_os.cpython-39.pyc │ │ │ │ ├── test_ossaudiodev.cpython-39.opt-1.pyc │ │ │ │ ├── test_ossaudiodev.cpython-39.opt-2.pyc │ │ │ │ ├── test_ossaudiodev.cpython-39.pyc │ │ │ │ ├── test_osx_env.cpython-39.opt-1.pyc │ │ │ │ ├── test_osx_env.cpython-39.opt-2.pyc │ │ │ │ ├── test_osx_env.cpython-39.pyc │ │ │ │ ├── test_parser.cpython-39.opt-1.pyc │ │ │ │ ├── test_parser.cpython-39.opt-2.pyc │ │ │ │ ├── test_parser.cpython-39.pyc │ │ │ │ ├── test_pathlib.cpython-39.opt-1.pyc │ │ │ │ ├── test_pathlib.cpython-39.opt-2.pyc │ │ │ │ ├── test_pathlib.cpython-39.pyc │ │ │ │ ├── test_pdb.cpython-39.opt-1.pyc │ │ │ │ ├── test_pdb.cpython-39.opt-2.pyc │ │ │ │ ├── test_pdb.cpython-39.pyc │ │ │ │ ├── test_peepholer.cpython-39.opt-1.pyc │ │ │ │ ├── test_peepholer.cpython-39.opt-2.pyc │ │ │ │ ├── test_peepholer.cpython-39.pyc │ │ │ │ ├── test_peg_parser.cpython-39.opt-1.pyc │ │ │ │ ├── test_peg_parser.cpython-39.opt-2.pyc │ │ │ │ ├── test_peg_parser.cpython-39.pyc │ │ │ │ ├── test_pickle.cpython-39.opt-1.pyc │ │ │ │ ├── test_pickle.cpython-39.opt-2.pyc │ │ │ │ ├── test_pickle.cpython-39.pyc │ │ │ │ ├── test_picklebuffer.cpython-39.opt-1.pyc │ │ │ │ ├── test_picklebuffer.cpython-39.opt-2.pyc │ │ │ │ ├── test_picklebuffer.cpython-39.pyc │ │ │ │ ├── test_pickletools.cpython-39.opt-1.pyc │ │ │ │ ├── test_pickletools.cpython-39.opt-2.pyc │ │ │ │ ├── test_pickletools.cpython-39.pyc │ │ │ │ ├── test_pipes.cpython-39.opt-1.pyc │ │ │ │ ├── test_pipes.cpython-39.opt-2.pyc │ │ │ │ ├── test_pipes.cpython-39.pyc │ │ │ │ ├── test_pkg.cpython-39.opt-1.pyc │ │ │ │ ├── test_pkg.cpython-39.opt-2.pyc │ │ │ │ ├── test_pkg.cpython-39.pyc │ │ │ │ ├── test_pkgutil.cpython-39.opt-1.pyc │ │ │ │ ├── test_pkgutil.cpython-39.opt-2.pyc │ │ │ │ ├── test_pkgutil.cpython-39.pyc │ │ │ │ ├── test_platform.cpython-39.opt-1.pyc │ │ │ │ ├── test_platform.cpython-39.opt-2.pyc │ │ │ │ ├── test_platform.cpython-39.pyc │ │ │ │ ├── test_plistlib.cpython-39.opt-1.pyc │ │ │ │ ├── test_plistlib.cpython-39.opt-2.pyc │ │ │ │ ├── test_plistlib.cpython-39.pyc │ │ │ │ ├── test_poll.cpython-39.opt-1.pyc │ │ │ │ ├── test_poll.cpython-39.opt-2.pyc │ │ │ │ ├── test_poll.cpython-39.pyc │ │ │ │ ├── test_popen.cpython-39.opt-1.pyc │ │ │ │ ├── test_popen.cpython-39.opt-2.pyc │ │ │ │ ├── test_popen.cpython-39.pyc │ │ │ │ ├── test_poplib.cpython-39.opt-1.pyc │ │ │ │ ├── test_poplib.cpython-39.opt-2.pyc │ │ │ │ ├── test_poplib.cpython-39.pyc │ │ │ │ ├── test_positional_only_arg.cpython-39.opt-1.pyc │ │ │ │ ├── test_positional_only_arg.cpython-39.opt-2.pyc │ │ │ │ ├── test_positional_only_arg.cpython-39.pyc │ │ │ │ ├── test_posix.cpython-39.opt-1.pyc │ │ │ │ ├── test_posix.cpython-39.opt-2.pyc │ │ │ │ ├── test_posix.cpython-39.pyc │ │ │ │ ├── test_posixpath.cpython-39.opt-1.pyc │ │ │ │ ├── test_posixpath.cpython-39.opt-2.pyc │ │ │ │ ├── test_posixpath.cpython-39.pyc │ │ │ │ ├── test_pow.cpython-39.opt-1.pyc │ │ │ │ ├── test_pow.cpython-39.opt-2.pyc │ │ │ │ ├── test_pow.cpython-39.pyc │ │ │ │ ├── test_pprint.cpython-39.opt-1.pyc │ │ │ │ ├── test_pprint.cpython-39.opt-2.pyc │ │ │ │ ├── test_pprint.cpython-39.pyc │ │ │ │ ├── test_print.cpython-39.opt-1.pyc │ │ │ │ ├── test_print.cpython-39.opt-2.pyc │ │ │ │ ├── test_print.cpython-39.pyc │ │ │ │ ├── test_profile.cpython-39.opt-1.pyc │ │ │ │ ├── test_profile.cpython-39.opt-2.pyc │ │ │ │ ├── test_profile.cpython-39.pyc │ │ │ │ ├── test_property.cpython-39.opt-1.pyc │ │ │ │ ├── test_property.cpython-39.opt-2.pyc │ │ │ │ ├── test_property.cpython-39.pyc │ │ │ │ ├── test_pstats.cpython-39.opt-1.pyc │ │ │ │ ├── test_pstats.cpython-39.opt-2.pyc │ │ │ │ ├── test_pstats.cpython-39.pyc │ │ │ │ ├── test_pty.cpython-39.opt-1.pyc │ │ │ │ ├── test_pty.cpython-39.opt-2.pyc │ │ │ │ ├── test_pty.cpython-39.pyc │ │ │ │ ├── test_pulldom.cpython-39.opt-1.pyc │ │ │ │ ├── test_pulldom.cpython-39.opt-2.pyc │ │ │ │ ├── test_pulldom.cpython-39.pyc │ │ │ │ ├── test_pwd.cpython-39.opt-1.pyc │ │ │ │ ├── test_pwd.cpython-39.opt-2.pyc │ │ │ │ ├── test_pwd.cpython-39.pyc │ │ │ │ ├── test_py_compile.cpython-39.opt-1.pyc │ │ │ │ ├── test_py_compile.cpython-39.opt-2.pyc │ │ │ │ ├── test_py_compile.cpython-39.pyc │ │ │ │ ├── test_pyclbr.cpython-39.opt-1.pyc │ │ │ │ ├── test_pyclbr.cpython-39.opt-2.pyc │ │ │ │ ├── test_pyclbr.cpython-39.pyc │ │ │ │ ├── test_pydoc.cpython-39.opt-1.pyc │ │ │ │ ├── test_pydoc.cpython-39.opt-2.pyc │ │ │ │ ├── test_pydoc.cpython-39.pyc │ │ │ │ ├── test_pyexpat.cpython-39.opt-1.pyc │ │ │ │ ├── test_pyexpat.cpython-39.opt-2.pyc │ │ │ │ ├── test_pyexpat.cpython-39.pyc │ │ │ │ ├── test_queue.cpython-39.opt-1.pyc │ │ │ │ ├── test_queue.cpython-39.opt-2.pyc │ │ │ │ ├── test_queue.cpython-39.pyc │ │ │ │ ├── test_quopri.cpython-39.opt-1.pyc │ │ │ │ ├── test_quopri.cpython-39.opt-2.pyc │ │ │ │ ├── test_quopri.cpython-39.pyc │ │ │ │ ├── test_raise.cpython-39.opt-1.pyc │ │ │ │ ├── test_raise.cpython-39.opt-2.pyc │ │ │ │ ├── test_raise.cpython-39.pyc │ │ │ │ ├── test_random.cpython-39.opt-1.pyc │ │ │ │ ├── test_random.cpython-39.opt-2.pyc │ │ │ │ ├── test_random.cpython-39.pyc │ │ │ │ ├── test_range.cpython-39.opt-1.pyc │ │ │ │ ├── test_range.cpython-39.opt-2.pyc │ │ │ │ ├── test_range.cpython-39.pyc │ │ │ │ ├── test_re.cpython-39.opt-1.pyc │ │ │ │ ├── test_re.cpython-39.opt-2.pyc │ │ │ │ ├── test_re.cpython-39.pyc │ │ │ │ ├── test_readline.cpython-39.opt-1.pyc │ │ │ │ ├── test_readline.cpython-39.opt-2.pyc │ │ │ │ ├── test_readline.cpython-39.pyc │ │ │ │ ├── test_regrtest.cpython-39.opt-1.pyc │ │ │ │ ├── test_regrtest.cpython-39.opt-2.pyc │ │ │ │ ├── test_regrtest.cpython-39.pyc │ │ │ │ ├── test_repl.cpython-39.opt-1.pyc │ │ │ │ ├── test_repl.cpython-39.opt-2.pyc │ │ │ │ ├── test_repl.cpython-39.pyc │ │ │ │ ├── test_reprlib.cpython-39.opt-1.pyc │ │ │ │ ├── test_reprlib.cpython-39.opt-2.pyc │ │ │ │ ├── test_reprlib.cpython-39.pyc │ │ │ │ ├── test_resource.cpython-39.opt-1.pyc │ │ │ │ ├── test_resource.cpython-39.opt-2.pyc │ │ │ │ ├── test_resource.cpython-39.pyc │ │ │ │ ├── test_richcmp.cpython-39.opt-1.pyc │ │ │ │ ├── test_richcmp.cpython-39.opt-2.pyc │ │ │ │ ├── test_richcmp.cpython-39.pyc │ │ │ │ ├── test_rlcompleter.cpython-39.opt-1.pyc │ │ │ │ ├── test_rlcompleter.cpython-39.opt-2.pyc │ │ │ │ ├── test_rlcompleter.cpython-39.pyc │ │ │ │ ├── test_robotparser.cpython-39.opt-1.pyc │ │ │ │ ├── test_robotparser.cpython-39.opt-2.pyc │ │ │ │ ├── test_robotparser.cpython-39.pyc │ │ │ │ ├── test_runpy.cpython-39.opt-1.pyc │ │ │ │ ├── test_runpy.cpython-39.opt-2.pyc │ │ │ │ ├── test_runpy.cpython-39.pyc │ │ │ │ ├── test_sax.cpython-39.opt-1.pyc │ │ │ │ ├── test_sax.cpython-39.opt-2.pyc │ │ │ │ ├── test_sax.cpython-39.pyc │ │ │ │ ├── test_sched.cpython-39.opt-1.pyc │ │ │ │ ├── test_sched.cpython-39.opt-2.pyc │ │ │ │ ├── test_sched.cpython-39.pyc │ │ │ │ ├── test_scope.cpython-39.opt-1.pyc │ │ │ │ ├── test_scope.cpython-39.opt-2.pyc │ │ │ │ ├── test_scope.cpython-39.pyc │ │ │ │ ├── test_script_helper.cpython-39.opt-1.pyc │ │ │ │ ├── test_script_helper.cpython-39.opt-2.pyc │ │ │ │ ├── test_script_helper.cpython-39.pyc │ │ │ │ ├── test_secrets.cpython-39.opt-1.pyc │ │ │ │ ├── test_secrets.cpython-39.opt-2.pyc │ │ │ │ ├── test_secrets.cpython-39.pyc │ │ │ │ ├── test_select.cpython-39.opt-1.pyc │ │ │ │ ├── test_select.cpython-39.opt-2.pyc │ │ │ │ ├── test_select.cpython-39.pyc │ │ │ │ ├── test_selectors.cpython-39.opt-1.pyc │ │ │ │ ├── test_selectors.cpython-39.opt-2.pyc │ │ │ │ ├── test_selectors.cpython-39.pyc │ │ │ │ ├── test_set.cpython-39.opt-1.pyc │ │ │ │ ├── test_set.cpython-39.opt-2.pyc │ │ │ │ ├── test_set.cpython-39.pyc │ │ │ │ ├── test_setcomps.cpython-39.opt-1.pyc │ │ │ │ ├── test_setcomps.cpython-39.opt-2.pyc │ │ │ │ ├── test_setcomps.cpython-39.pyc │ │ │ │ ├── test_shelve.cpython-39.opt-1.pyc │ │ │ │ ├── test_shelve.cpython-39.opt-2.pyc │ │ │ │ ├── test_shelve.cpython-39.pyc │ │ │ │ ├── test_shlex.cpython-39.opt-1.pyc │ │ │ │ ├── test_shlex.cpython-39.opt-2.pyc │ │ │ │ ├── test_shlex.cpython-39.pyc │ │ │ │ ├── test_shutil.cpython-39.opt-1.pyc │ │ │ │ ├── test_shutil.cpython-39.opt-2.pyc │ │ │ │ ├── test_shutil.cpython-39.pyc │ │ │ │ ├── test_signal.cpython-39.opt-1.pyc │ │ │ │ ├── test_signal.cpython-39.opt-2.pyc │ │ │ │ ├── test_signal.cpython-39.pyc │ │ │ │ ├── test_site.cpython-39.opt-1.pyc │ │ │ │ ├── test_site.cpython-39.opt-2.pyc │ │ │ │ ├── test_site.cpython-39.pyc │ │ │ │ ├── test_slice.cpython-39.opt-1.pyc │ │ │ │ ├── test_slice.cpython-39.opt-2.pyc │ │ │ │ ├── test_slice.cpython-39.pyc │ │ │ │ ├── test_smtpd.cpython-39.opt-1.pyc │ │ │ │ ├── test_smtpd.cpython-39.opt-2.pyc │ │ │ │ ├── test_smtpd.cpython-39.pyc │ │ │ │ ├── test_smtplib.cpython-39.opt-1.pyc │ │ │ │ ├── test_smtplib.cpython-39.opt-2.pyc │ │ │ │ ├── test_smtplib.cpython-39.pyc │ │ │ │ ├── test_smtpnet.cpython-39.opt-1.pyc │ │ │ │ ├── test_smtpnet.cpython-39.opt-2.pyc │ │ │ │ ├── test_smtpnet.cpython-39.pyc │ │ │ │ ├── test_sndhdr.cpython-39.opt-1.pyc │ │ │ │ ├── test_sndhdr.cpython-39.opt-2.pyc │ │ │ │ ├── test_sndhdr.cpython-39.pyc │ │ │ │ ├── test_socket.cpython-39.opt-1.pyc │ │ │ │ ├── test_socket.cpython-39.opt-2.pyc │ │ │ │ ├── test_socket.cpython-39.pyc │ │ │ │ ├── test_socketserver.cpython-39.opt-1.pyc │ │ │ │ ├── test_socketserver.cpython-39.opt-2.pyc │ │ │ │ ├── test_socketserver.cpython-39.pyc │ │ │ │ ├── test_sort.cpython-39.opt-1.pyc │ │ │ │ ├── test_sort.cpython-39.opt-2.pyc │ │ │ │ ├── test_sort.cpython-39.pyc │ │ │ │ ├── test_source_encoding.cpython-39.opt-1.pyc │ │ │ │ ├── test_source_encoding.cpython-39.opt-2.pyc │ │ │ │ ├── test_source_encoding.cpython-39.pyc │ │ │ │ ├── test_spwd.cpython-39.opt-1.pyc │ │ │ │ ├── test_spwd.cpython-39.opt-2.pyc │ │ │ │ ├── test_spwd.cpython-39.pyc │ │ │ │ ├── test_sqlite.cpython-39.opt-1.pyc │ │ │ │ ├── test_sqlite.cpython-39.opt-2.pyc │ │ │ │ ├── test_sqlite.cpython-39.pyc │ │ │ │ ├── test_ssl.cpython-39.opt-1.pyc │ │ │ │ ├── test_ssl.cpython-39.opt-2.pyc │ │ │ │ ├── test_ssl.cpython-39.pyc │ │ │ │ ├── test_startfile.cpython-39.opt-1.pyc │ │ │ │ ├── test_startfile.cpython-39.opt-2.pyc │ │ │ │ ├── test_startfile.cpython-39.pyc │ │ │ │ ├── test_stat.cpython-39.opt-1.pyc │ │ │ │ ├── test_stat.cpython-39.opt-2.pyc │ │ │ │ ├── test_stat.cpython-39.pyc │ │ │ │ ├── test_statistics.cpython-39.opt-1.pyc │ │ │ │ ├── test_statistics.cpython-39.opt-2.pyc │ │ │ │ ├── test_statistics.cpython-39.pyc │ │ │ │ ├── test_strftime.cpython-39.opt-1.pyc │ │ │ │ ├── test_strftime.cpython-39.opt-2.pyc │ │ │ │ ├── test_strftime.cpython-39.pyc │ │ │ │ ├── test_string.cpython-39.opt-1.pyc │ │ │ │ ├── test_string.cpython-39.opt-2.pyc │ │ │ │ ├── test_string.cpython-39.pyc │ │ │ │ ├── test_string_literals.cpython-39.opt-1.pyc │ │ │ │ ├── test_string_literals.cpython-39.opt-2.pyc │ │ │ │ ├── test_string_literals.cpython-39.pyc │ │ │ │ ├── test_stringprep.cpython-39.opt-1.pyc │ │ │ │ ├── test_stringprep.cpython-39.opt-2.pyc │ │ │ │ ├── test_stringprep.cpython-39.pyc │ │ │ │ ├── test_strptime.cpython-39.opt-1.pyc │ │ │ │ ├── test_strptime.cpython-39.opt-2.pyc │ │ │ │ ├── test_strptime.cpython-39.pyc │ │ │ │ ├── test_strtod.cpython-39.opt-1.pyc │ │ │ │ ├── test_strtod.cpython-39.opt-2.pyc │ │ │ │ ├── test_strtod.cpython-39.pyc │ │ │ │ ├── test_struct.cpython-39.opt-1.pyc │ │ │ │ ├── test_struct.cpython-39.opt-2.pyc │ │ │ │ ├── test_struct.cpython-39.pyc │ │ │ │ ├── test_structmembers.cpython-39.opt-1.pyc │ │ │ │ ├── test_structmembers.cpython-39.opt-2.pyc │ │ │ │ ├── test_structmembers.cpython-39.pyc │ │ │ │ ├── test_structseq.cpython-39.opt-1.pyc │ │ │ │ ├── test_structseq.cpython-39.opt-2.pyc │ │ │ │ ├── test_structseq.cpython-39.pyc │ │ │ │ ├── test_subclassinit.cpython-39.opt-1.pyc │ │ │ │ ├── test_subclassinit.cpython-39.opt-2.pyc │ │ │ │ ├── test_subclassinit.cpython-39.pyc │ │ │ │ ├── test_subprocess.cpython-39.opt-1.pyc │ │ │ │ ├── test_subprocess.cpython-39.opt-2.pyc │ │ │ │ ├── test_subprocess.cpython-39.pyc │ │ │ │ ├── test_sunau.cpython-39.opt-1.pyc │ │ │ │ ├── test_sunau.cpython-39.opt-2.pyc │ │ │ │ ├── test_sunau.cpython-39.pyc │ │ │ │ ├── test_sundry.cpython-39.opt-1.pyc │ │ │ │ ├── test_sundry.cpython-39.opt-2.pyc │ │ │ │ ├── test_sundry.cpython-39.pyc │ │ │ │ ├── test_super.cpython-39.opt-1.pyc │ │ │ │ ├── test_super.cpython-39.opt-2.pyc │ │ │ │ ├── test_super.cpython-39.pyc │ │ │ │ ├── test_support.cpython-39.opt-1.pyc │ │ │ │ ├── test_support.cpython-39.opt-2.pyc │ │ │ │ ├── test_support.cpython-39.pyc │ │ │ │ ├── test_symbol.cpython-39.opt-1.pyc │ │ │ │ ├── test_symbol.cpython-39.opt-2.pyc │ │ │ │ ├── test_symbol.cpython-39.pyc │ │ │ │ ├── test_symtable.cpython-39.opt-1.pyc │ │ │ │ ├── test_symtable.cpython-39.opt-2.pyc │ │ │ │ ├── test_symtable.cpython-39.pyc │ │ │ │ ├── test_syntax.cpython-39.opt-1.pyc │ │ │ │ ├── test_syntax.cpython-39.opt-2.pyc │ │ │ │ ├── test_syntax.cpython-39.pyc │ │ │ │ ├── test_sys.cpython-39.opt-1.pyc │ │ │ │ ├── test_sys.cpython-39.opt-2.pyc │ │ │ │ ├── test_sys.cpython-39.pyc │ │ │ │ ├── test_sys_setprofile.cpython-39.opt-1.pyc │ │ │ │ ├── test_sys_setprofile.cpython-39.opt-2.pyc │ │ │ │ ├── test_sys_setprofile.cpython-39.pyc │ │ │ │ ├── test_sys_settrace.cpython-39.opt-1.pyc │ │ │ │ ├── test_sys_settrace.cpython-39.opt-2.pyc │ │ │ │ ├── test_sys_settrace.cpython-39.pyc │ │ │ │ ├── test_sysconfig.cpython-39.opt-1.pyc │ │ │ │ ├── test_sysconfig.cpython-39.opt-2.pyc │ │ │ │ ├── test_sysconfig.cpython-39.pyc │ │ │ │ ├── test_syslog.cpython-39.opt-1.pyc │ │ │ │ ├── test_syslog.cpython-39.opt-2.pyc │ │ │ │ ├── test_syslog.cpython-39.pyc │ │ │ │ ├── test_tabnanny.cpython-39.opt-1.pyc │ │ │ │ ├── test_tabnanny.cpython-39.opt-2.pyc │ │ │ │ ├── test_tabnanny.cpython-39.pyc │ │ │ │ ├── test_tarfile.cpython-39.opt-1.pyc │ │ │ │ ├── test_tarfile.cpython-39.opt-2.pyc │ │ │ │ ├── test_tarfile.cpython-39.pyc │ │ │ │ ├── test_tcl.cpython-39.opt-1.pyc │ │ │ │ ├── test_tcl.cpython-39.opt-2.pyc │ │ │ │ ├── test_tcl.cpython-39.pyc │ │ │ │ ├── test_telnetlib.cpython-39.opt-1.pyc │ │ │ │ ├── test_telnetlib.cpython-39.opt-2.pyc │ │ │ │ ├── test_telnetlib.cpython-39.pyc │ │ │ │ ├── test_tempfile.cpython-39.opt-1.pyc │ │ │ │ ├── test_tempfile.cpython-39.opt-2.pyc │ │ │ │ ├── test_tempfile.cpython-39.pyc │ │ │ │ ├── test_textwrap.cpython-39.opt-1.pyc │ │ │ │ ├── test_textwrap.cpython-39.opt-2.pyc │ │ │ │ ├── test_textwrap.cpython-39.pyc │ │ │ │ ├── test_thread.cpython-39.opt-1.pyc │ │ │ │ ├── test_thread.cpython-39.opt-2.pyc │ │ │ │ ├── test_thread.cpython-39.pyc │ │ │ │ ├── test_threadedtempfile.cpython-39.opt-1.pyc │ │ │ │ ├── test_threadedtempfile.cpython-39.opt-2.pyc │ │ │ │ ├── test_threadedtempfile.cpython-39.pyc │ │ │ │ ├── test_threading.cpython-39.opt-1.pyc │ │ │ │ ├── test_threading.cpython-39.opt-2.pyc │ │ │ │ ├── test_threading.cpython-39.pyc │ │ │ │ ├── test_threading_local.cpython-39.opt-1.pyc │ │ │ │ ├── test_threading_local.cpython-39.opt-2.pyc │ │ │ │ ├── test_threading_local.cpython-39.pyc │ │ │ │ ├── test_threadsignals.cpython-39.opt-1.pyc │ │ │ │ ├── test_threadsignals.cpython-39.opt-2.pyc │ │ │ │ ├── test_threadsignals.cpython-39.pyc │ │ │ │ ├── test_time.cpython-39.opt-1.pyc │ │ │ │ ├── test_time.cpython-39.opt-2.pyc │ │ │ │ ├── test_time.cpython-39.pyc │ │ │ │ ├── test_timeit.cpython-39.opt-1.pyc │ │ │ │ ├── test_timeit.cpython-39.opt-2.pyc │ │ │ │ ├── test_timeit.cpython-39.pyc │ │ │ │ ├── test_timeout.cpython-39.opt-1.pyc │ │ │ │ ├── test_timeout.cpython-39.opt-2.pyc │ │ │ │ ├── test_timeout.cpython-39.pyc │ │ │ │ ├── test_tix.cpython-39.opt-1.pyc │ │ │ │ ├── test_tix.cpython-39.opt-2.pyc │ │ │ │ ├── test_tix.cpython-39.pyc │ │ │ │ ├── test_tk.cpython-39.opt-1.pyc │ │ │ │ ├── test_tk.cpython-39.opt-2.pyc │ │ │ │ ├── test_tk.cpython-39.pyc │ │ │ │ ├── test_tokenize.cpython-39.opt-1.pyc │ │ │ │ ├── test_tokenize.cpython-39.opt-2.pyc │ │ │ │ ├── test_tokenize.cpython-39.pyc │ │ │ │ ├── test_trace.cpython-39.opt-1.pyc │ │ │ │ ├── test_trace.cpython-39.opt-2.pyc │ │ │ │ ├── test_trace.cpython-39.pyc │ │ │ │ ├── test_traceback.cpython-39.opt-1.pyc │ │ │ │ ├── test_traceback.cpython-39.opt-2.pyc │ │ │ │ ├── test_traceback.cpython-39.pyc │ │ │ │ ├── test_tracemalloc.cpython-39.opt-1.pyc │ │ │ │ ├── test_tracemalloc.cpython-39.opt-2.pyc │ │ │ │ ├── test_tracemalloc.cpython-39.pyc │ │ │ │ ├── test_ttk_guionly.cpython-39.opt-1.pyc │ │ │ │ ├── test_ttk_guionly.cpython-39.opt-2.pyc │ │ │ │ ├── test_ttk_guionly.cpython-39.pyc │ │ │ │ ├── test_ttk_textonly.cpython-39.opt-1.pyc │ │ │ │ ├── test_ttk_textonly.cpython-39.opt-2.pyc │ │ │ │ ├── test_ttk_textonly.cpython-39.pyc │ │ │ │ ├── test_tuple.cpython-39.opt-1.pyc │ │ │ │ ├── test_tuple.cpython-39.opt-2.pyc │ │ │ │ ├── test_tuple.cpython-39.pyc │ │ │ │ ├── test_turtle.cpython-39.opt-1.pyc │ │ │ │ ├── test_turtle.cpython-39.opt-2.pyc │ │ │ │ ├── test_turtle.cpython-39.pyc │ │ │ │ ├── test_type_comments.cpython-39.opt-1.pyc │ │ │ │ ├── test_type_comments.cpython-39.opt-2.pyc │ │ │ │ ├── test_type_comments.cpython-39.pyc │ │ │ │ ├── test_typechecks.cpython-39.opt-1.pyc │ │ │ │ ├── test_typechecks.cpython-39.opt-2.pyc │ │ │ │ ├── test_typechecks.cpython-39.pyc │ │ │ │ ├── test_types.cpython-39.opt-1.pyc │ │ │ │ ├── test_types.cpython-39.opt-2.pyc │ │ │ │ ├── test_types.cpython-39.pyc │ │ │ │ ├── test_typing.cpython-39.opt-1.pyc │ │ │ │ ├── test_typing.cpython-39.opt-2.pyc │ │ │ │ ├── test_typing.cpython-39.pyc │ │ │ │ ├── test_ucn.cpython-39.opt-1.pyc │ │ │ │ ├── test_ucn.cpython-39.opt-2.pyc │ │ │ │ ├── test_ucn.cpython-39.pyc │ │ │ │ ├── test_unary.cpython-39.opt-1.pyc │ │ │ │ ├── test_unary.cpython-39.opt-2.pyc │ │ │ │ ├── test_unary.cpython-39.pyc │ │ │ │ ├── test_unicode.cpython-39.opt-1.pyc │ │ │ │ ├── test_unicode.cpython-39.opt-2.pyc │ │ │ │ ├── test_unicode.cpython-39.pyc │ │ │ │ ├── test_unicode_file.cpython-39.opt-1.pyc │ │ │ │ ├── test_unicode_file.cpython-39.opt-2.pyc │ │ │ │ ├── test_unicode_file.cpython-39.pyc │ │ │ │ ├── test_unicode_file_functions.cpython-39.opt-1.pyc │ │ │ │ ├── test_unicode_file_functions.cpython-39.opt-2.pyc │ │ │ │ ├── test_unicode_file_functions.cpython-39.pyc │ │ │ │ ├── test_unicode_identifiers.cpython-39.opt-1.pyc │ │ │ │ ├── test_unicode_identifiers.cpython-39.opt-2.pyc │ │ │ │ ├── test_unicode_identifiers.cpython-39.pyc │ │ │ │ ├── test_unicodedata.cpython-39.opt-1.pyc │ │ │ │ ├── test_unicodedata.cpython-39.opt-2.pyc │ │ │ │ ├── test_unicodedata.cpython-39.pyc │ │ │ │ ├── test_unittest.cpython-39.opt-1.pyc │ │ │ │ ├── test_unittest.cpython-39.opt-2.pyc │ │ │ │ ├── test_unittest.cpython-39.pyc │ │ │ │ ├── test_univnewlines.cpython-39.opt-1.pyc │ │ │ │ ├── test_univnewlines.cpython-39.opt-2.pyc │ │ │ │ ├── test_univnewlines.cpython-39.pyc │ │ │ │ ├── test_unpack.cpython-39.opt-1.pyc │ │ │ │ ├── test_unpack.cpython-39.opt-2.pyc │ │ │ │ ├── test_unpack.cpython-39.pyc │ │ │ │ ├── test_unpack_ex.cpython-39.opt-1.pyc │ │ │ │ ├── test_unpack_ex.cpython-39.opt-2.pyc │ │ │ │ ├── test_unpack_ex.cpython-39.pyc │ │ │ │ ├── test_unparse.cpython-39.opt-1.pyc │ │ │ │ ├── test_unparse.cpython-39.opt-2.pyc │ │ │ │ ├── test_unparse.cpython-39.pyc │ │ │ │ ├── test_urllib.cpython-39.opt-1.pyc │ │ │ │ ├── test_urllib.cpython-39.opt-2.pyc │ │ │ │ ├── test_urllib.cpython-39.pyc │ │ │ │ ├── test_urllib2.cpython-39.opt-1.pyc │ │ │ │ ├── test_urllib2.cpython-39.opt-2.pyc │ │ │ │ ├── test_urllib2.cpython-39.pyc │ │ │ │ ├── test_urllib2_localnet.cpython-39.opt-1.pyc │ │ │ │ ├── test_urllib2_localnet.cpython-39.opt-2.pyc │ │ │ │ ├── test_urllib2_localnet.cpython-39.pyc │ │ │ │ ├── test_urllib2net.cpython-39.opt-1.pyc │ │ │ │ ├── test_urllib2net.cpython-39.opt-2.pyc │ │ │ │ ├── test_urllib2net.cpython-39.pyc │ │ │ │ ├── test_urllib_response.cpython-39.opt-1.pyc │ │ │ │ ├── test_urllib_response.cpython-39.opt-2.pyc │ │ │ │ ├── test_urllib_response.cpython-39.pyc │ │ │ │ ├── test_urllibnet.cpython-39.opt-1.pyc │ │ │ │ ├── test_urllibnet.cpython-39.opt-2.pyc │ │ │ │ ├── test_urllibnet.cpython-39.pyc │ │ │ │ ├── test_urlparse.cpython-39.opt-1.pyc │ │ │ │ ├── test_urlparse.cpython-39.opt-2.pyc │ │ │ │ ├── test_urlparse.cpython-39.pyc │ │ │ │ ├── test_userdict.cpython-39.opt-1.pyc │ │ │ │ ├── test_userdict.cpython-39.opt-2.pyc │ │ │ │ ├── test_userdict.cpython-39.pyc │ │ │ │ ├── test_userlist.cpython-39.opt-1.pyc │ │ │ │ ├── test_userlist.cpython-39.opt-2.pyc │ │ │ │ ├── test_userlist.cpython-39.pyc │ │ │ │ ├── test_userstring.cpython-39.opt-1.pyc │ │ │ │ ├── test_userstring.cpython-39.opt-2.pyc │ │ │ │ ├── test_userstring.cpython-39.pyc │ │ │ │ ├── test_utf8_mode.cpython-39.opt-1.pyc │ │ │ │ ├── test_utf8_mode.cpython-39.opt-2.pyc │ │ │ │ ├── test_utf8_mode.cpython-39.pyc │ │ │ │ ├── test_utf8source.cpython-39.opt-1.pyc │ │ │ │ ├── test_utf8source.cpython-39.opt-2.pyc │ │ │ │ ├── test_utf8source.cpython-39.pyc │ │ │ │ ├── test_uu.cpython-39.opt-1.pyc │ │ │ │ ├── test_uu.cpython-39.opt-2.pyc │ │ │ │ ├── test_uu.cpython-39.pyc │ │ │ │ ├── test_uuid.cpython-39.opt-1.pyc │ │ │ │ ├── test_uuid.cpython-39.opt-2.pyc │ │ │ │ ├── test_uuid.cpython-39.pyc │ │ │ │ ├── test_venv.cpython-39.opt-1.pyc │ │ │ │ ├── test_venv.cpython-39.opt-2.pyc │ │ │ │ ├── test_venv.cpython-39.pyc │ │ │ │ ├── test_wait3.cpython-39.opt-1.pyc │ │ │ │ ├── test_wait3.cpython-39.opt-2.pyc │ │ │ │ ├── test_wait3.cpython-39.pyc │ │ │ │ ├── test_wait4.cpython-39.opt-1.pyc │ │ │ │ ├── test_wait4.cpython-39.opt-2.pyc │ │ │ │ ├── test_wait4.cpython-39.pyc │ │ │ │ ├── test_wave.cpython-39.opt-1.pyc │ │ │ │ ├── test_wave.cpython-39.opt-2.pyc │ │ │ │ ├── test_wave.cpython-39.pyc │ │ │ │ ├── test_weakref.cpython-39.opt-1.pyc │ │ │ │ ├── test_weakref.cpython-39.opt-2.pyc │ │ │ │ ├── test_weakref.cpython-39.pyc │ │ │ │ ├── test_weakset.cpython-39.opt-1.pyc │ │ │ │ ├── test_weakset.cpython-39.opt-2.pyc │ │ │ │ ├── test_weakset.cpython-39.pyc │ │ │ │ ├── test_webbrowser.cpython-39.opt-1.pyc │ │ │ │ ├── test_webbrowser.cpython-39.opt-2.pyc │ │ │ │ ├── test_webbrowser.cpython-39.pyc │ │ │ │ ├── test_winconsoleio.cpython-39.opt-1.pyc │ │ │ │ ├── test_winconsoleio.cpython-39.opt-2.pyc │ │ │ │ ├── test_winconsoleio.cpython-39.pyc │ │ │ │ ├── test_winreg.cpython-39.opt-1.pyc │ │ │ │ ├── test_winreg.cpython-39.opt-2.pyc │ │ │ │ ├── test_winreg.cpython-39.pyc │ │ │ │ ├── test_winsound.cpython-39.opt-1.pyc │ │ │ │ ├── test_winsound.cpython-39.opt-2.pyc │ │ │ │ ├── test_winsound.cpython-39.pyc │ │ │ │ ├── test_with.cpython-39.opt-1.pyc │ │ │ │ ├── test_with.cpython-39.opt-2.pyc │ │ │ │ ├── test_with.cpython-39.pyc │ │ │ │ ├── test_wsgiref.cpython-39.opt-1.pyc │ │ │ │ ├── test_wsgiref.cpython-39.opt-2.pyc │ │ │ │ ├── test_wsgiref.cpython-39.pyc │ │ │ │ ├── test_xdrlib.cpython-39.opt-1.pyc │ │ │ │ ├── test_xdrlib.cpython-39.opt-2.pyc │ │ │ │ ├── test_xdrlib.cpython-39.pyc │ │ │ │ ├── test_xml_dom_minicompat.cpython-39.opt-1.pyc │ │ │ │ ├── test_xml_dom_minicompat.cpython-39.opt-2.pyc │ │ │ │ ├── test_xml_dom_minicompat.cpython-39.pyc │ │ │ │ ├── test_xml_etree.cpython-39.opt-1.pyc │ │ │ │ ├── test_xml_etree.cpython-39.opt-2.pyc │ │ │ │ ├── test_xml_etree.cpython-39.pyc │ │ │ │ ├── test_xml_etree_c.cpython-39.opt-1.pyc │ │ │ │ ├── test_xml_etree_c.cpython-39.opt-2.pyc │ │ │ │ ├── test_xml_etree_c.cpython-39.pyc │ │ │ │ ├── test_xmlrpc.cpython-39.opt-1.pyc │ │ │ │ ├── test_xmlrpc.cpython-39.opt-2.pyc │ │ │ │ ├── test_xmlrpc.cpython-39.pyc │ │ │ │ ├── test_xmlrpc_net.cpython-39.opt-1.pyc │ │ │ │ ├── test_xmlrpc_net.cpython-39.opt-2.pyc │ │ │ │ ├── test_xmlrpc_net.cpython-39.pyc │ │ │ │ ├── test_xxtestfuzz.cpython-39.opt-1.pyc │ │ │ │ ├── test_xxtestfuzz.cpython-39.opt-2.pyc │ │ │ │ ├── test_xxtestfuzz.cpython-39.pyc │ │ │ │ ├── test_yield_from.cpython-39.opt-1.pyc │ │ │ │ ├── test_yield_from.cpython-39.opt-2.pyc │ │ │ │ ├── test_yield_from.cpython-39.pyc │ │ │ │ ├── test_zipapp.cpython-39.opt-1.pyc │ │ │ │ ├── test_zipapp.cpython-39.opt-2.pyc │ │ │ │ ├── test_zipapp.cpython-39.pyc │ │ │ │ ├── test_zipfile.cpython-39.opt-1.pyc │ │ │ │ ├── test_zipfile.cpython-39.opt-2.pyc │ │ │ │ ├── test_zipfile.cpython-39.pyc │ │ │ │ ├── test_zipfile64.cpython-39.opt-1.pyc │ │ │ │ ├── test_zipfile64.cpython-39.opt-2.pyc │ │ │ │ ├── test_zipfile64.cpython-39.pyc │ │ │ │ ├── test_zipimport.cpython-39.opt-1.pyc │ │ │ │ ├── test_zipimport.cpython-39.opt-2.pyc │ │ │ │ ├── test_zipimport.cpython-39.pyc │ │ │ │ ├── test_zipimport_support.cpython-39.opt-1.pyc │ │ │ │ ├── test_zipimport_support.cpython-39.opt-2.pyc │ │ │ │ ├── test_zipimport_support.cpython-39.pyc │ │ │ │ ├── test_zlib.cpython-39.opt-1.pyc │ │ │ │ ├── test_zlib.cpython-39.opt-2.pyc │ │ │ │ ├── test_zlib.cpython-39.pyc │ │ │ │ ├── testcodec.cpython-39.opt-1.pyc │ │ │ │ ├── testcodec.cpython-39.opt-2.pyc │ │ │ │ ├── testcodec.cpython-39.pyc │ │ │ │ ├── tf_inherit_check.cpython-39.opt-1.pyc │ │ │ │ ├── tf_inherit_check.cpython-39.opt-2.pyc │ │ │ │ ├── tf_inherit_check.cpython-39.pyc │ │ │ │ ├── time_hashlib.cpython-39.opt-1.pyc │ │ │ │ ├── time_hashlib.cpython-39.opt-2.pyc │ │ │ │ ├── time_hashlib.cpython-39.pyc │ │ │ │ ├── win_console_handler.cpython-39.opt-1.pyc │ │ │ │ ├── win_console_handler.cpython-39.opt-2.pyc │ │ │ │ ├── win_console_handler.cpython-39.pyc │ │ │ │ ├── xmltests.cpython-39.opt-1.pyc │ │ │ │ ├── xmltests.cpython-39.opt-2.pyc │ │ │ │ └── xmltests.cpython-39.pyc │ │ │ ├── _test_multiprocessing.py │ │ │ ├── allsans.pem │ │ │ ├── ann_module.py │ │ │ ├── ann_module2.py │ │ │ ├── ann_module3.py │ │ │ ├── audiodata │ │ │ │ ├── pluck-alaw.aifc │ │ │ │ ├── pluck-pcm16.aiff │ │ │ │ ├── pluck-pcm16.au │ │ │ │ ├── pluck-pcm16.wav │ │ │ │ ├── pluck-pcm24.aiff │ │ │ │ ├── pluck-pcm24.au │ │ │ │ ├── pluck-pcm24.wav │ │ │ │ ├── pluck-pcm32.aiff │ │ │ │ ├── pluck-pcm32.au │ │ │ │ ├── pluck-pcm32.wav │ │ │ │ ├── pluck-pcm8.aiff │ │ │ │ ├── pluck-pcm8.au │ │ │ │ ├── pluck-pcm8.wav │ │ │ │ ├── pluck-ulaw.aifc │ │ │ │ └── pluck-ulaw.au │ │ │ ├── audiotest.au │ │ │ ├── audiotests.py │ │ │ ├── audit-tests.py │ │ │ ├── autotest.py │ │ │ ├── bad_coding.py │ │ │ ├── bad_coding2.py │ │ │ ├── bad_getattr.py │ │ │ ├── bad_getattr2.py │ │ │ ├── bad_getattr3.py │ │ │ ├── badcert.pem │ │ │ ├── badkey.pem │ │ │ ├── badsyntax_3131.py │ │ │ ├── badsyntax_future10.py │ │ │ ├── badsyntax_future3.py │ │ │ ├── badsyntax_future4.py │ │ │ ├── badsyntax_future5.py │ │ │ ├── badsyntax_future6.py │ │ │ ├── badsyntax_future7.py │ │ │ ├── badsyntax_future8.py │ │ │ ├── badsyntax_future9.py │ │ │ ├── badsyntax_pep3120.py │ │ │ ├── bisect_cmd.py │ │ │ ├── capath │ │ │ │ ├── 4e1295a3.0 │ │ │ │ ├── 5ed36f99.0 │ │ │ │ ├── 6e88d7b8.0 │ │ │ │ ├── 99d0fa06.0 │ │ │ │ ├── b1930218.0 │ │ │ │ └── ceff1710.0 │ │ │ ├── cfgparser.1 │ │ │ ├── cfgparser.2 │ │ │ ├── cfgparser.3 │ │ │ ├── cjkencodings │ │ │ │ ├── big5-utf8.txt │ │ │ │ ├── big5.txt │ │ │ │ ├── big5hkscs-utf8.txt │ │ │ │ ├── big5hkscs.txt │ │ │ │ ├── cp949-utf8.txt │ │ │ │ ├── cp949.txt │ │ │ │ ├── euc_jisx0213-utf8.txt │ │ │ │ ├── euc_jisx0213.txt │ │ │ │ ├── euc_jp-utf8.txt │ │ │ │ ├── euc_jp.txt │ │ │ │ ├── euc_kr-utf8.txt │ │ │ │ ├── euc_kr.txt │ │ │ │ ├── gb18030-utf8.txt │ │ │ │ ├── gb18030.txt │ │ │ │ ├── gb2312-utf8.txt │ │ │ │ ├── gb2312.txt │ │ │ │ ├── gbk-utf8.txt │ │ │ │ ├── gbk.txt │ │ │ │ ├── hz-utf8.txt │ │ │ │ ├── hz.txt │ │ │ │ ├── iso2022_jp-utf8.txt │ │ │ │ ├── iso2022_jp.txt │ │ │ │ ├── iso2022_kr-utf8.txt │ │ │ │ ├── iso2022_kr.txt │ │ │ │ ├── johab-utf8.txt │ │ │ │ ├── johab.txt │ │ │ │ ├── shift_jis-utf8.txt │ │ │ │ ├── shift_jis.txt │ │ │ │ ├── shift_jisx0213-utf8.txt │ │ │ │ └── shift_jisx0213.txt │ │ │ ├── clinic.test │ │ │ ├── cmath_testcases.txt │ │ │ ├── coding20731.py │ │ │ ├── crashers │ │ │ │ ├── README │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── bogus_code_obj.cpython-39.opt-1.pyc │ │ │ │ │ ├── bogus_code_obj.cpython-39.opt-2.pyc │ │ │ │ │ ├── bogus_code_obj.cpython-39.pyc │ │ │ │ │ ├── gc_inspection.cpython-39.opt-1.pyc │ │ │ │ │ ├── gc_inspection.cpython-39.opt-2.pyc │ │ │ │ │ ├── gc_inspection.cpython-39.pyc │ │ │ │ │ ├── infinite_loop_re.cpython-39.opt-1.pyc │ │ │ │ │ ├── infinite_loop_re.cpython-39.opt-2.pyc │ │ │ │ │ ├── infinite_loop_re.cpython-39.pyc │ │ │ │ │ ├── mutation_inside_cyclegc.cpython-39.opt-1.pyc │ │ │ │ │ ├── mutation_inside_cyclegc.cpython-39.opt-2.pyc │ │ │ │ │ ├── mutation_inside_cyclegc.cpython-39.pyc │ │ │ │ │ ├── recursive_call.cpython-39.opt-1.pyc │ │ │ │ │ ├── recursive_call.cpython-39.opt-2.pyc │ │ │ │ │ ├── recursive_call.cpython-39.pyc │ │ │ │ │ ├── trace_at_recursion_limit.cpython-39.opt-1.pyc │ │ │ │ │ ├── trace_at_recursion_limit.cpython-39.opt-2.pyc │ │ │ │ │ ├── trace_at_recursion_limit.cpython-39.pyc │ │ │ │ │ ├── underlying_dict.cpython-39.opt-1.pyc │ │ │ │ │ ├── underlying_dict.cpython-39.opt-2.pyc │ │ │ │ │ └── underlying_dict.cpython-39.pyc │ │ │ │ ├── bogus_code_obj.py │ │ │ │ ├── gc_inspection.py │ │ │ │ ├── infinite_loop_re.py │ │ │ │ ├── mutation_inside_cyclegc.py │ │ │ │ ├── recursive_call.py │ │ │ │ ├── trace_at_recursion_limit.py │ │ │ │ └── underlying_dict.py │ │ │ ├── curses_tests.py │ │ │ ├── data │ │ │ │ └── README │ │ │ ├── dataclass_module_1.py │ │ │ ├── dataclass_module_1_str.py │ │ │ ├── dataclass_module_2.py │ │ │ ├── dataclass_module_2_str.py │ │ │ ├── dataclass_textanno.py │ │ │ ├── datetimetester.py │ │ │ ├── decimaltestdata │ │ │ │ ├── abs.decTest │ │ │ │ ├── add.decTest │ │ │ │ ├── and.decTest │ │ │ │ ├── base.decTest │ │ │ │ ├── clamp.decTest │ │ │ │ ├── class.decTest │ │ │ │ ├── compare.decTest │ │ │ │ ├── comparetotal.decTest │ │ │ │ ├── comparetotmag.decTest │ │ │ │ ├── copy.decTest │ │ │ │ ├── copyabs.decTest │ │ │ │ ├── copynegate.decTest │ │ │ │ ├── copysign.decTest │ │ │ │ ├── ddAbs.decTest │ │ │ │ ├── ddAdd.decTest │ │ │ │ ├── ddAnd.decTest │ │ │ │ ├── ddBase.decTest │ │ │ │ ├── ddCanonical.decTest │ │ │ │ ├── ddClass.decTest │ │ │ │ ├── ddCompare.decTest │ │ │ │ ├── ddCompareSig.decTest │ │ │ │ ├── ddCompareTotal.decTest │ │ │ │ ├── ddCompareTotalMag.decTest │ │ │ │ ├── ddCopy.decTest │ │ │ │ ├── ddCopyAbs.decTest │ │ │ │ ├── ddCopyNegate.decTest │ │ │ │ ├── ddCopySign.decTest │ │ │ │ ├── ddDivide.decTest │ │ │ │ ├── ddDivideInt.decTest │ │ │ │ ├── ddEncode.decTest │ │ │ │ ├── ddFMA.decTest │ │ │ │ ├── ddInvert.decTest │ │ │ │ ├── ddLogB.decTest │ │ │ │ ├── ddMax.decTest │ │ │ │ ├── ddMaxMag.decTest │ │ │ │ ├── ddMin.decTest │ │ │ │ ├── ddMinMag.decTest │ │ │ │ ├── ddMinus.decTest │ │ │ │ ├── ddMultiply.decTest │ │ │ │ ├── ddNextMinus.decTest │ │ │ │ ├── ddNextPlus.decTest │ │ │ │ ├── ddNextToward.decTest │ │ │ │ ├── ddOr.decTest │ │ │ │ ├── ddPlus.decTest │ │ │ │ ├── ddQuantize.decTest │ │ │ │ ├── ddReduce.decTest │ │ │ │ ├── ddRemainder.decTest │ │ │ │ ├── ddRemainderNear.decTest │ │ │ │ ├── ddRotate.decTest │ │ │ │ ├── ddSameQuantum.decTest │ │ │ │ ├── ddScaleB.decTest │ │ │ │ ├── ddShift.decTest │ │ │ │ ├── ddSubtract.decTest │ │ │ │ ├── ddToIntegral.decTest │ │ │ │ ├── ddXor.decTest │ │ │ │ ├── decDouble.decTest │ │ │ │ ├── decQuad.decTest │ │ │ │ ├── decSingle.decTest │ │ │ │ ├── divide.decTest │ │ │ │ ├── divideint.decTest │ │ │ │ ├── dqAbs.decTest │ │ │ │ ├── dqAdd.decTest │ │ │ │ ├── dqAnd.decTest │ │ │ │ ├── dqBase.decTest │ │ │ │ ├── dqCanonical.decTest │ │ │ │ ├── dqClass.decTest │ │ │ │ ├── dqCompare.decTest │ │ │ │ ├── dqCompareSig.decTest │ │ │ │ ├── dqCompareTotal.decTest │ │ │ │ ├── dqCompareTotalMag.decTest │ │ │ │ ├── dqCopy.decTest │ │ │ │ ├── dqCopyAbs.decTest │ │ │ │ ├── dqCopyNegate.decTest │ │ │ │ ├── dqCopySign.decTest │ │ │ │ ├── dqDivide.decTest │ │ │ │ ├── dqDivideInt.decTest │ │ │ │ ├── dqEncode.decTest │ │ │ │ ├── dqFMA.decTest │ │ │ │ ├── dqInvert.decTest │ │ │ │ ├── dqLogB.decTest │ │ │ │ ├── dqMax.decTest │ │ │ │ ├── dqMaxMag.decTest │ │ │ │ ├── dqMin.decTest │ │ │ │ ├── dqMinMag.decTest │ │ │ │ ├── dqMinus.decTest │ │ │ │ ├── dqMultiply.decTest │ │ │ │ ├── dqNextMinus.decTest │ │ │ │ ├── dqNextPlus.decTest │ │ │ │ ├── dqNextToward.decTest │ │ │ │ ├── dqOr.decTest │ │ │ │ ├── dqPlus.decTest │ │ │ │ ├── dqQuantize.decTest │ │ │ │ ├── dqReduce.decTest │ │ │ │ ├── dqRemainder.decTest │ │ │ │ ├── dqRemainderNear.decTest │ │ │ │ ├── dqRotate.decTest │ │ │ │ ├── dqSameQuantum.decTest │ │ │ │ ├── dqScaleB.decTest │ │ │ │ ├── dqShift.decTest │ │ │ │ ├── dqSubtract.decTest │ │ │ │ ├── dqToIntegral.decTest │ │ │ │ ├── dqXor.decTest │ │ │ │ ├── dsBase.decTest │ │ │ │ ├── dsEncode.decTest │ │ │ │ ├── exp.decTest │ │ │ │ ├── extra.decTest │ │ │ │ ├── fma.decTest │ │ │ │ ├── inexact.decTest │ │ │ │ ├── invert.decTest │ │ │ │ ├── ln.decTest │ │ │ │ ├── log10.decTest │ │ │ │ ├── logb.decTest │ │ │ │ ├── max.decTest │ │ │ │ ├── maxmag.decTest │ │ │ │ ├── min.decTest │ │ │ │ ├── minmag.decTest │ │ │ │ ├── minus.decTest │ │ │ │ ├── multiply.decTest │ │ │ │ ├── nextminus.decTest │ │ │ │ ├── nextplus.decTest │ │ │ │ ├── nexttoward.decTest │ │ │ │ ├── or.decTest │ │ │ │ ├── plus.decTest │ │ │ │ ├── power.decTest │ │ │ │ ├── powersqrt.decTest │ │ │ │ ├── quantize.decTest │ │ │ │ ├── randomBound32.decTest │ │ │ │ ├── randoms.decTest │ │ │ │ ├── reduce.decTest │ │ │ │ ├── remainder.decTest │ │ │ │ ├── remainderNear.decTest │ │ │ │ ├── rescale.decTest │ │ │ │ ├── rotate.decTest │ │ │ │ ├── rounding.decTest │ │ │ │ ├── samequantum.decTest │ │ │ │ ├── scaleb.decTest │ │ │ │ ├── shift.decTest │ │ │ │ ├── squareroot.decTest │ │ │ │ ├── subtract.decTest │ │ │ │ ├── testall.decTest │ │ │ │ ├── tointegral.decTest │ │ │ │ ├── tointegralx.decTest │ │ │ │ └── xor.decTest │ │ │ ├── dis_module.py │ │ │ ├── doctest_aliases.py │ │ │ ├── double_const.py │ │ │ ├── dtracedata │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── call_stack.cpython-39.opt-1.pyc │ │ │ │ │ ├── call_stack.cpython-39.opt-2.pyc │ │ │ │ │ ├── call_stack.cpython-39.pyc │ │ │ │ │ ├── gc.cpython-39.opt-1.pyc │ │ │ │ │ ├── gc.cpython-39.opt-2.pyc │ │ │ │ │ ├── gc.cpython-39.pyc │ │ │ │ │ ├── instance.cpython-39.opt-1.pyc │ │ │ │ │ ├── instance.cpython-39.opt-2.pyc │ │ │ │ │ ├── instance.cpython-39.pyc │ │ │ │ │ ├── line.cpython-39.opt-1.pyc │ │ │ │ │ ├── line.cpython-39.opt-2.pyc │ │ │ │ │ └── line.cpython-39.pyc │ │ │ │ ├── assert_usable.d │ │ │ │ ├── assert_usable.stp │ │ │ │ ├── call_stack.d │ │ │ │ ├── call_stack.d.expected │ │ │ │ ├── call_stack.py │ │ │ │ ├── call_stack.stp │ │ │ │ ├── call_stack.stp.expected │ │ │ │ ├── gc.d │ │ │ │ ├── gc.d.expected │ │ │ │ ├── gc.py │ │ │ │ ├── gc.stp │ │ │ │ ├── gc.stp.expected │ │ │ │ ├── instance.py │ │ │ │ ├── line.d │ │ │ │ ├── line.d.expected │ │ │ │ └── line.py │ │ │ ├── eintrdata │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── eintr_tester.cpython-39.opt-1.pyc │ │ │ │ │ ├── eintr_tester.cpython-39.opt-2.pyc │ │ │ │ │ └── eintr_tester.cpython-39.pyc │ │ │ │ └── eintr_tester.py │ │ │ ├── empty.vbs │ │ │ ├── encoded_modules │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── module_iso_8859_1.cpython-39.opt-1.pyc │ │ │ │ │ ├── module_iso_8859_1.cpython-39.opt-2.pyc │ │ │ │ │ ├── module_iso_8859_1.cpython-39.pyc │ │ │ │ │ ├── module_koi8_r.cpython-39.opt-1.pyc │ │ │ │ │ ├── module_koi8_r.cpython-39.opt-2.pyc │ │ │ │ │ └── module_koi8_r.cpython-39.pyc │ │ │ │ ├── module_iso_8859_1.py │ │ │ │ └── module_koi8_r.py │ │ │ ├── exception_hierarchy.txt │ │ │ ├── ffdh3072.pem │ │ │ ├── final_a.py │ │ │ ├── final_b.py │ │ │ ├── floating_points.txt │ │ │ ├── fork_wait.py │ │ │ ├── formatfloat_testcases.txt │ │ │ ├── future_test1.py │ │ │ ├── future_test2.py │ │ │ ├── gdb_sample.py │ │ │ ├── good_getattr.py │ │ │ ├── idnsans.pem │ │ │ ├── ieee754.txt │ │ │ ├── imghdrdata │ │ │ │ ├── python.bmp │ │ │ │ ├── python.exr │ │ │ │ ├── python.gif │ │ │ │ ├── python.jpg │ │ │ │ ├── python.pbm │ │ │ │ ├── python.pgm │ │ │ │ ├── python.png │ │ │ │ ├── python.ppm │ │ │ │ ├── python.ras │ │ │ │ ├── python.sgi │ │ │ │ ├── python.tiff │ │ │ │ ├── python.webp │ │ │ │ └── python.xbm │ │ │ ├── imp_dummy.py │ │ │ ├── inspect_fodder.py │ │ │ ├── inspect_fodder2.py │ │ │ ├── keycert.passwd.pem │ │ │ ├── keycert.pem │ │ │ ├── keycert2.pem │ │ │ ├── keycert3.pem │ │ │ ├── keycert4.pem │ │ │ ├── keycertecc.pem │ │ │ ├── leakers │ │ │ │ ├── README.txt │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_ctypes.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_ctypes.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_ctypes.cpython-39.pyc │ │ │ │ │ ├── test_selftype.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_selftype.cpython-39.opt-2.pyc │ │ │ │ │ └── test_selftype.cpython-39.pyc │ │ │ │ ├── test_ctypes.py │ │ │ │ └── test_selftype.py │ │ │ ├── libregrtest │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── cmdline.cpython-39.opt-1.pyc │ │ │ │ │ ├── cmdline.cpython-39.opt-2.pyc │ │ │ │ │ ├── cmdline.cpython-39.pyc │ │ │ │ │ ├── main.cpython-39.opt-1.pyc │ │ │ │ │ ├── main.cpython-39.opt-2.pyc │ │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ │ ├── pgo.cpython-39.opt-1.pyc │ │ │ │ │ ├── pgo.cpython-39.opt-2.pyc │ │ │ │ │ ├── pgo.cpython-39.pyc │ │ │ │ │ ├── refleak.cpython-39.opt-1.pyc │ │ │ │ │ ├── refleak.cpython-39.opt-2.pyc │ │ │ │ │ ├── refleak.cpython-39.pyc │ │ │ │ │ ├── runtest.cpython-39.opt-1.pyc │ │ │ │ │ ├── runtest.cpython-39.opt-2.pyc │ │ │ │ │ ├── runtest.cpython-39.pyc │ │ │ │ │ ├── runtest_mp.cpython-39.opt-1.pyc │ │ │ │ │ ├── runtest_mp.cpython-39.opt-2.pyc │ │ │ │ │ ├── runtest_mp.cpython-39.pyc │ │ │ │ │ ├── save_env.cpython-39.opt-1.pyc │ │ │ │ │ ├── save_env.cpython-39.opt-2.pyc │ │ │ │ │ ├── save_env.cpython-39.pyc │ │ │ │ │ ├── setup.cpython-39.opt-1.pyc │ │ │ │ │ ├── setup.cpython-39.opt-2.pyc │ │ │ │ │ ├── setup.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.opt-1.pyc │ │ │ │ │ ├── utils.cpython-39.opt-2.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ ├── win_utils.cpython-39.opt-1.pyc │ │ │ │ │ ├── win_utils.cpython-39.opt-2.pyc │ │ │ │ │ └── win_utils.cpython-39.pyc │ │ │ │ ├── cmdline.py │ │ │ │ ├── main.py │ │ │ │ ├── pgo.py │ │ │ │ ├── refleak.py │ │ │ │ ├── runtest.py │ │ │ │ ├── runtest_mp.py │ │ │ │ ├── save_env.py │ │ │ │ ├── setup.py │ │ │ │ ├── utils.py │ │ │ │ └── win_utils.py │ │ │ ├── list_tests.py │ │ │ ├── lock_tests.py │ │ │ ├── mailcap.txt │ │ │ ├── make_ssl_certs.py │ │ │ ├── mapping_tests.py │ │ │ ├── math_testcases.txt │ │ │ ├── memory_watchdog.py │ │ │ ├── mime.types │ │ │ ├── mock_socket.py │ │ │ ├── mod_generics_cache.py │ │ │ ├── mp_fork_bomb.py │ │ │ ├── mp_preload.py │ │ │ ├── multibytecodec_support.py │ │ │ ├── nokia.pem │ │ │ ├── nullbytecert.pem │ │ │ ├── nullcert.pem │ │ │ ├── pickletester.py │ │ │ ├── profilee.py │ │ │ ├── pstats.pck │ │ │ ├── pycacert.pem │ │ │ ├── pycakey.pem │ │ │ ├── pyclbr_input.py │ │ │ ├── pydoc_mod.py │ │ │ ├── pydocfodder.py │ │ │ ├── pythoninfo.py │ │ │ ├── randv2_32.pck │ │ │ ├── randv2_64.pck │ │ │ ├── randv3.pck │ │ │ ├── re_tests.py │ │ │ ├── recursion.tar │ │ │ ├── regrtest.py │ │ │ ├── relimport.py │ │ │ ├── reperf.py │ │ │ ├── revocation.crl │ │ │ ├── sample_doctest.py │ │ │ ├── sample_doctest_no_docstrings.py │ │ │ ├── sample_doctest_no_doctests.py │ │ │ ├── secp384r1.pem │ │ │ ├── selfsigned_pythontestdotnet.pem │ │ │ ├── seq_tests.py │ │ │ ├── sgml_input.html │ │ │ ├── signalinterproctester.py │ │ │ ├── sndhdrdata │ │ │ │ ├── README │ │ │ │ ├── sndhdr.8svx │ │ │ │ ├── sndhdr.aifc │ │ │ │ ├── sndhdr.aiff │ │ │ │ ├── sndhdr.au │ │ │ │ ├── sndhdr.hcom │ │ │ │ ├── sndhdr.sndt │ │ │ │ ├── sndhdr.voc │ │ │ │ └── sndhdr.wav │ │ │ ├── sortperf.py │ │ │ ├── ssl_cert.pem │ │ │ ├── ssl_key.passwd.pem │ │ │ ├── ssl_key.pem │ │ │ ├── ssl_servers.py │ │ │ ├── ssltests.py │ │ │ ├── string_tests.py │ │ │ ├── subprocessdata │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── fd_status.cpython-39.opt-1.pyc │ │ │ │ │ ├── fd_status.cpython-39.opt-2.pyc │ │ │ │ │ ├── fd_status.cpython-39.pyc │ │ │ │ │ ├── input_reader.cpython-39.opt-1.pyc │ │ │ │ │ ├── input_reader.cpython-39.opt-2.pyc │ │ │ │ │ ├── input_reader.cpython-39.pyc │ │ │ │ │ ├── qcat.cpython-39.opt-1.pyc │ │ │ │ │ ├── qcat.cpython-39.opt-2.pyc │ │ │ │ │ ├── qcat.cpython-39.pyc │ │ │ │ │ ├── qgrep.cpython-39.opt-1.pyc │ │ │ │ │ ├── qgrep.cpython-39.opt-2.pyc │ │ │ │ │ ├── qgrep.cpython-39.pyc │ │ │ │ │ ├── sigchild_ignore.cpython-39.opt-1.pyc │ │ │ │ │ ├── sigchild_ignore.cpython-39.opt-2.pyc │ │ │ │ │ └── sigchild_ignore.cpython-39.pyc │ │ │ │ ├── fd_status.py │ │ │ │ ├── input_reader.py │ │ │ │ ├── qcat.py │ │ │ │ ├── qgrep.py │ │ │ │ └── sigchild_ignore.py │ │ │ ├── support │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── bytecode_helper.cpython-39.opt-1.pyc │ │ │ │ │ ├── bytecode_helper.cpython-39.opt-2.pyc │ │ │ │ │ ├── bytecode_helper.cpython-39.pyc │ │ │ │ │ ├── hashlib_helper.cpython-39.opt-1.pyc │ │ │ │ │ ├── hashlib_helper.cpython-39.opt-2.pyc │ │ │ │ │ ├── hashlib_helper.cpython-39.pyc │ │ │ │ │ ├── logging_helper.cpython-39.opt-1.pyc │ │ │ │ │ ├── logging_helper.cpython-39.opt-2.pyc │ │ │ │ │ ├── logging_helper.cpython-39.pyc │ │ │ │ │ ├── script_helper.cpython-39.opt-1.pyc │ │ │ │ │ ├── script_helper.cpython-39.opt-2.pyc │ │ │ │ │ ├── script_helper.cpython-39.pyc │ │ │ │ │ ├── socket_helper.cpython-39.opt-1.pyc │ │ │ │ │ ├── socket_helper.cpython-39.opt-2.pyc │ │ │ │ │ ├── socket_helper.cpython-39.pyc │ │ │ │ │ ├── testresult.cpython-39.opt-1.pyc │ │ │ │ │ ├── testresult.cpython-39.opt-2.pyc │ │ │ │ │ └── testresult.cpython-39.pyc │ │ │ │ ├── bytecode_helper.py │ │ │ │ ├── hashlib_helper.py │ │ │ │ ├── logging_helper.py │ │ │ │ ├── script_helper.py │ │ │ │ ├── socket_helper.py │ │ │ │ └── testresult.py │ │ │ ├── talos-2019-0758.pem │ │ │ ├── test___all__.py │ │ │ ├── test___future__.py │ │ │ ├── test__locale.py │ │ │ ├── test__opcode.py │ │ │ ├── test__osx_support.py │ │ │ ├── test__xxsubinterpreters.py │ │ │ ├── test_abc.py │ │ │ ├── test_abstract_numbers.py │ │ │ ├── test_aifc.py │ │ │ ├── test_argparse.py │ │ │ ├── test_array.py │ │ │ ├── test_asdl_parser.py │ │ │ ├── test_ast.py │ │ │ ├── test_asyncgen.py │ │ │ ├── test_asynchat.py │ │ │ ├── test_asyncio │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── echo.cpython-39.opt-1.pyc │ │ │ │ │ ├── echo.cpython-39.opt-2.pyc │ │ │ │ │ ├── echo.cpython-39.pyc │ │ │ │ │ ├── echo2.cpython-39.opt-1.pyc │ │ │ │ │ ├── echo2.cpython-39.opt-2.pyc │ │ │ │ │ ├── echo2.cpython-39.pyc │ │ │ │ │ ├── echo3.cpython-39.opt-1.pyc │ │ │ │ │ ├── echo3.cpython-39.opt-2.pyc │ │ │ │ │ ├── echo3.cpython-39.pyc │ │ │ │ │ ├── functional.cpython-39.opt-1.pyc │ │ │ │ │ ├── functional.cpython-39.opt-2.pyc │ │ │ │ │ ├── functional.cpython-39.pyc │ │ │ │ │ ├── test_asyncio_waitfor.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_asyncio_waitfor.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_asyncio_waitfor.cpython-39.pyc │ │ │ │ │ ├── test_base_events.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_base_events.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_base_events.cpython-39.pyc │ │ │ │ │ ├── test_buffered_proto.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_buffered_proto.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_buffered_proto.cpython-39.pyc │ │ │ │ │ ├── test_context.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_context.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_context.cpython-39.pyc │ │ │ │ │ ├── test_events.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_events.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_events.cpython-39.pyc │ │ │ │ │ ├── test_futures.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_futures.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_futures.cpython-39.pyc │ │ │ │ │ ├── test_futures2.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_futures2.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_futures2.cpython-39.pyc │ │ │ │ │ ├── test_locks.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_locks.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_locks.cpython-39.pyc │ │ │ │ │ ├── test_pep492.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pep492.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pep492.cpython-39.pyc │ │ │ │ │ ├── test_proactor_events.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_proactor_events.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_proactor_events.cpython-39.pyc │ │ │ │ │ ├── test_protocols.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_protocols.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_protocols.cpython-39.pyc │ │ │ │ │ ├── test_queues.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_queues.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_queues.cpython-39.pyc │ │ │ │ │ ├── test_runners.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_runners.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_runners.cpython-39.pyc │ │ │ │ │ ├── test_selector_events.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_selector_events.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_selector_events.cpython-39.pyc │ │ │ │ │ ├── test_sendfile.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_sendfile.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_sendfile.cpython-39.pyc │ │ │ │ │ ├── test_server.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_server.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_server.cpython-39.pyc │ │ │ │ │ ├── test_sock_lowlevel.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_sock_lowlevel.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_sock_lowlevel.cpython-39.pyc │ │ │ │ │ ├── test_sslproto.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_sslproto.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_sslproto.cpython-39.pyc │ │ │ │ │ ├── test_streams.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_streams.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_streams.cpython-39.pyc │ │ │ │ │ ├── test_subprocess.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_subprocess.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_subprocess.cpython-39.pyc │ │ │ │ │ ├── test_tasks.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_tasks.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_tasks.cpython-39.pyc │ │ │ │ │ ├── test_threads.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_threads.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_threads.cpython-39.pyc │ │ │ │ │ ├── test_transports.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_transports.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_transports.cpython-39.pyc │ │ │ │ │ ├── test_unix_events.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_unix_events.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_unix_events.cpython-39.pyc │ │ │ │ │ ├── test_windows_events.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_windows_events.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_windows_events.cpython-39.pyc │ │ │ │ │ ├── test_windows_utils.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_windows_utils.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_windows_utils.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.opt-1.pyc │ │ │ │ │ ├── utils.cpython-39.opt-2.pyc │ │ │ │ │ └── utils.cpython-39.pyc │ │ │ │ ├── echo.py │ │ │ │ ├── echo2.py │ │ │ │ ├── echo3.py │ │ │ │ ├── functional.py │ │ │ │ ├── test_asyncio_waitfor.py │ │ │ │ ├── test_base_events.py │ │ │ │ ├── test_buffered_proto.py │ │ │ │ ├── test_context.py │ │ │ │ ├── test_events.py │ │ │ │ ├── test_futures.py │ │ │ │ ├── test_futures2.py │ │ │ │ ├── test_locks.py │ │ │ │ ├── test_pep492.py │ │ │ │ ├── test_proactor_events.py │ │ │ │ ├── test_protocols.py │ │ │ │ ├── test_queues.py │ │ │ │ ├── test_runners.py │ │ │ │ ├── test_selector_events.py │ │ │ │ ├── test_sendfile.py │ │ │ │ ├── test_server.py │ │ │ │ ├── test_sock_lowlevel.py │ │ │ │ ├── test_sslproto.py │ │ │ │ ├── test_streams.py │ │ │ │ ├── test_subprocess.py │ │ │ │ ├── test_tasks.py │ │ │ │ ├── test_threads.py │ │ │ │ ├── test_transports.py │ │ │ │ ├── test_unix_events.py │ │ │ │ ├── test_windows_events.py │ │ │ │ ├── test_windows_utils.py │ │ │ │ └── utils.py │ │ │ ├── test_asyncore.py │ │ │ ├── test_atexit.py │ │ │ ├── test_audioop.py │ │ │ ├── test_audit.py │ │ │ ├── test_augassign.py │ │ │ ├── test_base64.py │ │ │ ├── test_baseexception.py │ │ │ ├── test_bdb.py │ │ │ ├── test_bigaddrspace.py │ │ │ ├── test_bigmem.py │ │ │ ├── test_binascii.py │ │ │ ├── test_binhex.py │ │ │ ├── test_binop.py │ │ │ ├── test_bisect.py │ │ │ ├── test_bool.py │ │ │ ├── test_buffer.py │ │ │ ├── test_bufio.py │ │ │ ├── test_builtin.py │ │ │ ├── test_bytes.py │ │ │ ├── test_bz2.py │ │ │ ├── test_c_locale_coercion.py │ │ │ ├── test_calendar.py │ │ │ ├── test_call.py │ │ │ ├── test_capi.py │ │ │ ├── test_cgi.py │ │ │ ├── test_cgitb.py │ │ │ ├── test_charmapcodec.py │ │ │ ├── test_check_c_globals.py │ │ │ ├── test_class.py │ │ │ ├── test_clinic.py │ │ │ ├── test_cmath.py │ │ │ ├── test_cmd.py │ │ │ ├── test_cmd_line.py │ │ │ ├── test_cmd_line_script.py │ │ │ ├── test_code.py │ │ │ ├── test_code_module.py │ │ │ ├── test_codeccallbacks.py │ │ │ ├── test_codecencodings_cn.py │ │ │ ├── test_codecencodings_hk.py │ │ │ ├── test_codecencodings_iso2022.py │ │ │ ├── test_codecencodings_jp.py │ │ │ ├── test_codecencodings_kr.py │ │ │ ├── test_codecencodings_tw.py │ │ │ ├── test_codecmaps_cn.py │ │ │ ├── test_codecmaps_hk.py │ │ │ ├── test_codecmaps_jp.py │ │ │ ├── test_codecmaps_kr.py │ │ │ ├── test_codecmaps_tw.py │ │ │ ├── test_codecs.py │ │ │ ├── test_codeop.py │ │ │ ├── test_collections.py │ │ │ ├── test_colorsys.py │ │ │ ├── test_compare.py │ │ │ ├── test_compile.py │ │ │ ├── test_compileall.py │ │ │ ├── test_complex.py │ │ │ ├── test_concurrent_futures.py │ │ │ ├── test_configparser.py │ │ │ ├── test_contains.py │ │ │ ├── test_context.py │ │ │ ├── test_contextlib.py │ │ │ ├── test_contextlib_async.py │ │ │ ├── test_copy.py │ │ │ ├── test_copyreg.py │ │ │ ├── test_coroutines.py │ │ │ ├── test_cprofile.py │ │ │ ├── test_crashers.py │ │ │ ├── test_crypt.py │ │ │ ├── test_csv.py │ │ │ ├── test_ctypes.py │ │ │ ├── test_curses.py │ │ │ ├── test_dataclasses.py │ │ │ ├── test_datetime.py │ │ │ ├── test_dbm.py │ │ │ ├── test_dbm_dumb.py │ │ │ ├── test_dbm_gnu.py │ │ │ ├── test_dbm_ndbm.py │ │ │ ├── test_decimal.py │ │ │ ├── test_decorators.py │ │ │ ├── test_defaultdict.py │ │ │ ├── test_deque.py │ │ │ ├── test_descr.py │ │ │ ├── test_descrtut.py │ │ │ ├── test_devpoll.py │ │ │ ├── test_dict.py │ │ │ ├── test_dict_version.py │ │ │ ├── test_dictcomps.py │ │ │ ├── test_dictviews.py │ │ │ ├── test_difflib.py │ │ │ ├── test_difflib_expect.html │ │ │ ├── test_dis.py │ │ │ ├── test_distutils.py │ │ │ ├── test_doctest.py │ │ │ ├── test_doctest.txt │ │ │ ├── test_doctest2.py │ │ │ ├── test_doctest2.txt │ │ │ ├── test_doctest3.txt │ │ │ ├── test_doctest4.txt │ │ │ ├── test_docxmlrpc.py │ │ │ ├── test_dtrace.py │ │ │ ├── test_dynamic.py │ │ │ ├── test_dynamicclassattribute.py │ │ │ ├── test_eintr.py │ │ │ ├── test_email │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── test__encoded_words.cpython-39.opt-1.pyc │ │ │ │ │ ├── test__encoded_words.cpython-39.opt-2.pyc │ │ │ │ │ ├── test__encoded_words.cpython-39.pyc │ │ │ │ │ ├── test__header_value_parser.cpython-39.opt-1.pyc │ │ │ │ │ ├── test__header_value_parser.cpython-39.opt-2.pyc │ │ │ │ │ ├── test__header_value_parser.cpython-39.pyc │ │ │ │ │ ├── test_asian_codecs.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_asian_codecs.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_asian_codecs.cpython-39.pyc │ │ │ │ │ ├── test_contentmanager.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_contentmanager.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_contentmanager.cpython-39.pyc │ │ │ │ │ ├── test_defect_handling.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_defect_handling.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_defect_handling.cpython-39.pyc │ │ │ │ │ ├── test_email.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_email.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_email.cpython-39.pyc │ │ │ │ │ ├── test_generator.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_generator.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_generator.cpython-39.pyc │ │ │ │ │ ├── test_headerregistry.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_headerregistry.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_headerregistry.cpython-39.pyc │ │ │ │ │ ├── test_inversion.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_inversion.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_inversion.cpython-39.pyc │ │ │ │ │ ├── test_message.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_message.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_message.cpython-39.pyc │ │ │ │ │ ├── test_parser.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_parser.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_parser.cpython-39.pyc │ │ │ │ │ ├── test_pickleable.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pickleable.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pickleable.cpython-39.pyc │ │ │ │ │ ├── test_policy.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_policy.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_policy.cpython-39.pyc │ │ │ │ │ ├── test_utils.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_utils.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_utils.cpython-39.pyc │ │ │ │ │ ├── torture_test.cpython-39.opt-1.pyc │ │ │ │ │ ├── torture_test.cpython-39.opt-2.pyc │ │ │ │ │ └── torture_test.cpython-39.pyc │ │ │ │ ├── data │ │ │ │ │ ├── PyBanner048.gif │ │ │ │ │ ├── audiotest.au │ │ │ │ │ ├── msg_01.txt │ │ │ │ │ ├── msg_02.txt │ │ │ │ │ ├── msg_03.txt │ │ │ │ │ ├── msg_04.txt │ │ │ │ │ ├── msg_05.txt │ │ │ │ │ ├── msg_06.txt │ │ │ │ │ ├── msg_07.txt │ │ │ │ │ ├── msg_08.txt │ │ │ │ │ ├── msg_09.txt │ │ │ │ │ ├── msg_10.txt │ │ │ │ │ ├── msg_11.txt │ │ │ │ │ ├── msg_12.txt │ │ │ │ │ ├── msg_12a.txt │ │ │ │ │ ├── msg_13.txt │ │ │ │ │ ├── msg_14.txt │ │ │ │ │ ├── msg_15.txt │ │ │ │ │ ├── msg_16.txt │ │ │ │ │ ├── msg_17.txt │ │ │ │ │ ├── msg_18.txt │ │ │ │ │ ├── msg_19.txt │ │ │ │ │ ├── msg_20.txt │ │ │ │ │ ├── msg_21.txt │ │ │ │ │ ├── msg_22.txt │ │ │ │ │ ├── msg_23.txt │ │ │ │ │ ├── msg_24.txt │ │ │ │ │ ├── msg_25.txt │ │ │ │ │ ├── msg_26.txt │ │ │ │ │ ├── msg_27.txt │ │ │ │ │ ├── msg_28.txt │ │ │ │ │ ├── msg_29.txt │ │ │ │ │ ├── msg_30.txt │ │ │ │ │ ├── msg_31.txt │ │ │ │ │ ├── msg_32.txt │ │ │ │ │ ├── msg_33.txt │ │ │ │ │ ├── msg_34.txt │ │ │ │ │ ├── msg_35.txt │ │ │ │ │ ├── msg_36.txt │ │ │ │ │ ├── msg_37.txt │ │ │ │ │ ├── msg_38.txt │ │ │ │ │ ├── msg_39.txt │ │ │ │ │ ├── msg_40.txt │ │ │ │ │ ├── msg_41.txt │ │ │ │ │ ├── msg_42.txt │ │ │ │ │ ├── msg_43.txt │ │ │ │ │ ├── msg_44.txt │ │ │ │ │ ├── msg_45.txt │ │ │ │ │ └── msg_46.txt │ │ │ │ ├── test__encoded_words.py │ │ │ │ ├── test__header_value_parser.py │ │ │ │ ├── test_asian_codecs.py │ │ │ │ ├── test_contentmanager.py │ │ │ │ ├── test_defect_handling.py │ │ │ │ ├── test_email.py │ │ │ │ ├── test_generator.py │ │ │ │ ├── test_headerregistry.py │ │ │ │ ├── test_inversion.py │ │ │ │ ├── test_message.py │ │ │ │ ├── test_parser.py │ │ │ │ ├── test_pickleable.py │ │ │ │ ├── test_policy.py │ │ │ │ ├── test_utils.py │ │ │ │ └── torture_test.py │ │ │ ├── test_embed.py │ │ │ ├── test_ensurepip.py │ │ │ ├── test_enum.py │ │ │ ├── test_enumerate.py │ │ │ ├── test_eof.py │ │ │ ├── test_epoll.py │ │ │ ├── test_errno.py │ │ │ ├── test_exception_hierarchy.py │ │ │ ├── test_exception_variations.py │ │ │ ├── test_exceptions.py │ │ │ ├── test_extcall.py │ │ │ ├── test_faulthandler.py │ │ │ ├── test_fcntl.py │ │ │ ├── test_file.py │ │ │ ├── test_file_eintr.py │ │ │ ├── test_filecmp.py │ │ │ ├── test_fileinput.py │ │ │ ├── test_fileio.py │ │ │ ├── test_finalization.py │ │ │ ├── test_float.py │ │ │ ├── test_flufl.py │ │ │ ├── test_fnmatch.py │ │ │ ├── test_fork1.py │ │ │ ├── test_format.py │ │ │ ├── test_fractions.py │ │ │ ├── test_frame.py │ │ │ ├── test_frozen.py │ │ │ ├── test_fstring.py │ │ │ ├── test_ftplib.py │ │ │ ├── test_funcattrs.py │ │ │ ├── test_functools.py │ │ │ ├── test_future.py │ │ │ ├── test_future3.py │ │ │ ├── test_future4.py │ │ │ ├── test_future5.py │ │ │ ├── test_gc.py │ │ │ ├── test_gdb.py │ │ │ ├── test_generator_stop.py │ │ │ ├── test_generators.py │ │ │ ├── test_genericalias.py │ │ │ ├── test_genericclass.py │ │ │ ├── test_genericpath.py │ │ │ ├── test_genexps.py │ │ │ ├── test_getargs2.py │ │ │ ├── test_getopt.py │ │ │ ├── test_getpass.py │ │ │ ├── test_gettext.py │ │ │ ├── test_glob.py │ │ │ ├── test_global.py │ │ │ ├── test_grammar.py │ │ │ ├── test_graphlib.py │ │ │ ├── test_grp.py │ │ │ ├── test_gzip.py │ │ │ ├── test_hash.py │ │ │ ├── test_hashlib.py │ │ │ ├── test_heapq.py │ │ │ ├── test_hmac.py │ │ │ ├── test_html.py │ │ │ ├── test_htmlparser.py │ │ │ ├── test_http_cookiejar.py │ │ │ ├── test_http_cookies.py │ │ │ ├── test_httplib.py │ │ │ ├── test_httpservers.py │ │ │ ├── test_idle.py │ │ │ ├── test_imaplib.py │ │ │ ├── test_imghdr.py │ │ │ ├── test_imp.py │ │ │ ├── test_import │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ └── __main__.cpython-39.pyc │ │ │ │ └── data │ │ │ │ │ ├── circular_imports │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── basic.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── basic.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── basic.cpython-39.pyc │ │ │ │ │ │ ├── basic2.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── basic2.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── basic2.cpython-39.pyc │ │ │ │ │ │ ├── binding.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── binding.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── binding.cpython-39.pyc │ │ │ │ │ │ ├── binding2.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── binding2.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── binding2.cpython-39.pyc │ │ │ │ │ │ ├── from_cycle1.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── from_cycle1.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── from_cycle1.cpython-39.pyc │ │ │ │ │ │ ├── from_cycle2.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── from_cycle2.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── from_cycle2.cpython-39.pyc │ │ │ │ │ │ ├── indirect.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── indirect.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── indirect.cpython-39.pyc │ │ │ │ │ │ ├── rebinding.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── rebinding.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── rebinding.cpython-39.pyc │ │ │ │ │ │ ├── rebinding2.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── rebinding2.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── rebinding2.cpython-39.pyc │ │ │ │ │ │ ├── source.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── source.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── source.cpython-39.pyc │ │ │ │ │ │ ├── subpackage.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── subpackage.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── subpackage.cpython-39.pyc │ │ │ │ │ │ ├── use.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── use.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── use.cpython-39.pyc │ │ │ │ │ │ ├── util.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── util.cpython-39.opt-2.pyc │ │ │ │ │ │ └── util.cpython-39.pyc │ │ │ │ │ ├── basic.py │ │ │ │ │ ├── basic2.py │ │ │ │ │ ├── binding.py │ │ │ │ │ ├── binding2.py │ │ │ │ │ ├── from_cycle1.py │ │ │ │ │ ├── from_cycle2.py │ │ │ │ │ ├── indirect.py │ │ │ │ │ ├── rebinding.py │ │ │ │ │ ├── rebinding2.py │ │ │ │ │ ├── source.py │ │ │ │ │ ├── subpackage.py │ │ │ │ │ ├── subpkg │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── subpackage2.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── subpackage2.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── subpackage2.cpython-39.pyc │ │ │ │ │ │ │ ├── util.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── util.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── util.cpython-39.pyc │ │ │ │ │ │ ├── subpackage2.py │ │ │ │ │ │ └── util.py │ │ │ │ │ ├── use.py │ │ │ │ │ └── util.py │ │ │ │ │ ├── package │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── submodule.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── submodule.cpython-39.opt-2.pyc │ │ │ │ │ │ └── submodule.cpython-39.pyc │ │ │ │ │ └── submodule.py │ │ │ │ │ ├── package2 │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── submodule1.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── submodule1.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── submodule1.cpython-39.pyc │ │ │ │ │ │ ├── submodule2.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── submodule2.cpython-39.opt-2.pyc │ │ │ │ │ │ └── submodule2.cpython-39.pyc │ │ │ │ │ ├── submodule1.py │ │ │ │ │ └── submodule2.py │ │ │ │ │ └── unwritable │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── x.cpython-39.opt-1.pyc │ │ │ │ │ ├── x.cpython-39.opt-2.pyc │ │ │ │ │ └── x.cpython-39.pyc │ │ │ │ │ └── x.py │ │ │ ├── test_importlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── abc.cpython-39.opt-1.pyc │ │ │ │ │ ├── abc.cpython-39.opt-2.pyc │ │ │ │ │ ├── abc.cpython-39.pyc │ │ │ │ │ ├── fixtures.cpython-39.opt-1.pyc │ │ │ │ │ ├── fixtures.cpython-39.opt-2.pyc │ │ │ │ │ ├── fixtures.cpython-39.pyc │ │ │ │ │ ├── stubs.cpython-39.opt-1.pyc │ │ │ │ │ ├── stubs.cpython-39.opt-2.pyc │ │ │ │ │ ├── stubs.cpython-39.pyc │ │ │ │ │ ├── test_abc.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_abc.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_abc.cpython-39.pyc │ │ │ │ │ ├── test_api.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_api.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_api.cpython-39.pyc │ │ │ │ │ ├── test_files.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_files.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_files.cpython-39.pyc │ │ │ │ │ ├── test_lazy.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_lazy.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_lazy.cpython-39.pyc │ │ │ │ │ ├── test_locks.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_locks.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_locks.cpython-39.pyc │ │ │ │ │ ├── test_main.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_main.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_main.cpython-39.pyc │ │ │ │ │ ├── test_metadata_api.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_metadata_api.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_metadata_api.cpython-39.pyc │ │ │ │ │ ├── test_namespace_pkgs.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_namespace_pkgs.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_namespace_pkgs.cpython-39.pyc │ │ │ │ │ ├── test_open.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_open.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_open.cpython-39.pyc │ │ │ │ │ ├── test_path.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_path.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_path.cpython-39.pyc │ │ │ │ │ ├── test_pkg_import.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pkg_import.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pkg_import.cpython-39.pyc │ │ │ │ │ ├── test_read.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_read.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_read.cpython-39.pyc │ │ │ │ │ ├── test_resource.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_resource.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_resource.cpython-39.pyc │ │ │ │ │ ├── test_spec.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_spec.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_spec.cpython-39.pyc │ │ │ │ │ ├── test_threaded_import.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_threaded_import.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_threaded_import.cpython-39.pyc │ │ │ │ │ ├── test_util.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_util.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_util.cpython-39.pyc │ │ │ │ │ ├── test_windows.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_windows.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_windows.cpython-39.pyc │ │ │ │ │ ├── test_zip.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_zip.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_zip.cpython-39.pyc │ │ │ │ │ ├── threaded_import_hangers.cpython-39.opt-1.pyc │ │ │ │ │ ├── threaded_import_hangers.cpython-39.opt-2.pyc │ │ │ │ │ ├── threaded_import_hangers.cpython-39.pyc │ │ │ │ │ ├── util.cpython-39.opt-1.pyc │ │ │ │ │ ├── util.cpython-39.opt-2.pyc │ │ │ │ │ └── util.cpython-39.pyc │ │ │ │ ├── abc.py │ │ │ │ ├── builtin │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ │ ├── test_finder.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_finder.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_finder.cpython-39.pyc │ │ │ │ │ │ ├── test_loader.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_loader.cpython-39.opt-2.pyc │ │ │ │ │ │ └── test_loader.cpython-39.pyc │ │ │ │ │ ├── test_finder.py │ │ │ │ │ └── test_loader.py │ │ │ │ ├── data │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ ├── example-21.12-py3-none-any.whl │ │ │ │ │ └── example-21.12-py3.6.egg │ │ │ │ ├── data01 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ ├── binary.file │ │ │ │ │ ├── subdirectory │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ │ └── binary.file │ │ │ │ │ ├── utf-16.file │ │ │ │ │ └── utf-8.file │ │ │ │ ├── data02 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ ├── one │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ │ └── resource1.txt │ │ │ │ │ └── two │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ │ └── resource2.txt │ │ │ │ ├── data03 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ └── namespace │ │ │ │ │ │ ├── portion1 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ │ ├── portion2 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ │ └── resource1.txt │ │ │ │ ├── extension │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ │ ├── test_case_sensitivity.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_case_sensitivity.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_case_sensitivity.cpython-39.pyc │ │ │ │ │ │ ├── test_finder.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_finder.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_finder.cpython-39.pyc │ │ │ │ │ │ ├── test_loader.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_loader.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_loader.cpython-39.pyc │ │ │ │ │ │ ├── test_path_hook.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_path_hook.cpython-39.opt-2.pyc │ │ │ │ │ │ └── test_path_hook.cpython-39.pyc │ │ │ │ │ ├── test_case_sensitivity.py │ │ │ │ │ ├── test_finder.py │ │ │ │ │ ├── test_loader.py │ │ │ │ │ └── test_path_hook.py │ │ │ │ ├── fixtures.py │ │ │ │ ├── frozen │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ │ ├── test_finder.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_finder.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_finder.cpython-39.pyc │ │ │ │ │ │ ├── test_loader.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_loader.cpython-39.opt-2.pyc │ │ │ │ │ │ └── test_loader.cpython-39.pyc │ │ │ │ │ ├── test_finder.py │ │ │ │ │ └── test_loader.py │ │ │ │ ├── import_ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ │ ├── test___loader__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test___loader__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test___loader__.cpython-39.pyc │ │ │ │ │ │ ├── test___package__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test___package__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test___package__.cpython-39.pyc │ │ │ │ │ │ ├── test_api.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_api.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_api.cpython-39.pyc │ │ │ │ │ │ ├── test_caching.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_caching.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_caching.cpython-39.pyc │ │ │ │ │ │ ├── test_fromlist.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_fromlist.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_fromlist.cpython-39.pyc │ │ │ │ │ │ ├── test_meta_path.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_meta_path.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_meta_path.cpython-39.pyc │ │ │ │ │ │ ├── test_packages.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_packages.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_packages.cpython-39.pyc │ │ │ │ │ │ ├── test_path.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_path.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_path.cpython-39.pyc │ │ │ │ │ │ ├── test_relative_imports.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_relative_imports.cpython-39.opt-2.pyc │ │ │ │ │ │ └── test_relative_imports.cpython-39.pyc │ │ │ │ │ ├── test___loader__.py │ │ │ │ │ ├── test___package__.py │ │ │ │ │ ├── test_api.py │ │ │ │ │ ├── test_caching.py │ │ │ │ │ ├── test_fromlist.py │ │ │ │ │ ├── test_meta_path.py │ │ │ │ │ ├── test_packages.py │ │ │ │ │ ├── test_path.py │ │ │ │ │ └── test_relative_imports.py │ │ │ │ ├── namespace_pkgs │ │ │ │ │ ├── both_portions │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── one.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── one.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── one.cpython-39.pyc │ │ │ │ │ │ │ ├── two.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── two.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── two.cpython-39.pyc │ │ │ │ │ │ │ ├── one.py │ │ │ │ │ │ │ └── two.py │ │ │ │ │ ├── missing_directory.zip │ │ │ │ │ ├── module_and_namespace_package │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── a_test.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── a_test.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── a_test.cpython-39.pyc │ │ │ │ │ │ ├── a_test.py │ │ │ │ │ │ └── a_test │ │ │ │ │ │ │ └── empty │ │ │ │ │ ├── nested_portion1.zip │ │ │ │ │ ├── not_a_namespace_pkg │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── one.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── one.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── one.cpython-39.pyc │ │ │ │ │ │ │ └── one.py │ │ │ │ │ ├── portion1 │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── one.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── one.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── one.cpython-39.pyc │ │ │ │ │ │ │ └── one.py │ │ │ │ │ ├── portion2 │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── two.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── two.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── two.cpython-39.pyc │ │ │ │ │ │ │ └── two.py │ │ │ │ │ ├── project1 │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── one.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── one.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── one.cpython-39.pyc │ │ │ │ │ │ │ └── one.py │ │ │ │ │ ├── project2 │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── two.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── two.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── two.cpython-39.pyc │ │ │ │ │ │ │ └── two.py │ │ │ │ │ ├── project3 │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── three.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── three.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── three.cpython-39.pyc │ │ │ │ │ │ │ └── three.py │ │ │ │ │ └── top_level_portion1.zip │ │ │ │ ├── source │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ │ ├── test_case_sensitivity.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_case_sensitivity.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_case_sensitivity.cpython-39.pyc │ │ │ │ │ │ ├── test_file_loader.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_file_loader.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_file_loader.cpython-39.pyc │ │ │ │ │ │ ├── test_finder.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_finder.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_finder.cpython-39.pyc │ │ │ │ │ │ ├── test_path_hook.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_path_hook.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_path_hook.cpython-39.pyc │ │ │ │ │ │ ├── test_source_encoding.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_source_encoding.cpython-39.opt-2.pyc │ │ │ │ │ │ └── test_source_encoding.cpython-39.pyc │ │ │ │ │ ├── test_case_sensitivity.py │ │ │ │ │ ├── test_file_loader.py │ │ │ │ │ ├── test_finder.py │ │ │ │ │ ├── test_path_hook.py │ │ │ │ │ └── test_source_encoding.py │ │ │ │ ├── stubs.py │ │ │ │ ├── test_abc.py │ │ │ │ ├── test_api.py │ │ │ │ ├── test_files.py │ │ │ │ ├── test_lazy.py │ │ │ │ ├── test_locks.py │ │ │ │ ├── test_main.py │ │ │ │ ├── test_metadata_api.py │ │ │ │ ├── test_namespace_pkgs.py │ │ │ │ ├── test_open.py │ │ │ │ ├── test_path.py │ │ │ │ ├── test_pkg_import.py │ │ │ │ ├── test_read.py │ │ │ │ ├── test_resource.py │ │ │ │ ├── test_spec.py │ │ │ │ ├── test_threaded_import.py │ │ │ │ ├── test_util.py │ │ │ │ ├── test_windows.py │ │ │ │ ├── test_zip.py │ │ │ │ ├── threaded_import_hangers.py │ │ │ │ ├── util.py │ │ │ │ ├── zipdata01 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ └── ziptestdata.zip │ │ │ │ └── zipdata02 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ │ └── ziptestdata.zip │ │ │ ├── test_index.py │ │ │ ├── test_inspect.py │ │ │ ├── test_int.py │ │ │ ├── test_int_literal.py │ │ │ ├── test_io.py │ │ │ ├── test_ioctl.py │ │ │ ├── test_ipaddress.py │ │ │ ├── test_isinstance.py │ │ │ ├── test_iter.py │ │ │ ├── test_iterlen.py │ │ │ ├── test_itertools.py │ │ │ ├── test_json │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── test_decode.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_decode.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_decode.cpython-39.pyc │ │ │ │ │ ├── test_default.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_default.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_default.cpython-39.pyc │ │ │ │ │ ├── test_dump.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_dump.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_dump.cpython-39.pyc │ │ │ │ │ ├── test_encode_basestring_ascii.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_encode_basestring_ascii.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_encode_basestring_ascii.cpython-39.pyc │ │ │ │ │ ├── test_enum.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_enum.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_enum.cpython-39.pyc │ │ │ │ │ ├── test_fail.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_fail.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_fail.cpython-39.pyc │ │ │ │ │ ├── test_float.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_float.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_float.cpython-39.pyc │ │ │ │ │ ├── test_indent.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_indent.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_indent.cpython-39.pyc │ │ │ │ │ ├── test_pass1.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pass1.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pass1.cpython-39.pyc │ │ │ │ │ ├── test_pass2.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pass2.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pass2.cpython-39.pyc │ │ │ │ │ ├── test_pass3.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pass3.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pass3.cpython-39.pyc │ │ │ │ │ ├── test_recursion.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_recursion.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_recursion.cpython-39.pyc │ │ │ │ │ ├── test_scanstring.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_scanstring.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_scanstring.cpython-39.pyc │ │ │ │ │ ├── test_separators.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_separators.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_separators.cpython-39.pyc │ │ │ │ │ ├── test_speedups.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_speedups.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_speedups.cpython-39.pyc │ │ │ │ │ ├── test_tool.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_tool.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_tool.cpython-39.pyc │ │ │ │ │ ├── test_unicode.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_unicode.cpython-39.opt-2.pyc │ │ │ │ │ └── test_unicode.cpython-39.pyc │ │ │ │ ├── test_decode.py │ │ │ │ ├── test_default.py │ │ │ │ ├── test_dump.py │ │ │ │ ├── test_encode_basestring_ascii.py │ │ │ │ ├── test_enum.py │ │ │ │ ├── test_fail.py │ │ │ │ ├── test_float.py │ │ │ │ ├── test_indent.py │ │ │ │ ├── test_pass1.py │ │ │ │ ├── test_pass2.py │ │ │ │ ├── test_pass3.py │ │ │ │ ├── test_recursion.py │ │ │ │ ├── test_scanstring.py │ │ │ │ ├── test_separators.py │ │ │ │ ├── test_speedups.py │ │ │ │ ├── test_tool.py │ │ │ │ └── test_unicode.py │ │ │ ├── test_keyword.py │ │ │ ├── test_keywordonlyarg.py │ │ │ ├── test_kqueue.py │ │ │ ├── test_largefile.py │ │ │ ├── test_lib2to3.py │ │ │ ├── test_linecache.py │ │ │ ├── test_list.py │ │ │ ├── test_listcomps.py │ │ │ ├── test_lltrace.py │ │ │ ├── test_locale.py │ │ │ ├── test_logging.py │ │ │ ├── test_long.py │ │ │ ├── test_longexp.py │ │ │ ├── test_lzma.py │ │ │ ├── test_mailbox.py │ │ │ ├── test_mailcap.py │ │ │ ├── test_marshal.py │ │ │ ├── test_math.py │ │ │ ├── test_memoryio.py │ │ │ ├── test_memoryview.py │ │ │ ├── test_metaclass.py │ │ │ ├── test_mimetypes.py │ │ │ ├── test_minidom.py │ │ │ ├── test_mmap.py │ │ │ ├── test_module.py │ │ │ ├── test_modulefinder.py │ │ │ ├── test_msilib.py │ │ │ ├── test_multibytecodec.py │ │ │ ├── test_multiprocessing_fork.py │ │ │ ├── test_multiprocessing_forkserver.py │ │ │ ├── test_multiprocessing_main_handling.py │ │ │ ├── test_multiprocessing_spawn.py │ │ │ ├── test_named_expressions.py │ │ │ ├── test_netrc.py │ │ │ ├── test_nis.py │ │ │ ├── test_nntplib.py │ │ │ ├── test_ntpath.py │ │ │ ├── test_numeric_tower.py │ │ │ ├── test_opcodes.py │ │ │ ├── test_openpty.py │ │ │ ├── test_operator.py │ │ │ ├── test_optparse.py │ │ │ ├── test_ordered_dict.py │ │ │ ├── test_os.py │ │ │ ├── test_ossaudiodev.py │ │ │ ├── test_osx_env.py │ │ │ ├── test_parser.py │ │ │ ├── test_pathlib.py │ │ │ ├── test_pdb.py │ │ │ ├── test_peepholer.py │ │ │ ├── test_peg_generator │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── test_c_parser.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_c_parser.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_c_parser.cpython-39.pyc │ │ │ │ │ ├── test_first_sets.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_first_sets.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_first_sets.cpython-39.pyc │ │ │ │ │ ├── test_pegen.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pegen.cpython-39.opt-2.pyc │ │ │ │ │ └── test_pegen.cpython-39.pyc │ │ │ │ ├── test_c_parser.py │ │ │ │ ├── test_first_sets.py │ │ │ │ └── test_pegen.py │ │ │ ├── test_peg_parser.py │ │ │ ├── test_pickle.py │ │ │ ├── test_picklebuffer.py │ │ │ ├── test_pickletools.py │ │ │ ├── test_pipes.py │ │ │ ├── test_pkg.py │ │ │ ├── test_pkgutil.py │ │ │ ├── test_platform.py │ │ │ ├── test_plistlib.py │ │ │ ├── test_poll.py │ │ │ ├── test_popen.py │ │ │ ├── test_poplib.py │ │ │ ├── test_positional_only_arg.py │ │ │ ├── test_posix.py │ │ │ ├── test_posixpath.py │ │ │ ├── test_pow.py │ │ │ ├── test_pprint.py │ │ │ ├── test_print.py │ │ │ ├── test_profile.py │ │ │ ├── test_property.py │ │ │ ├── test_pstats.py │ │ │ ├── test_pty.py │ │ │ ├── test_pulldom.py │ │ │ ├── test_pwd.py │ │ │ ├── test_py_compile.py │ │ │ ├── test_pyclbr.py │ │ │ ├── test_pydoc.py │ │ │ ├── test_pyexpat.py │ │ │ ├── test_queue.py │ │ │ ├── test_quopri.py │ │ │ ├── test_raise.py │ │ │ ├── test_random.py │ │ │ ├── test_range.py │ │ │ ├── test_re.py │ │ │ ├── test_readline.py │ │ │ ├── test_regrtest.py │ │ │ ├── test_repl.py │ │ │ ├── test_reprlib.py │ │ │ ├── test_resource.py │ │ │ ├── test_richcmp.py │ │ │ ├── test_rlcompleter.py │ │ │ ├── test_robotparser.py │ │ │ ├── test_runpy.py │ │ │ ├── test_sax.py │ │ │ ├── test_sched.py │ │ │ ├── test_scope.py │ │ │ ├── test_script_helper.py │ │ │ ├── test_secrets.py │ │ │ ├── test_select.py │ │ │ ├── test_selectors.py │ │ │ ├── test_set.py │ │ │ ├── test_setcomps.py │ │ │ ├── test_shelve.py │ │ │ ├── test_shlex.py │ │ │ ├── test_shutil.py │ │ │ ├── test_signal.py │ │ │ ├── test_site.py │ │ │ ├── test_slice.py │ │ │ ├── test_smtpd.py │ │ │ ├── test_smtplib.py │ │ │ ├── test_smtpnet.py │ │ │ ├── test_sndhdr.py │ │ │ ├── test_socket.py │ │ │ ├── test_socketserver.py │ │ │ ├── test_sort.py │ │ │ ├── test_source_encoding.py │ │ │ ├── test_spwd.py │ │ │ ├── test_sqlite.py │ │ │ ├── test_ssl.py │ │ │ ├── test_startfile.py │ │ │ ├── test_stat.py │ │ │ ├── test_statistics.py │ │ │ ├── test_strftime.py │ │ │ ├── test_string.py │ │ │ ├── test_string_literals.py │ │ │ ├── test_stringprep.py │ │ │ ├── test_strptime.py │ │ │ ├── test_strtod.py │ │ │ ├── test_struct.py │ │ │ ├── test_structmembers.py │ │ │ ├── test_structseq.py │ │ │ ├── test_subclassinit.py │ │ │ ├── test_subprocess.py │ │ │ ├── test_sunau.py │ │ │ ├── test_sundry.py │ │ │ ├── test_super.py │ │ │ ├── test_support.py │ │ │ ├── test_symbol.py │ │ │ ├── test_symtable.py │ │ │ ├── test_syntax.py │ │ │ ├── test_sys.py │ │ │ ├── test_sys_setprofile.py │ │ │ ├── test_sys_settrace.py │ │ │ ├── test_sysconfig.py │ │ │ ├── test_syslog.py │ │ │ ├── test_tabnanny.py │ │ │ ├── test_tarfile.py │ │ │ ├── test_tcl.py │ │ │ ├── test_telnetlib.py │ │ │ ├── test_tempfile.py │ │ │ ├── test_textwrap.py │ │ │ ├── test_thread.py │ │ │ ├── test_threadedtempfile.py │ │ │ ├── test_threading.py │ │ │ ├── test_threading_local.py │ │ │ ├── test_threadsignals.py │ │ │ ├── test_time.py │ │ │ ├── test_timeit.py │ │ │ ├── test_timeout.py │ │ │ ├── test_tix.py │ │ │ ├── test_tk.py │ │ │ ├── test_tokenize.py │ │ │ ├── test_tools │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── test_fixcid.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_fixcid.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_fixcid.cpython-39.pyc │ │ │ │ │ ├── test_gprof2html.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_gprof2html.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_gprof2html.cpython-39.pyc │ │ │ │ │ ├── test_i18n.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_i18n.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_i18n.cpython-39.pyc │ │ │ │ │ ├── test_lll.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_lll.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_lll.cpython-39.pyc │ │ │ │ │ ├── test_md5sum.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_md5sum.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_md5sum.cpython-39.pyc │ │ │ │ │ ├── test_pathfix.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pathfix.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pathfix.cpython-39.pyc │ │ │ │ │ ├── test_pdeps.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pdeps.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pdeps.cpython-39.pyc │ │ │ │ │ ├── test_pindent.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_pindent.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_pindent.cpython-39.pyc │ │ │ │ │ ├── test_reindent.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_reindent.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_reindent.cpython-39.pyc │ │ │ │ │ ├── test_sundry.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_sundry.cpython-39.opt-2.pyc │ │ │ │ │ └── test_sundry.cpython-39.pyc │ │ │ │ ├── test_c_analyzer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ │ ├── util.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── util.cpython-39.opt-2.pyc │ │ │ │ │ │ └── util.cpython-39.pyc │ │ │ │ │ ├── test_common │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── test_files.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── test_files.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── test_files.cpython-39.pyc │ │ │ │ │ │ │ ├── test_info.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── test_info.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── test_info.cpython-39.pyc │ │ │ │ │ │ │ ├── test_show.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── test_show.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── test_show.cpython-39.pyc │ │ │ │ │ │ ├── test_files.py │ │ │ │ │ │ ├── test_info.py │ │ │ │ │ │ └── test_show.py │ │ │ │ │ ├── test_cpython │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── test___main__.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── test___main__.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── test___main__.cpython-39.pyc │ │ │ │ │ │ │ ├── test_functional.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── test_functional.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── test_functional.cpython-39.pyc │ │ │ │ │ │ │ ├── test_supported.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── test_supported.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── test_supported.cpython-39.pyc │ │ │ │ │ │ ├── test___main__.py │ │ │ │ │ │ ├── test_functional.py │ │ │ │ │ │ └── test_supported.py │ │ │ │ │ ├── test_parser │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── test_declarations.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── test_declarations.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── test_declarations.cpython-39.pyc │ │ │ │ │ │ │ ├── test_preprocessor.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── test_preprocessor.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── test_preprocessor.cpython-39.pyc │ │ │ │ │ │ ├── test_declarations.py │ │ │ │ │ │ └── test_preprocessor.py │ │ │ │ │ ├── test_symbols │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── test_info.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── test_info.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── test_info.cpython-39.pyc │ │ │ │ │ │ └── test_info.py │ │ │ │ │ ├── test_variables │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── test_find.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── test_find.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── test_find.cpython-39.pyc │ │ │ │ │ │ │ ├── test_info.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── test_info.cpython-39.opt-2.pyc │ │ │ │ │ │ │ ├── test_info.cpython-39.pyc │ │ │ │ │ │ │ ├── test_known.cpython-39.opt-1.pyc │ │ │ │ │ │ │ ├── test_known.cpython-39.opt-2.pyc │ │ │ │ │ │ │ └── test_known.cpython-39.pyc │ │ │ │ │ │ ├── test_find.py │ │ │ │ │ │ ├── test_info.py │ │ │ │ │ │ └── test_known.py │ │ │ │ │ └── util.py │ │ │ │ ├── test_fixcid.py │ │ │ │ ├── test_gprof2html.py │ │ │ │ ├── test_i18n.py │ │ │ │ ├── test_lll.py │ │ │ │ ├── test_md5sum.py │ │ │ │ ├── test_pathfix.py │ │ │ │ ├── test_pdeps.py │ │ │ │ ├── test_pindent.py │ │ │ │ ├── test_reindent.py │ │ │ │ └── test_sundry.py │ │ │ ├── test_trace.py │ │ │ ├── test_traceback.py │ │ │ ├── test_tracemalloc.py │ │ │ ├── test_ttk_guionly.py │ │ │ ├── test_ttk_textonly.py │ │ │ ├── test_tuple.py │ │ │ ├── test_turtle.py │ │ │ ├── test_type_comments.py │ │ │ ├── test_typechecks.py │ │ │ ├── test_types.py │ │ │ ├── test_typing.py │ │ │ ├── test_ucn.py │ │ │ ├── test_unary.py │ │ │ ├── test_unicode.py │ │ │ ├── test_unicode_file.py │ │ │ ├── test_unicode_file_functions.py │ │ │ ├── test_unicode_identifiers.py │ │ │ ├── test_unicodedata.py │ │ │ ├── test_unittest.py │ │ │ ├── test_univnewlines.py │ │ │ ├── test_unpack.py │ │ │ ├── test_unpack_ex.py │ │ │ ├── test_unparse.py │ │ │ ├── test_urllib.py │ │ │ ├── test_urllib2.py │ │ │ ├── test_urllib2_localnet.py │ │ │ ├── test_urllib2net.py │ │ │ ├── test_urllib_response.py │ │ │ ├── test_urllibnet.py │ │ │ ├── test_urlparse.py │ │ │ ├── test_userdict.py │ │ │ ├── test_userlist.py │ │ │ ├── test_userstring.py │ │ │ ├── test_utf8_mode.py │ │ │ ├── test_utf8source.py │ │ │ ├── test_uu.py │ │ │ ├── test_uuid.py │ │ │ ├── test_venv.py │ │ │ ├── test_wait3.py │ │ │ ├── test_wait4.py │ │ │ ├── test_warnings │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ └── __main__.cpython-39.pyc │ │ │ │ └── data │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── import_warning.cpython-39.opt-1.pyc │ │ │ │ │ ├── import_warning.cpython-39.opt-2.pyc │ │ │ │ │ ├── import_warning.cpython-39.pyc │ │ │ │ │ ├── stacklevel.cpython-39.opt-1.pyc │ │ │ │ │ ├── stacklevel.cpython-39.opt-2.pyc │ │ │ │ │ └── stacklevel.cpython-39.pyc │ │ │ │ │ ├── import_warning.py │ │ │ │ │ └── stacklevel.py │ │ │ ├── test_wave.py │ │ │ ├── test_weakref.py │ │ │ ├── test_weakset.py │ │ │ ├── test_webbrowser.py │ │ │ ├── test_winconsoleio.py │ │ │ ├── test_winreg.py │ │ │ ├── test_winsound.py │ │ │ ├── test_with.py │ │ │ ├── test_wsgiref.py │ │ │ ├── test_xdrlib.py │ │ │ ├── test_xml_dom_minicompat.py │ │ │ ├── test_xml_etree.py │ │ │ ├── test_xml_etree_c.py │ │ │ ├── test_xmlrpc.py │ │ │ ├── test_xmlrpc_net.py │ │ │ ├── test_xxtestfuzz.py │ │ │ ├── test_yield_from.py │ │ │ ├── test_zipapp.py │ │ │ ├── test_zipfile.py │ │ │ ├── test_zipfile64.py │ │ │ ├── test_zipimport.py │ │ │ ├── test_zipimport_support.py │ │ │ ├── test_zlib.py │ │ │ ├── test_zoneinfo │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── _support.cpython-39.opt-1.pyc │ │ │ │ │ ├── _support.cpython-39.opt-2.pyc │ │ │ │ │ ├── _support.cpython-39.pyc │ │ │ │ │ ├── test_zoneinfo.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_zoneinfo.cpython-39.opt-2.pyc │ │ │ │ │ └── test_zoneinfo.cpython-39.pyc │ │ │ │ ├── _support.py │ │ │ │ ├── data │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── update_test_data.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── update_test_data.cpython-39.opt-2.pyc │ │ │ │ │ │ └── update_test_data.cpython-39.pyc │ │ │ │ │ ├── update_test_data.py │ │ │ │ │ └── zoneinfo_data.json │ │ │ │ └── test_zoneinfo.py │ │ │ ├── testcodec.py │ │ │ ├── testtar.tar │ │ │ ├── tf_inherit_check.py │ │ │ ├── time_hashlib.py │ │ │ ├── tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt │ │ │ ├── tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt │ │ │ ├── tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt │ │ │ ├── tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt │ │ │ ├── tokenize_tests.txt │ │ │ ├── tracedmodules │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── testmod.cpython-39.opt-1.pyc │ │ │ │ │ ├── testmod.cpython-39.opt-2.pyc │ │ │ │ │ └── testmod.cpython-39.pyc │ │ │ │ └── testmod.py │ │ │ ├── win_console_handler.py │ │ │ ├── xmltestdata │ │ │ │ ├── c14n-20 │ │ │ │ │ ├── README │ │ │ │ │ ├── c14nComment.xml │ │ │ │ │ ├── c14nDefault.xml │ │ │ │ │ ├── c14nPrefix.xml │ │ │ │ │ ├── c14nPrefixQname.xml │ │ │ │ │ ├── c14nPrefixQnameXpathElem.xml │ │ │ │ │ ├── c14nQname.xml │ │ │ │ │ ├── c14nQnameElem.xml │ │ │ │ │ ├── c14nQnameXpathElem.xml │ │ │ │ │ ├── c14nTrim.xml │ │ │ │ │ ├── doc.dtd │ │ │ │ │ ├── doc.xsl │ │ │ │ │ ├── inC14N1.xml │ │ │ │ │ ├── inC14N2.xml │ │ │ │ │ ├── inC14N3.xml │ │ │ │ │ ├── inC14N4.xml │ │ │ │ │ ├── inC14N5.xml │ │ │ │ │ ├── inC14N6.xml │ │ │ │ │ ├── inNsContent.xml │ │ │ │ │ ├── inNsDefault.xml │ │ │ │ │ ├── inNsPushdown.xml │ │ │ │ │ ├── inNsRedecl.xml │ │ │ │ │ ├── inNsSort.xml │ │ │ │ │ ├── inNsSuperfluous.xml │ │ │ │ │ ├── inNsXml.xml │ │ │ │ │ ├── out_inC14N1_c14nComment.xml │ │ │ │ │ ├── out_inC14N1_c14nDefault.xml │ │ │ │ │ ├── out_inC14N2_c14nDefault.xml │ │ │ │ │ ├── out_inC14N2_c14nTrim.xml │ │ │ │ │ ├── out_inC14N3_c14nDefault.xml │ │ │ │ │ ├── out_inC14N3_c14nPrefix.xml │ │ │ │ │ ├── out_inC14N3_c14nTrim.xml │ │ │ │ │ ├── out_inC14N4_c14nDefault.xml │ │ │ │ │ ├── out_inC14N4_c14nTrim.xml │ │ │ │ │ ├── out_inC14N5_c14nDefault.xml │ │ │ │ │ ├── out_inC14N5_c14nTrim.xml │ │ │ │ │ ├── out_inC14N6_c14nDefault.xml │ │ │ │ │ ├── out_inNsContent_c14nDefault.xml │ │ │ │ │ ├── out_inNsContent_c14nPrefixQnameXpathElem.xml │ │ │ │ │ ├── out_inNsContent_c14nQnameElem.xml │ │ │ │ │ ├── out_inNsContent_c14nQnameXpathElem.xml │ │ │ │ │ ├── out_inNsDefault_c14nDefault.xml │ │ │ │ │ ├── out_inNsDefault_c14nPrefix.xml │ │ │ │ │ ├── out_inNsPushdown_c14nDefault.xml │ │ │ │ │ ├── out_inNsPushdown_c14nPrefix.xml │ │ │ │ │ ├── out_inNsRedecl_c14nDefault.xml │ │ │ │ │ ├── out_inNsRedecl_c14nPrefix.xml │ │ │ │ │ ├── out_inNsSort_c14nDefault.xml │ │ │ │ │ ├── out_inNsSort_c14nPrefix.xml │ │ │ │ │ ├── out_inNsSuperfluous_c14nDefault.xml │ │ │ │ │ ├── out_inNsSuperfluous_c14nPrefix.xml │ │ │ │ │ ├── out_inNsXml_c14nDefault.xml │ │ │ │ │ ├── out_inNsXml_c14nPrefix.xml │ │ │ │ │ ├── out_inNsXml_c14nPrefixQname.xml │ │ │ │ │ ├── out_inNsXml_c14nQname.xml │ │ │ │ │ └── world.txt │ │ │ │ ├── expat224_utf8_bug.xml │ │ │ │ ├── simple-ns.xml │ │ │ │ ├── simple.xml │ │ │ │ ├── test.xml │ │ │ │ └── test.xml.out │ │ │ ├── xmltests.py │ │ │ ├── zip_cp437_header.zip │ │ │ ├── zipdir.zip │ │ │ └── ziptestdata │ │ │ │ ├── README.md │ │ │ │ ├── __pycache__ │ │ │ │ ├── testdata_module_inside_zip.cpython-39.opt-1.pyc │ │ │ │ ├── testdata_module_inside_zip.cpython-39.opt-2.pyc │ │ │ │ └── testdata_module_inside_zip.cpython-39.pyc │ │ │ │ ├── exe_with_z64 │ │ │ │ ├── exe_with_zip │ │ │ │ ├── header.sh │ │ │ │ └── testdata_module_inside_zip.py │ │ ├── textwrap.py │ │ ├── this.py │ │ ├── threading.py │ │ ├── timeit.py │ │ ├── tkinter │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ ├── colorchooser.cpython-39.opt-1.pyc │ │ │ │ ├── colorchooser.cpython-39.opt-2.pyc │ │ │ │ ├── colorchooser.cpython-39.pyc │ │ │ │ ├── commondialog.cpython-39.opt-1.pyc │ │ │ │ ├── commondialog.cpython-39.opt-2.pyc │ │ │ │ ├── commondialog.cpython-39.pyc │ │ │ │ ├── constants.cpython-39.opt-1.pyc │ │ │ │ ├── constants.cpython-39.opt-2.pyc │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ ├── dialog.cpython-39.opt-1.pyc │ │ │ │ ├── dialog.cpython-39.opt-2.pyc │ │ │ │ ├── dialog.cpython-39.pyc │ │ │ │ ├── dnd.cpython-39.opt-1.pyc │ │ │ │ ├── dnd.cpython-39.opt-2.pyc │ │ │ │ ├── dnd.cpython-39.pyc │ │ │ │ ├── filedialog.cpython-39.opt-1.pyc │ │ │ │ ├── filedialog.cpython-39.opt-2.pyc │ │ │ │ ├── filedialog.cpython-39.pyc │ │ │ │ ├── font.cpython-39.opt-1.pyc │ │ │ │ ├── font.cpython-39.opt-2.pyc │ │ │ │ ├── font.cpython-39.pyc │ │ │ │ ├── messagebox.cpython-39.opt-1.pyc │ │ │ │ ├── messagebox.cpython-39.opt-2.pyc │ │ │ │ ├── messagebox.cpython-39.pyc │ │ │ │ ├── scrolledtext.cpython-39.opt-1.pyc │ │ │ │ ├── scrolledtext.cpython-39.opt-2.pyc │ │ │ │ ├── scrolledtext.cpython-39.pyc │ │ │ │ ├── simpledialog.cpython-39.opt-1.pyc │ │ │ │ ├── simpledialog.cpython-39.opt-2.pyc │ │ │ │ ├── simpledialog.cpython-39.pyc │ │ │ │ ├── tix.cpython-39.opt-1.pyc │ │ │ │ ├── tix.cpython-39.opt-2.pyc │ │ │ │ ├── tix.cpython-39.pyc │ │ │ │ ├── ttk.cpython-39.opt-1.pyc │ │ │ │ ├── ttk.cpython-39.opt-2.pyc │ │ │ │ └── ttk.cpython-39.pyc │ │ │ ├── colorchooser.py │ │ │ ├── commondialog.py │ │ │ ├── constants.py │ │ │ ├── dialog.py │ │ │ ├── dnd.py │ │ │ ├── filedialog.py │ │ │ ├── font.py │ │ │ ├── messagebox.py │ │ │ ├── scrolledtext.py │ │ │ ├── simpledialog.py │ │ │ ├── test │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── runtktests.cpython-39.opt-1.pyc │ │ │ │ │ ├── runtktests.cpython-39.opt-2.pyc │ │ │ │ │ ├── runtktests.cpython-39.pyc │ │ │ │ │ ├── support.cpython-39.opt-1.pyc │ │ │ │ │ ├── support.cpython-39.opt-2.pyc │ │ │ │ │ ├── support.cpython-39.pyc │ │ │ │ │ ├── widget_tests.cpython-39.opt-1.pyc │ │ │ │ │ ├── widget_tests.cpython-39.opt-2.pyc │ │ │ │ │ └── widget_tests.cpython-39.pyc │ │ │ │ ├── runtktests.py │ │ │ │ ├── support.py │ │ │ │ ├── test_tkinter │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── test_colorchooser.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_colorchooser.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_colorchooser.cpython-39.pyc │ │ │ │ │ │ ├── test_font.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_font.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_font.cpython-39.pyc │ │ │ │ │ │ ├── test_geometry_managers.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_geometry_managers.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_geometry_managers.cpython-39.pyc │ │ │ │ │ │ ├── test_images.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_images.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_images.cpython-39.pyc │ │ │ │ │ │ ├── test_loadtk.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_loadtk.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_loadtk.cpython-39.pyc │ │ │ │ │ │ ├── test_misc.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_misc.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_misc.cpython-39.pyc │ │ │ │ │ │ ├── test_simpledialog.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_simpledialog.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_simpledialog.cpython-39.pyc │ │ │ │ │ │ ├── test_text.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_text.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_text.cpython-39.pyc │ │ │ │ │ │ ├── test_variables.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_variables.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_variables.cpython-39.pyc │ │ │ │ │ │ ├── test_widgets.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_widgets.cpython-39.opt-2.pyc │ │ │ │ │ │ └── test_widgets.cpython-39.pyc │ │ │ │ │ ├── test_colorchooser.py │ │ │ │ │ ├── test_font.py │ │ │ │ │ ├── test_geometry_managers.py │ │ │ │ │ ├── test_images.py │ │ │ │ │ ├── test_loadtk.py │ │ │ │ │ ├── test_misc.py │ │ │ │ │ ├── test_simpledialog.py │ │ │ │ │ ├── test_text.py │ │ │ │ │ ├── test_variables.py │ │ │ │ │ └── test_widgets.py │ │ │ │ ├── test_ttk │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── test_extensions.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_extensions.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_extensions.cpython-39.pyc │ │ │ │ │ │ ├── test_functions.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_functions.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_functions.cpython-39.pyc │ │ │ │ │ │ ├── test_style.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_style.cpython-39.opt-2.pyc │ │ │ │ │ │ ├── test_style.cpython-39.pyc │ │ │ │ │ │ ├── test_widgets.cpython-39.opt-1.pyc │ │ │ │ │ │ ├── test_widgets.cpython-39.opt-2.pyc │ │ │ │ │ │ └── test_widgets.cpython-39.pyc │ │ │ │ │ ├── test_extensions.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_style.py │ │ │ │ │ └── test_widgets.py │ │ │ │ └── widget_tests.py │ │ │ ├── tix.py │ │ │ └── ttk.py │ │ ├── token.py │ │ ├── tokenize.py │ │ ├── trace.py │ │ ├── traceback.py │ │ ├── tracemalloc.py │ │ ├── tty.py │ │ ├── turtle.py │ │ ├── turtledemo │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ ├── bytedesign.cpython-39.opt-1.pyc │ │ │ │ ├── bytedesign.cpython-39.opt-2.pyc │ │ │ │ ├── bytedesign.cpython-39.pyc │ │ │ │ ├── chaos.cpython-39.opt-1.pyc │ │ │ │ ├── chaos.cpython-39.opt-2.pyc │ │ │ │ ├── chaos.cpython-39.pyc │ │ │ │ ├── clock.cpython-39.opt-1.pyc │ │ │ │ ├── clock.cpython-39.opt-2.pyc │ │ │ │ ├── clock.cpython-39.pyc │ │ │ │ ├── colormixer.cpython-39.opt-1.pyc │ │ │ │ ├── colormixer.cpython-39.opt-2.pyc │ │ │ │ ├── colormixer.cpython-39.pyc │ │ │ │ ├── forest.cpython-39.opt-1.pyc │ │ │ │ ├── forest.cpython-39.opt-2.pyc │ │ │ │ ├── forest.cpython-39.pyc │ │ │ │ ├── fractalcurves.cpython-39.opt-1.pyc │ │ │ │ ├── fractalcurves.cpython-39.opt-2.pyc │ │ │ │ ├── fractalcurves.cpython-39.pyc │ │ │ │ ├── lindenmayer.cpython-39.opt-1.pyc │ │ │ │ ├── lindenmayer.cpython-39.opt-2.pyc │ │ │ │ ├── lindenmayer.cpython-39.pyc │ │ │ │ ├── minimal_hanoi.cpython-39.opt-1.pyc │ │ │ │ ├── minimal_hanoi.cpython-39.opt-2.pyc │ │ │ │ ├── minimal_hanoi.cpython-39.pyc │ │ │ │ ├── nim.cpython-39.opt-1.pyc │ │ │ │ ├── nim.cpython-39.opt-2.pyc │ │ │ │ ├── nim.cpython-39.pyc │ │ │ │ ├── paint.cpython-39.opt-1.pyc │ │ │ │ ├── paint.cpython-39.opt-2.pyc │ │ │ │ ├── paint.cpython-39.pyc │ │ │ │ ├── peace.cpython-39.opt-1.pyc │ │ │ │ ├── peace.cpython-39.opt-2.pyc │ │ │ │ ├── peace.cpython-39.pyc │ │ │ │ ├── penrose.cpython-39.opt-1.pyc │ │ │ │ ├── penrose.cpython-39.opt-2.pyc │ │ │ │ ├── penrose.cpython-39.pyc │ │ │ │ ├── planet_and_moon.cpython-39.opt-1.pyc │ │ │ │ ├── planet_and_moon.cpython-39.opt-2.pyc │ │ │ │ ├── planet_and_moon.cpython-39.pyc │ │ │ │ ├── rosette.cpython-39.opt-1.pyc │ │ │ │ ├── rosette.cpython-39.opt-2.pyc │ │ │ │ ├── rosette.cpython-39.pyc │ │ │ │ ├── round_dance.cpython-39.opt-1.pyc │ │ │ │ ├── round_dance.cpython-39.opt-2.pyc │ │ │ │ ├── round_dance.cpython-39.pyc │ │ │ │ ├── sorting_animate.cpython-39.opt-1.pyc │ │ │ │ ├── sorting_animate.cpython-39.opt-2.pyc │ │ │ │ ├── sorting_animate.cpython-39.pyc │ │ │ │ ├── tree.cpython-39.opt-1.pyc │ │ │ │ ├── tree.cpython-39.opt-2.pyc │ │ │ │ ├── tree.cpython-39.pyc │ │ │ │ ├── two_canvases.cpython-39.opt-1.pyc │ │ │ │ ├── two_canvases.cpython-39.opt-2.pyc │ │ │ │ ├── two_canvases.cpython-39.pyc │ │ │ │ ├── yinyang.cpython-39.opt-1.pyc │ │ │ │ ├── yinyang.cpython-39.opt-2.pyc │ │ │ │ └── yinyang.cpython-39.pyc │ │ │ ├── bytedesign.py │ │ │ ├── chaos.py │ │ │ ├── clock.py │ │ │ ├── colormixer.py │ │ │ ├── forest.py │ │ │ ├── fractalcurves.py │ │ │ ├── lindenmayer.py │ │ │ ├── minimal_hanoi.py │ │ │ ├── nim.py │ │ │ ├── paint.py │ │ │ ├── peace.py │ │ │ ├── penrose.py │ │ │ ├── planet_and_moon.py │ │ │ ├── rosette.py │ │ │ ├── round_dance.py │ │ │ ├── sorting_animate.py │ │ │ ├── tree.py │ │ │ ├── turtle.cfg │ │ │ ├── two_canvases.py │ │ │ └── yinyang.py │ │ ├── types.py │ │ ├── typing.py │ │ ├── unittest │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ ├── _log.cpython-39.opt-1.pyc │ │ │ │ ├── _log.cpython-39.opt-2.pyc │ │ │ │ ├── _log.cpython-39.pyc │ │ │ │ ├── async_case.cpython-39.opt-1.pyc │ │ │ │ ├── async_case.cpython-39.opt-2.pyc │ │ │ │ ├── async_case.cpython-39.pyc │ │ │ │ ├── case.cpython-39.opt-1.pyc │ │ │ │ ├── case.cpython-39.opt-2.pyc │ │ │ │ ├── case.cpython-39.pyc │ │ │ │ ├── loader.cpython-39.opt-1.pyc │ │ │ │ ├── loader.cpython-39.opt-2.pyc │ │ │ │ ├── loader.cpython-39.pyc │ │ │ │ ├── main.cpython-39.opt-1.pyc │ │ │ │ ├── main.cpython-39.opt-2.pyc │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ ├── mock.cpython-39.opt-1.pyc │ │ │ │ ├── mock.cpython-39.opt-2.pyc │ │ │ │ ├── mock.cpython-39.pyc │ │ │ │ ├── result.cpython-39.opt-1.pyc │ │ │ │ ├── result.cpython-39.opt-2.pyc │ │ │ │ ├── result.cpython-39.pyc │ │ │ │ ├── runner.cpython-39.opt-1.pyc │ │ │ │ ├── runner.cpython-39.opt-2.pyc │ │ │ │ ├── runner.cpython-39.pyc │ │ │ │ ├── signals.cpython-39.opt-1.pyc │ │ │ │ ├── signals.cpython-39.opt-2.pyc │ │ │ │ ├── signals.cpython-39.pyc │ │ │ │ ├── suite.cpython-39.opt-1.pyc │ │ │ │ ├── suite.cpython-39.opt-2.pyc │ │ │ │ ├── suite.cpython-39.pyc │ │ │ │ ├── util.cpython-39.opt-1.pyc │ │ │ │ ├── util.cpython-39.opt-2.pyc │ │ │ │ └── util.cpython-39.pyc │ │ │ ├── _log.py │ │ │ ├── async_case.py │ │ │ ├── case.py │ │ │ ├── loader.py │ │ │ ├── main.py │ │ │ ├── mock.py │ │ │ ├── result.py │ │ │ ├── runner.py │ │ │ ├── signals.py │ │ │ ├── suite.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── _test_warnings.cpython-39.opt-1.pyc │ │ │ │ │ ├── _test_warnings.cpython-39.opt-2.pyc │ │ │ │ │ ├── _test_warnings.cpython-39.pyc │ │ │ │ │ ├── dummy.cpython-39.opt-1.pyc │ │ │ │ │ ├── dummy.cpython-39.opt-2.pyc │ │ │ │ │ ├── dummy.cpython-39.pyc │ │ │ │ │ ├── support.cpython-39.opt-1.pyc │ │ │ │ │ ├── support.cpython-39.opt-2.pyc │ │ │ │ │ ├── support.cpython-39.pyc │ │ │ │ │ ├── test_assertions.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_assertions.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_assertions.cpython-39.pyc │ │ │ │ │ ├── test_async_case.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_async_case.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_async_case.cpython-39.pyc │ │ │ │ │ ├── test_break.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_break.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_break.cpython-39.pyc │ │ │ │ │ ├── test_case.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_case.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_case.cpython-39.pyc │ │ │ │ │ ├── test_discovery.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_discovery.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_discovery.cpython-39.pyc │ │ │ │ │ ├── test_functiontestcase.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_functiontestcase.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_functiontestcase.cpython-39.pyc │ │ │ │ │ ├── test_loader.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_loader.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_loader.cpython-39.pyc │ │ │ │ │ ├── test_program.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_program.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_program.cpython-39.pyc │ │ │ │ │ ├── test_result.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_result.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_result.cpython-39.pyc │ │ │ │ │ ├── test_runner.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_runner.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_runner.cpython-39.pyc │ │ │ │ │ ├── test_setups.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_setups.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_setups.cpython-39.pyc │ │ │ │ │ ├── test_skipping.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_skipping.cpython-39.opt-2.pyc │ │ │ │ │ ├── test_skipping.cpython-39.pyc │ │ │ │ │ ├── test_suite.cpython-39.opt-1.pyc │ │ │ │ │ ├── test_suite.cpython-39.opt-2.pyc │ │ │ │ │ └── test_suite.cpython-39.pyc │ │ │ │ ├── _test_warnings.py │ │ │ │ ├── dummy.py │ │ │ │ ├── support.py │ │ │ │ ├── test_assertions.py │ │ │ │ ├── test_async_case.py │ │ │ │ ├── test_break.py │ │ │ │ ├── test_case.py │ │ │ │ ├── test_discovery.py │ │ │ │ ├── test_functiontestcase.py │ │ │ │ ├── test_loader.py │ │ │ │ ├── test_program.py │ │ │ │ ├── test_result.py │ │ │ │ ├── test_runner.py │ │ │ │ ├── test_setups.py │ │ │ │ ├── test_skipping.py │ │ │ │ ├── test_suite.py │ │ │ │ └── testmock │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ ├── support.cpython-39.opt-1.pyc │ │ │ │ │ ├── support.cpython-39.opt-2.pyc │ │ │ │ │ ├── support.cpython-39.pyc │ │ │ │ │ ├── testasync.cpython-39.opt-1.pyc │ │ │ │ │ ├── testasync.cpython-39.opt-2.pyc │ │ │ │ │ ├── testasync.cpython-39.pyc │ │ │ │ │ ├── testcallable.cpython-39.opt-1.pyc │ │ │ │ │ ├── testcallable.cpython-39.opt-2.pyc │ │ │ │ │ ├── testcallable.cpython-39.pyc │ │ │ │ │ ├── testhelpers.cpython-39.opt-1.pyc │ │ │ │ │ ├── testhelpers.cpython-39.opt-2.pyc │ │ │ │ │ ├── testhelpers.cpython-39.pyc │ │ │ │ │ ├── testmagicmethods.cpython-39.opt-1.pyc │ │ │ │ │ ├── testmagicmethods.cpython-39.opt-2.pyc │ │ │ │ │ ├── testmagicmethods.cpython-39.pyc │ │ │ │ │ ├── testmock.cpython-39.opt-1.pyc │ │ │ │ │ ├── testmock.cpython-39.opt-2.pyc │ │ │ │ │ ├── testmock.cpython-39.pyc │ │ │ │ │ ├── testpatch.cpython-39.opt-1.pyc │ │ │ │ │ ├── testpatch.cpython-39.opt-2.pyc │ │ │ │ │ ├── testpatch.cpython-39.pyc │ │ │ │ │ ├── testsealable.cpython-39.opt-1.pyc │ │ │ │ │ ├── testsealable.cpython-39.opt-2.pyc │ │ │ │ │ ├── testsealable.cpython-39.pyc │ │ │ │ │ ├── testsentinel.cpython-39.opt-1.pyc │ │ │ │ │ ├── testsentinel.cpython-39.opt-2.pyc │ │ │ │ │ ├── testsentinel.cpython-39.pyc │ │ │ │ │ ├── testwith.cpython-39.opt-1.pyc │ │ │ │ │ ├── testwith.cpython-39.opt-2.pyc │ │ │ │ │ └── testwith.cpython-39.pyc │ │ │ │ │ ├── support.py │ │ │ │ │ ├── testasync.py │ │ │ │ │ ├── testcallable.py │ │ │ │ │ ├── testhelpers.py │ │ │ │ │ ├── testmagicmethods.py │ │ │ │ │ ├── testmock.py │ │ │ │ │ ├── testpatch.py │ │ │ │ │ ├── testsealable.py │ │ │ │ │ ├── testsentinel.py │ │ │ │ │ └── testwith.py │ │ │ └── util.py │ │ ├── urllib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── error.cpython-39.opt-1.pyc │ │ │ │ ├── error.cpython-39.opt-2.pyc │ │ │ │ ├── error.cpython-39.pyc │ │ │ │ ├── parse.cpython-39.opt-1.pyc │ │ │ │ ├── parse.cpython-39.opt-2.pyc │ │ │ │ ├── parse.cpython-39.pyc │ │ │ │ ├── request.cpython-39.opt-1.pyc │ │ │ │ ├── request.cpython-39.opt-2.pyc │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ ├── response.cpython-39.opt-1.pyc │ │ │ │ ├── response.cpython-39.opt-2.pyc │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ ├── robotparser.cpython-39.opt-1.pyc │ │ │ │ ├── robotparser.cpython-39.opt-2.pyc │ │ │ │ └── robotparser.cpython-39.pyc │ │ │ ├── error.py │ │ │ ├── parse.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── robotparser.py │ │ ├── uu.py │ │ ├── uuid.py │ │ ├── venv │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __main__.cpython-39.opt-1.pyc │ │ │ │ ├── __main__.cpython-39.opt-2.pyc │ │ │ │ └── __main__.cpython-39.pyc │ │ │ └── scripts │ │ │ │ ├── common │ │ │ │ ├── Activate.ps1 │ │ │ │ └── activate │ │ │ │ ├── nt │ │ │ │ ├── activate.bat │ │ │ │ ├── deactivate.bat │ │ │ │ ├── python.exe │ │ │ │ └── pythonw.exe │ │ │ │ └── posix │ │ │ │ ├── activate.csh │ │ │ │ └── activate.fish │ │ ├── warnings.py │ │ ├── wave.py │ │ ├── weakref.py │ │ ├── webbrowser.py │ │ ├── wsgiref │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── handlers.cpython-39.opt-1.pyc │ │ │ │ ├── handlers.cpython-39.opt-2.pyc │ │ │ │ ├── handlers.cpython-39.pyc │ │ │ │ ├── headers.cpython-39.opt-1.pyc │ │ │ │ ├── headers.cpython-39.opt-2.pyc │ │ │ │ ├── headers.cpython-39.pyc │ │ │ │ ├── simple_server.cpython-39.opt-1.pyc │ │ │ │ ├── simple_server.cpython-39.opt-2.pyc │ │ │ │ ├── simple_server.cpython-39.pyc │ │ │ │ ├── util.cpython-39.opt-1.pyc │ │ │ │ ├── util.cpython-39.opt-2.pyc │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ ├── validate.cpython-39.opt-1.pyc │ │ │ │ ├── validate.cpython-39.opt-2.pyc │ │ │ │ └── validate.cpython-39.pyc │ │ │ ├── handlers.py │ │ │ ├── headers.py │ │ │ ├── simple_server.py │ │ │ ├── util.py │ │ │ └── validate.py │ │ ├── xdrlib.py │ │ ├── xml │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── dom │ │ │ │ ├── NodeFilter.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── NodeFilter.cpython-39.opt-1.pyc │ │ │ │ │ ├── NodeFilter.cpython-39.opt-2.pyc │ │ │ │ │ ├── NodeFilter.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── domreg.cpython-39.opt-1.pyc │ │ │ │ │ ├── domreg.cpython-39.opt-2.pyc │ │ │ │ │ ├── domreg.cpython-39.pyc │ │ │ │ │ ├── expatbuilder.cpython-39.opt-1.pyc │ │ │ │ │ ├── expatbuilder.cpython-39.opt-2.pyc │ │ │ │ │ ├── expatbuilder.cpython-39.pyc │ │ │ │ │ ├── minicompat.cpython-39.opt-1.pyc │ │ │ │ │ ├── minicompat.cpython-39.opt-2.pyc │ │ │ │ │ ├── minicompat.cpython-39.pyc │ │ │ │ │ ├── minidom.cpython-39.opt-1.pyc │ │ │ │ │ ├── minidom.cpython-39.opt-2.pyc │ │ │ │ │ ├── minidom.cpython-39.pyc │ │ │ │ │ ├── pulldom.cpython-39.opt-1.pyc │ │ │ │ │ ├── pulldom.cpython-39.opt-2.pyc │ │ │ │ │ ├── pulldom.cpython-39.pyc │ │ │ │ │ ├── xmlbuilder.cpython-39.opt-1.pyc │ │ │ │ │ ├── xmlbuilder.cpython-39.opt-2.pyc │ │ │ │ │ └── xmlbuilder.cpython-39.pyc │ │ │ │ ├── domreg.py │ │ │ │ ├── expatbuilder.py │ │ │ │ ├── minicompat.py │ │ │ │ ├── minidom.py │ │ │ │ ├── pulldom.py │ │ │ │ └── xmlbuilder.py │ │ │ ├── etree │ │ │ │ ├── ElementInclude.py │ │ │ │ ├── ElementPath.py │ │ │ │ ├── ElementTree.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── ElementInclude.cpython-39.opt-1.pyc │ │ │ │ │ ├── ElementInclude.cpython-39.opt-2.pyc │ │ │ │ │ ├── ElementInclude.cpython-39.pyc │ │ │ │ │ ├── ElementPath.cpython-39.opt-1.pyc │ │ │ │ │ ├── ElementPath.cpython-39.opt-2.pyc │ │ │ │ │ ├── ElementPath.cpython-39.pyc │ │ │ │ │ ├── ElementTree.cpython-39.opt-1.pyc │ │ │ │ │ ├── ElementTree.cpython-39.opt-2.pyc │ │ │ │ │ ├── ElementTree.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── cElementTree.cpython-39.opt-1.pyc │ │ │ │ │ ├── cElementTree.cpython-39.opt-2.pyc │ │ │ │ │ └── cElementTree.cpython-39.pyc │ │ │ │ └── cElementTree.py │ │ │ ├── parsers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── expat.cpython-39.opt-1.pyc │ │ │ │ │ ├── expat.cpython-39.opt-2.pyc │ │ │ │ │ └── expat.cpython-39.pyc │ │ │ │ └── expat.py │ │ │ └── sax │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _exceptions.cpython-39.opt-1.pyc │ │ │ │ ├── _exceptions.cpython-39.opt-2.pyc │ │ │ │ ├── _exceptions.cpython-39.pyc │ │ │ │ ├── expatreader.cpython-39.opt-1.pyc │ │ │ │ ├── expatreader.cpython-39.opt-2.pyc │ │ │ │ ├── expatreader.cpython-39.pyc │ │ │ │ ├── handler.cpython-39.opt-1.pyc │ │ │ │ ├── handler.cpython-39.opt-2.pyc │ │ │ │ ├── handler.cpython-39.pyc │ │ │ │ ├── saxutils.cpython-39.opt-1.pyc │ │ │ │ ├── saxutils.cpython-39.opt-2.pyc │ │ │ │ ├── saxutils.cpython-39.pyc │ │ │ │ ├── xmlreader.cpython-39.opt-1.pyc │ │ │ │ ├── xmlreader.cpython-39.opt-2.pyc │ │ │ │ └── xmlreader.cpython-39.pyc │ │ │ │ ├── _exceptions.py │ │ │ │ ├── expatreader.py │ │ │ │ ├── handler.py │ │ │ │ ├── saxutils.py │ │ │ │ └── xmlreader.py │ │ ├── xmlrpc │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── client.cpython-39.opt-1.pyc │ │ │ │ ├── client.cpython-39.opt-2.pyc │ │ │ │ ├── client.cpython-39.pyc │ │ │ │ ├── server.cpython-39.opt-1.pyc │ │ │ │ ├── server.cpython-39.opt-2.pyc │ │ │ │ └── server.cpython-39.pyc │ │ │ ├── client.py │ │ │ └── server.py │ │ ├── zipapp.py │ │ ├── zipfile.py │ │ ├── zipimport.py │ │ └── zoneinfo │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ ├── __init__.cpython-39.opt-2.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _common.cpython-39.opt-1.pyc │ │ │ ├── _common.cpython-39.opt-2.pyc │ │ │ ├── _common.cpython-39.pyc │ │ │ ├── _tzpath.cpython-39.opt-1.pyc │ │ │ ├── _tzpath.cpython-39.opt-2.pyc │ │ │ ├── _tzpath.cpython-39.pyc │ │ │ ├── _zoneinfo.cpython-39.opt-1.pyc │ │ │ ├── _zoneinfo.cpython-39.opt-2.pyc │ │ │ └── _zoneinfo.cpython-39.pyc │ │ │ ├── _common.py │ │ │ ├── _tzpath.py │ │ │ └── _zoneinfo.py │ ├── NEWS.txt │ ├── Scripts │ │ ├── easy_install-3.9.exe │ │ ├── easy_install.exe │ │ ├── pip.exe │ │ ├── pip3.9.exe │ │ └── pip3.exe │ ├── Tools │ │ ├── demo │ │ │ ├── beer.py │ │ │ ├── eiffel.py │ │ │ ├── hanoi.py │ │ │ ├── life.py │ │ │ ├── markov.py │ │ │ ├── mcast.py │ │ │ ├── queens.py │ │ │ ├── redemo.py │ │ │ ├── rpython.py │ │ │ ├── rpythond.py │ │ │ ├── sortvisu.py │ │ │ ├── spreadsheet.py │ │ │ └── vector.py │ │ ├── i18n │ │ │ ├── makelocalealias.py │ │ │ ├── msgfmt.py │ │ │ └── pygettext.py │ │ ├── pynche │ │ │ ├── ChipViewer.py │ │ │ ├── ColorDB.py │ │ │ ├── DetailsViewer.py │ │ │ ├── ListViewer.py │ │ │ ├── Main.py │ │ │ ├── PyncheWidget.py │ │ │ ├── StripViewer.py │ │ │ ├── Switchboard.py │ │ │ ├── TextViewer.py │ │ │ ├── TypeinViewer.py │ │ │ ├── X │ │ │ │ ├── rgb.txt │ │ │ │ └── xlicense.txt │ │ │ ├── __init__.py │ │ │ ├── html40colors.txt │ │ │ ├── namedcolors.txt │ │ │ ├── pyColorChooser.py │ │ │ ├── pynche.pyw │ │ │ ├── webcolors.txt │ │ │ └── websafe.txt │ │ └── scripts │ │ │ ├── 2to3.py │ │ │ ├── abitype.py │ │ │ ├── analyze_dxp.py │ │ │ ├── byext.py │ │ │ ├── byteyears.py │ │ │ ├── checkpip.py │ │ │ ├── cleanfuture.py │ │ │ ├── combinerefs.py │ │ │ ├── copytime.py │ │ │ ├── crlf.py │ │ │ ├── db2pickle.py │ │ │ ├── diff.py │ │ │ ├── dutree.py │ │ │ ├── eptags.py │ │ │ ├── find-uname.py │ │ │ ├── find_recursionlimit.py │ │ │ ├── finddiv.py │ │ │ ├── findlinksto.py │ │ │ ├── findnocoding.py │ │ │ ├── fixcid.py │ │ │ ├── fixdiv.py │ │ │ ├── fixheader.py │ │ │ ├── fixnotice.py │ │ │ ├── fixps.py │ │ │ ├── generate_opcode_h.py │ │ │ ├── generate_symbol_py.py │ │ │ ├── generate_token.py │ │ │ ├── get-remote-certificate.py │ │ │ ├── google.py │ │ │ ├── gprof2html.py │ │ │ ├── highlight.py │ │ │ ├── ifdef.py │ │ │ ├── import_diagnostics.py │ │ │ ├── lfcr.py │ │ │ ├── linktree.py │ │ │ ├── lll.py │ │ │ ├── mailerdaemon.py │ │ │ ├── make_ctype.py │ │ │ ├── md5sum.py │ │ │ ├── mkreal.py │ │ │ ├── ndiff.py │ │ │ ├── nm2def.py │ │ │ ├── objgraph.py │ │ │ ├── parse_html5_entities.py │ │ │ ├── parseentities.py │ │ │ ├── patchcheck.py │ │ │ ├── pathfix.py │ │ │ ├── pdeps.py │ │ │ ├── pep384_macrocheck.py │ │ │ ├── pickle2db.py │ │ │ ├── pindent.py │ │ │ ├── ptags.py │ │ │ ├── pydoc3.py │ │ │ ├── pysource.py │ │ │ ├── reindent-rst.py │ │ │ ├── reindent.py │ │ │ ├── rgrep.py │ │ │ ├── run_tests.py │ │ │ ├── serve.py │ │ │ ├── smelly.py │ │ │ ├── suff.py │ │ │ ├── texi2html.py │ │ │ ├── untabify.py │ │ │ ├── update_file.py │ │ │ ├── var_access_benchmark.py │ │ │ ├── which.py │ │ │ └── win_add2path.py │ ├── include │ │ ├── Python-ast.h │ │ ├── Python.h │ │ ├── abstract.h │ │ ├── asdl.h │ │ ├── ast.h │ │ ├── bitset.h │ │ ├── bltinmodule.h │ │ ├── boolobject.h │ │ ├── bytearrayobject.h │ │ ├── bytesobject.h │ │ ├── cellobject.h │ │ ├── ceval.h │ │ ├── classobject.h │ │ ├── code.h │ │ ├── codecs.h │ │ ├── compile.h │ │ ├── complexobject.h │ │ ├── context.h │ │ ├── cpython │ │ │ ├── abstract.h │ │ │ ├── bytearrayobject.h │ │ │ ├── bytesobject.h │ │ │ ├── ceval.h │ │ │ ├── code.h │ │ │ ├── dictobject.h │ │ │ ├── fileobject.h │ │ │ ├── fileutils.h │ │ │ ├── frameobject.h │ │ │ ├── import.h │ │ │ ├── initconfig.h │ │ │ ├── interpreteridobject.h │ │ │ ├── listobject.h │ │ │ ├── methodobject.h │ │ │ ├── object.h │ │ │ ├── objimpl.h │ │ │ ├── pyerrors.h │ │ │ ├── pylifecycle.h │ │ │ ├── pymem.h │ │ │ ├── pystate.h │ │ │ ├── sysmodule.h │ │ │ ├── traceback.h │ │ │ ├── tupleobject.h │ │ │ └── unicodeobject.h │ │ ├── datetime.h │ │ ├── descrobject.h │ │ ├── dictobject.h │ │ ├── dynamic_annotations.h │ │ ├── enumobject.h │ │ ├── errcode.h │ │ ├── eval.h │ │ ├── exports.h │ │ ├── fileobject.h │ │ ├── fileutils.h │ │ ├── floatobject.h │ │ ├── frameobject.h │ │ ├── funcobject.h │ │ ├── genericaliasobject.h │ │ ├── genobject.h │ │ ├── graminit.h │ │ ├── grammar.h │ │ ├── import.h │ │ ├── internal │ │ │ ├── pegen_interface.h │ │ │ ├── pycore_abstract.h │ │ │ ├── pycore_accu.h │ │ │ ├── pycore_atomic.h │ │ │ ├── pycore_bytes_methods.h │ │ │ ├── pycore_byteswap.h │ │ │ ├── pycore_call.h │ │ │ ├── pycore_ceval.h │ │ │ ├── pycore_code.h │ │ │ ├── pycore_condvar.h │ │ │ ├── pycore_context.h │ │ │ ├── pycore_dtoa.h │ │ │ ├── pycore_fileutils.h │ │ │ ├── pycore_gc.h │ │ │ ├── pycore_getopt.h │ │ │ ├── pycore_gil.h │ │ │ ├── pycore_hamt.h │ │ │ ├── pycore_hashtable.h │ │ │ ├── pycore_import.h │ │ │ ├── pycore_initconfig.h │ │ │ ├── pycore_interp.h │ │ │ ├── pycore_object.h │ │ │ ├── pycore_pathconfig.h │ │ │ ├── pycore_pyerrors.h │ │ │ ├── pycore_pyhash.h │ │ │ ├── pycore_pylifecycle.h │ │ │ ├── pycore_pymem.h │ │ │ ├── pycore_pystate.h │ │ │ ├── pycore_runtime.h │ │ │ ├── pycore_sysmodule.h │ │ │ ├── pycore_traceback.h │ │ │ ├── pycore_tupleobject.h │ │ │ └── pycore_warnings.h │ │ ├── interpreteridobject.h │ │ ├── intrcheck.h │ │ ├── iterobject.h │ │ ├── listobject.h │ │ ├── longintrepr.h │ │ ├── longobject.h │ │ ├── marshal.h │ │ ├── memoryobject.h │ │ ├── methodobject.h │ │ ├── modsupport.h │ │ ├── moduleobject.h │ │ ├── namespaceobject.h │ │ ├── node.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── odictobject.h │ │ ├── opcode.h │ │ ├── osdefs.h │ │ ├── osmodule.h │ │ ├── parsetok.h │ │ ├── patchlevel.h │ │ ├── picklebufobject.h │ │ ├── py_curses.h │ │ ├── pyarena.h │ │ ├── pycapsule.h │ │ ├── pyconfig.h │ │ ├── pyctype.h │ │ ├── pydebug.h │ │ ├── pydtrace.h │ │ ├── pyerrors.h │ │ ├── pyexpat.h │ │ ├── pyfpe.h │ │ ├── pyframe.h │ │ ├── pyhash.h │ │ ├── pylifecycle.h │ │ ├── pymacconfig.h │ │ ├── pymacro.h │ │ ├── pymath.h │ │ ├── pymem.h │ │ ├── pyport.h │ │ ├── pystate.h │ │ ├── pystrcmp.h │ │ ├── pystrhex.h │ │ ├── pystrtod.h │ │ ├── pythonrun.h │ │ ├── pythread.h │ │ ├── pytime.h │ │ ├── rangeobject.h │ │ ├── setobject.h │ │ ├── sliceobject.h │ │ ├── structmember.h │ │ ├── structseq.h │ │ ├── symtable.h │ │ ├── sysmodule.h │ │ ├── token.h │ │ ├── traceback.h │ │ ├── tracemalloc.h │ │ ├── tupleobject.h │ │ ├── typeslots.h │ │ ├── ucnhash.h │ │ ├── unicodeobject.h │ │ ├── warnings.h │ │ └── weakrefobject.h │ ├── libs │ │ ├── _tkinter.lib │ │ ├── python3.lib │ │ └── python39.lib │ ├── python.exe │ ├── python3.dll │ ├── python39.dll │ ├── pythonw.exe │ ├── tcl │ │ ├── dde1.4 │ │ │ ├── pkgIndex.tcl │ │ │ └── tcldde14.dll │ │ ├── nmake │ │ │ ├── nmakehlp.c │ │ │ ├── rules.vc │ │ │ ├── targets.vc │ │ │ └── tcl.nmake │ │ ├── reg1.3 │ │ │ ├── pkgIndex.tcl │ │ │ └── tclreg13.dll │ │ ├── tcl8.6 │ │ │ ├── auto.tcl │ │ │ ├── clock.tcl │ │ │ ├── encoding │ │ │ │ ├── ascii.enc │ │ │ │ ├── big5.enc │ │ │ │ ├── cp1250.enc │ │ │ │ ├── cp1251.enc │ │ │ │ ├── cp1252.enc │ │ │ │ ├── cp1253.enc │ │ │ │ ├── cp1254.enc │ │ │ │ ├── cp1255.enc │ │ │ │ ├── cp1256.enc │ │ │ │ ├── cp1257.enc │ │ │ │ ├── cp1258.enc │ │ │ │ ├── cp437.enc │ │ │ │ ├── cp737.enc │ │ │ │ ├── cp775.enc │ │ │ │ ├── cp850.enc │ │ │ │ ├── cp852.enc │ │ │ │ ├── cp855.enc │ │ │ │ ├── cp857.enc │ │ │ │ ├── cp860.enc │ │ │ │ ├── cp861.enc │ │ │ │ ├── cp862.enc │ │ │ │ ├── cp863.enc │ │ │ │ ├── cp864.enc │ │ │ │ ├── cp865.enc │ │ │ │ ├── cp866.enc │ │ │ │ ├── cp869.enc │ │ │ │ ├── cp874.enc │ │ │ │ ├── cp932.enc │ │ │ │ ├── cp936.enc │ │ │ │ ├── cp949.enc │ │ │ │ ├── cp950.enc │ │ │ │ ├── dingbats.enc │ │ │ │ ├── ebcdic.enc │ │ │ │ ├── euc-cn.enc │ │ │ │ ├── euc-jp.enc │ │ │ │ ├── euc-kr.enc │ │ │ │ ├── gb12345.enc │ │ │ │ ├── gb1988.enc │ │ │ │ ├── gb2312-raw.enc │ │ │ │ ├── gb2312.enc │ │ │ │ ├── iso2022-jp.enc │ │ │ │ ├── iso2022-kr.enc │ │ │ │ ├── iso2022.enc │ │ │ │ ├── iso8859-1.enc │ │ │ │ ├── iso8859-10.enc │ │ │ │ ├── iso8859-13.enc │ │ │ │ ├── iso8859-14.enc │ │ │ │ ├── iso8859-15.enc │ │ │ │ ├── iso8859-16.enc │ │ │ │ ├── iso8859-2.enc │ │ │ │ ├── iso8859-3.enc │ │ │ │ ├── iso8859-4.enc │ │ │ │ ├── iso8859-5.enc │ │ │ │ ├── iso8859-6.enc │ │ │ │ ├── iso8859-7.enc │ │ │ │ ├── iso8859-8.enc │ │ │ │ ├── iso8859-9.enc │ │ │ │ ├── jis0201.enc │ │ │ │ ├── jis0208.enc │ │ │ │ ├── jis0212.enc │ │ │ │ ├── koi8-r.enc │ │ │ │ ├── koi8-u.enc │ │ │ │ ├── ksc5601.enc │ │ │ │ ├── macCentEuro.enc │ │ │ │ ├── macCroatian.enc │ │ │ │ ├── macCyrillic.enc │ │ │ │ ├── macDingbats.enc │ │ │ │ ├── macGreek.enc │ │ │ │ ├── macIceland.enc │ │ │ │ ├── macJapan.enc │ │ │ │ ├── macRoman.enc │ │ │ │ ├── macRomania.enc │ │ │ │ ├── macThai.enc │ │ │ │ ├── macTurkish.enc │ │ │ │ ├── macUkraine.enc │ │ │ │ ├── shiftjis.enc │ │ │ │ ├── symbol.enc │ │ │ │ └── tis-620.enc │ │ │ ├── history.tcl │ │ │ ├── http1.0 │ │ │ │ ├── http.tcl │ │ │ │ └── pkgIndex.tcl │ │ │ ├── init.tcl │ │ │ ├── msgs │ │ │ │ ├── af.msg │ │ │ │ ├── af_za.msg │ │ │ │ ├── ar.msg │ │ │ │ ├── ar_in.msg │ │ │ │ ├── ar_jo.msg │ │ │ │ ├── ar_lb.msg │ │ │ │ ├── ar_sy.msg │ │ │ │ ├── be.msg │ │ │ │ ├── bg.msg │ │ │ │ ├── bn.msg │ │ │ │ ├── bn_in.msg │ │ │ │ ├── ca.msg │ │ │ │ ├── cs.msg │ │ │ │ ├── da.msg │ │ │ │ ├── de.msg │ │ │ │ ├── de_at.msg │ │ │ │ ├── de_be.msg │ │ │ │ ├── el.msg │ │ │ │ ├── en_au.msg │ │ │ │ ├── en_be.msg │ │ │ │ ├── en_bw.msg │ │ │ │ ├── en_ca.msg │ │ │ │ ├── en_gb.msg │ │ │ │ ├── en_hk.msg │ │ │ │ ├── en_ie.msg │ │ │ │ ├── en_in.msg │ │ │ │ ├── en_nz.msg │ │ │ │ ├── en_ph.msg │ │ │ │ ├── en_sg.msg │ │ │ │ ├── en_za.msg │ │ │ │ ├── en_zw.msg │ │ │ │ ├── eo.msg │ │ │ │ ├── es.msg │ │ │ │ ├── es_ar.msg │ │ │ │ ├── es_bo.msg │ │ │ │ ├── es_cl.msg │ │ │ │ ├── es_co.msg │ │ │ │ ├── es_cr.msg │ │ │ │ ├── es_do.msg │ │ │ │ ├── es_ec.msg │ │ │ │ ├── es_gt.msg │ │ │ │ ├── es_hn.msg │ │ │ │ ├── es_mx.msg │ │ │ │ ├── es_ni.msg │ │ │ │ ├── es_pa.msg │ │ │ │ ├── es_pe.msg │ │ │ │ ├── es_pr.msg │ │ │ │ ├── es_py.msg │ │ │ │ ├── es_sv.msg │ │ │ │ ├── es_uy.msg │ │ │ │ ├── es_ve.msg │ │ │ │ ├── et.msg │ │ │ │ ├── eu.msg │ │ │ │ ├── eu_es.msg │ │ │ │ ├── fa.msg │ │ │ │ ├── fa_in.msg │ │ │ │ ├── fa_ir.msg │ │ │ │ ├── fi.msg │ │ │ │ ├── fo.msg │ │ │ │ ├── fo_fo.msg │ │ │ │ ├── fr.msg │ │ │ │ ├── fr_be.msg │ │ │ │ ├── fr_ca.msg │ │ │ │ ├── fr_ch.msg │ │ │ │ ├── ga.msg │ │ │ │ ├── ga_ie.msg │ │ │ │ ├── gl.msg │ │ │ │ ├── gl_es.msg │ │ │ │ ├── gv.msg │ │ │ │ ├── gv_gb.msg │ │ │ │ ├── he.msg │ │ │ │ ├── hi.msg │ │ │ │ ├── hi_in.msg │ │ │ │ ├── hr.msg │ │ │ │ ├── hu.msg │ │ │ │ ├── id.msg │ │ │ │ ├── id_id.msg │ │ │ │ ├── is.msg │ │ │ │ ├── it.msg │ │ │ │ ├── it_ch.msg │ │ │ │ ├── ja.msg │ │ │ │ ├── kl.msg │ │ │ │ ├── kl_gl.msg │ │ │ │ ├── ko.msg │ │ │ │ ├── ko_kr.msg │ │ │ │ ├── kok.msg │ │ │ │ ├── kok_in.msg │ │ │ │ ├── kw.msg │ │ │ │ ├── kw_gb.msg │ │ │ │ ├── lt.msg │ │ │ │ ├── lv.msg │ │ │ │ ├── mk.msg │ │ │ │ ├── mr.msg │ │ │ │ ├── mr_in.msg │ │ │ │ ├── ms.msg │ │ │ │ ├── ms_my.msg │ │ │ │ ├── mt.msg │ │ │ │ ├── nb.msg │ │ │ │ ├── nl.msg │ │ │ │ ├── nl_be.msg │ │ │ │ ├── nn.msg │ │ │ │ ├── pl.msg │ │ │ │ ├── pt.msg │ │ │ │ ├── pt_br.msg │ │ │ │ ├── ro.msg │ │ │ │ ├── ru.msg │ │ │ │ ├── ru_ua.msg │ │ │ │ ├── sh.msg │ │ │ │ ├── sk.msg │ │ │ │ ├── sl.msg │ │ │ │ ├── sq.msg │ │ │ │ ├── sr.msg │ │ │ │ ├── sv.msg │ │ │ │ ├── sw.msg │ │ │ │ ├── ta.msg │ │ │ │ ├── ta_in.msg │ │ │ │ ├── te.msg │ │ │ │ ├── te_in.msg │ │ │ │ ├── th.msg │ │ │ │ ├── tr.msg │ │ │ │ ├── uk.msg │ │ │ │ ├── vi.msg │ │ │ │ ├── zh.msg │ │ │ │ ├── zh_cn.msg │ │ │ │ ├── zh_hk.msg │ │ │ │ ├── zh_sg.msg │ │ │ │ └── zh_tw.msg │ │ │ ├── opt0.4 │ │ │ │ ├── optparse.tcl │ │ │ │ └── pkgIndex.tcl │ │ │ ├── package.tcl │ │ │ ├── parray.tcl │ │ │ ├── safe.tcl │ │ │ ├── tclIndex │ │ │ ├── tm.tcl │ │ │ ├── tzdata │ │ │ │ ├── Africa │ │ │ │ │ ├── Abidjan │ │ │ │ │ ├── Accra │ │ │ │ │ ├── Addis_Ababa │ │ │ │ │ ├── Algiers │ │ │ │ │ ├── Asmara │ │ │ │ │ ├── Asmera │ │ │ │ │ ├── Bamako │ │ │ │ │ ├── Bangui │ │ │ │ │ ├── Banjul │ │ │ │ │ ├── Bissau │ │ │ │ │ ├── Blantyre │ │ │ │ │ ├── Brazzaville │ │ │ │ │ ├── Bujumbura │ │ │ │ │ ├── Cairo │ │ │ │ │ ├── Casablanca │ │ │ │ │ ├── Ceuta │ │ │ │ │ ├── Conakry │ │ │ │ │ ├── Dakar │ │ │ │ │ ├── Dar_es_Salaam │ │ │ │ │ ├── Djibouti │ │ │ │ │ ├── Douala │ │ │ │ │ ├── El_Aaiun │ │ │ │ │ ├── Freetown │ │ │ │ │ ├── Gaborone │ │ │ │ │ ├── Harare │ │ │ │ │ ├── Johannesburg │ │ │ │ │ ├── Juba │ │ │ │ │ ├── Kampala │ │ │ │ │ ├── Khartoum │ │ │ │ │ ├── Kigali │ │ │ │ │ ├── Kinshasa │ │ │ │ │ ├── Lagos │ │ │ │ │ ├── Libreville │ │ │ │ │ ├── Lome │ │ │ │ │ ├── Luanda │ │ │ │ │ ├── Lubumbashi │ │ │ │ │ ├── Lusaka │ │ │ │ │ ├── Malabo │ │ │ │ │ ├── Maputo │ │ │ │ │ ├── Maseru │ │ │ │ │ ├── Mbabane │ │ │ │ │ ├── Mogadishu │ │ │ │ │ ├── Monrovia │ │ │ │ │ ├── Nairobi │ │ │ │ │ ├── Ndjamena │ │ │ │ │ ├── Niamey │ │ │ │ │ ├── Nouakchott │ │ │ │ │ ├── Ouagadougou │ │ │ │ │ ├── Porto-Novo │ │ │ │ │ ├── Sao_Tome │ │ │ │ │ ├── Timbuktu │ │ │ │ │ ├── Tripoli │ │ │ │ │ ├── Tunis │ │ │ │ │ └── Windhoek │ │ │ │ ├── America │ │ │ │ │ ├── Adak │ │ │ │ │ ├── Anchorage │ │ │ │ │ ├── Anguilla │ │ │ │ │ ├── Antigua │ │ │ │ │ ├── Araguaina │ │ │ │ │ ├── Argentina │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ ├── La_Rioja │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ │ ├── Salta │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ ├── Aruba │ │ │ │ │ ├── Asuncion │ │ │ │ │ ├── Atikokan │ │ │ │ │ ├── Atka │ │ │ │ │ ├── Bahia │ │ │ │ │ ├── Bahia_Banderas │ │ │ │ │ ├── Barbados │ │ │ │ │ ├── Belem │ │ │ │ │ ├── Belize │ │ │ │ │ ├── Blanc-Sablon │ │ │ │ │ ├── Boa_Vista │ │ │ │ │ ├── Bogota │ │ │ │ │ ├── Boise │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ ├── Cambridge_Bay │ │ │ │ │ ├── Campo_Grande │ │ │ │ │ ├── Cancun │ │ │ │ │ ├── Caracas │ │ │ │ │ ├── Catamarca │ │ │ │ │ ├── Cayenne │ │ │ │ │ ├── Cayman │ │ │ │ │ ├── Chicago │ │ │ │ │ ├── Chihuahua │ │ │ │ │ ├── Coral_Harbour │ │ │ │ │ ├── Cordoba │ │ │ │ │ ├── Costa_Rica │ │ │ │ │ ├── Creston │ │ │ │ │ ├── Cuiaba │ │ │ │ │ ├── Curacao │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ ├── Dawson │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ ├── Denver │ │ │ │ │ ├── Detroit │ │ │ │ │ ├── Dominica │ │ │ │ │ ├── Edmonton │ │ │ │ │ ├── Eirunepe │ │ │ │ │ ├── El_Salvador │ │ │ │ │ ├── Ensenada │ │ │ │ │ ├── Fort_Nelson │ │ │ │ │ ├── Fort_Wayne │ │ │ │ │ ├── Fortaleza │ │ │ │ │ ├── Glace_Bay │ │ │ │ │ ├── Godthab │ │ │ │ │ ├── Goose_Bay │ │ │ │ │ ├── Grand_Turk │ │ │ │ │ ├── Grenada │ │ │ │ │ ├── Guadeloupe │ │ │ │ │ ├── Guatemala │ │ │ │ │ ├── Guayaquil │ │ │ │ │ ├── Guyana │ │ │ │ │ ├── Halifax │ │ │ │ │ ├── Havana │ │ │ │ │ ├── Hermosillo │ │ │ │ │ ├── Indiana │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ ├── Knox │ │ │ │ │ │ ├── Marengo │ │ │ │ │ │ ├── Petersburg │ │ │ │ │ │ ├── Tell_City │ │ │ │ │ │ ├── Vevay │ │ │ │ │ │ ├── Vincennes │ │ │ │ │ │ └── Winamac │ │ │ │ │ ├── Indianapolis │ │ │ │ │ ├── Inuvik │ │ │ │ │ ├── Iqaluit │ │ │ │ │ ├── Jamaica │ │ │ │ │ ├── Jujuy │ │ │ │ │ ├── Juneau │ │ │ │ │ ├── Kentucky │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ └── Monticello │ │ │ │ │ ├── Knox_IN │ │ │ │ │ ├── Kralendijk │ │ │ │ │ ├── La_Paz │ │ │ │ │ ├── Lima │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ ├── Louisville │ │ │ │ │ ├── Lower_Princes │ │ │ │ │ ├── Maceio │ │ │ │ │ ├── Managua │ │ │ │ │ ├── Manaus │ │ │ │ │ ├── Marigot │ │ │ │ │ ├── Martinique │ │ │ │ │ ├── Matamoros │ │ │ │ │ ├── Mazatlan │ │ │ │ │ ├── Mendoza │ │ │ │ │ ├── Menominee │ │ │ │ │ ├── Merida │ │ │ │ │ ├── Metlakatla │ │ │ │ │ ├── Mexico_City │ │ │ │ │ ├── Miquelon │ │ │ │ │ ├── Moncton │ │ │ │ │ ├── Monterrey │ │ │ │ │ ├── Montevideo │ │ │ │ │ ├── Montreal │ │ │ │ │ ├── Montserrat │ │ │ │ │ ├── Nassau │ │ │ │ │ ├── New_York │ │ │ │ │ ├── Nipigon │ │ │ │ │ ├── Nome │ │ │ │ │ ├── Noronha │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ ├── Beulah │ │ │ │ │ │ ├── Center │ │ │ │ │ │ └── New_Salem │ │ │ │ │ ├── Ojinaga │ │ │ │ │ ├── Panama │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ ├── Paramaribo │ │ │ │ │ ├── Phoenix │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ ├── Punta_Arenas │ │ │ │ │ ├── Rainy_River │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ ├── Recife │ │ │ │ │ ├── Regina │ │ │ │ │ ├── Resolute │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ ├── Rosario │ │ │ │ │ ├── Santa_Isabel │ │ │ │ │ ├── Santarem │ │ │ │ │ ├── Santiago │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ ├── Shiprock │ │ │ │ │ ├── Sitka │ │ │ │ │ ├── St_Barthelemy │ │ │ │ │ ├── St_Johns │ │ │ │ │ ├── St_Kitts │ │ │ │ │ ├── St_Lucia │ │ │ │ │ ├── St_Thomas │ │ │ │ │ ├── St_Vincent │ │ │ │ │ ├── Swift_Current │ │ │ │ │ ├── Tegucigalpa │ │ │ │ │ ├── Thule │ │ │ │ │ ├── Thunder_Bay │ │ │ │ │ ├── Tijuana │ │ │ │ │ ├── Toronto │ │ │ │ │ ├── Tortola │ │ │ │ │ ├── Vancouver │ │ │ │ │ ├── Virgin │ │ │ │ │ ├── Whitehorse │ │ │ │ │ ├── Winnipeg │ │ │ │ │ ├── Yakutat │ │ │ │ │ └── Yellowknife │ │ │ │ ├── Antarctica │ │ │ │ │ ├── Casey │ │ │ │ │ ├── Davis │ │ │ │ │ ├── DumontDUrville │ │ │ │ │ ├── Macquarie │ │ │ │ │ ├── Mawson │ │ │ │ │ ├── McMurdo │ │ │ │ │ ├── Palmer │ │ │ │ │ ├── Rothera │ │ │ │ │ ├── South_Pole │ │ │ │ │ ├── Syowa │ │ │ │ │ ├── Troll │ │ │ │ │ └── Vostok │ │ │ │ ├── Arctic │ │ │ │ │ └── Longyearbyen │ │ │ │ ├── Asia │ │ │ │ │ ├── Aden │ │ │ │ │ ├── Almaty │ │ │ │ │ ├── Amman │ │ │ │ │ ├── Anadyr │ │ │ │ │ ├── Aqtau │ │ │ │ │ ├── Aqtobe │ │ │ │ │ ├── Ashgabat │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ ├── Atyrau │ │ │ │ │ ├── Baghdad │ │ │ │ │ ├── Bahrain │ │ │ │ │ ├── Baku │ │ │ │ │ ├── Bangkok │ │ │ │ │ ├── Barnaul │ │ │ │ │ ├── Beirut │ │ │ │ │ ├── Bishkek │ │ │ │ │ ├── Brunei │ │ │ │ │ ├── Calcutta │ │ │ │ │ ├── Chita │ │ │ │ │ ├── Choibalsan │ │ │ │ │ ├── Chongqing │ │ │ │ │ ├── Chungking │ │ │ │ │ ├── Colombo │ │ │ │ │ ├── Dacca │ │ │ │ │ ├── Damascus │ │ │ │ │ ├── Dhaka │ │ │ │ │ ├── Dili │ │ │ │ │ ├── Dubai │ │ │ │ │ ├── Dushanbe │ │ │ │ │ ├── Famagusta │ │ │ │ │ ├── Gaza │ │ │ │ │ ├── Harbin │ │ │ │ │ ├── Hebron │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ ├── Hovd │ │ │ │ │ ├── Irkutsk │ │ │ │ │ ├── Istanbul │ │ │ │ │ ├── Jakarta │ │ │ │ │ ├── Jayapura │ │ │ │ │ ├── Jerusalem │ │ │ │ │ ├── Kabul │ │ │ │ │ ├── Kamchatka │ │ │ │ │ ├── Karachi │ │ │ │ │ ├── Kashgar │ │ │ │ │ ├── Kathmandu │ │ │ │ │ ├── Katmandu │ │ │ │ │ ├── Khandyga │ │ │ │ │ ├── Kolkata │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ ├── Kuching │ │ │ │ │ ├── Kuwait │ │ │ │ │ ├── Macao │ │ │ │ │ ├── Macau │ │ │ │ │ ├── Magadan │ │ │ │ │ ├── Makassar │ │ │ │ │ ├── Manila │ │ │ │ │ ├── Muscat │ │ │ │ │ ├── Nicosia │ │ │ │ │ ├── Novokuznetsk │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ ├── Omsk │ │ │ │ │ ├── Oral │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ ├── Pontianak │ │ │ │ │ ├── Pyongyang │ │ │ │ │ ├── Qatar │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ ├── Rangoon │ │ │ │ │ ├── Riyadh │ │ │ │ │ ├── Saigon │ │ │ │ │ ├── Sakhalin │ │ │ │ │ ├── Samarkand │ │ │ │ │ ├── Seoul │ │ │ │ │ ├── Shanghai │ │ │ │ │ ├── Singapore │ │ │ │ │ ├── Srednekolymsk │ │ │ │ │ ├── Taipei │ │ │ │ │ ├── Tashkent │ │ │ │ │ ├── Tbilisi │ │ │ │ │ ├── Tehran │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ ├── Thimbu │ │ │ │ │ ├── Thimphu │ │ │ │ │ ├── Tokyo │ │ │ │ │ ├── Tomsk │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ ├── Urumqi │ │ │ │ │ ├── Ust-Nera │ │ │ │ │ ├── Vientiane │ │ │ │ │ ├── Vladivostok │ │ │ │ │ ├── Yakutsk │ │ │ │ │ ├── Yangon │ │ │ │ │ ├── Yekaterinburg │ │ │ │ │ └── Yerevan │ │ │ │ ├── Atlantic │ │ │ │ │ ├── Azores │ │ │ │ │ ├── Bermuda │ │ │ │ │ ├── Canary │ │ │ │ │ ├── Cape_Verde │ │ │ │ │ ├── Faeroe │ │ │ │ │ ├── Faroe │ │ │ │ │ ├── Jan_Mayen │ │ │ │ │ ├── Madeira │ │ │ │ │ ├── Reykjavik │ │ │ │ │ ├── South_Georgia │ │ │ │ │ ├── St_Helena │ │ │ │ │ └── Stanley │ │ │ │ ├── Australia │ │ │ │ │ ├── ACT │ │ │ │ │ ├── Adelaide │ │ │ │ │ ├── Brisbane │ │ │ │ │ ├── Broken_Hill │ │ │ │ │ ├── Canberra │ │ │ │ │ ├── Currie │ │ │ │ │ ├── Darwin │ │ │ │ │ ├── Eucla │ │ │ │ │ ├── Hobart │ │ │ │ │ ├── LHI │ │ │ │ │ ├── Lindeman │ │ │ │ │ ├── Lord_Howe │ │ │ │ │ ├── Melbourne │ │ │ │ │ ├── NSW │ │ │ │ │ ├── North │ │ │ │ │ ├── Perth │ │ │ │ │ ├── Queensland │ │ │ │ │ ├── South │ │ │ │ │ ├── Sydney │ │ │ │ │ ├── Tasmania │ │ │ │ │ ├── Victoria │ │ │ │ │ ├── West │ │ │ │ │ └── Yancowinna │ │ │ │ ├── Brazil │ │ │ │ │ ├── Acre │ │ │ │ │ ├── DeNoronha │ │ │ │ │ ├── East │ │ │ │ │ └── West │ │ │ │ ├── CET │ │ │ │ ├── CST6CDT │ │ │ │ ├── Canada │ │ │ │ │ ├── Atlantic │ │ │ │ │ ├── Central │ │ │ │ │ ├── East-Saskatchewan │ │ │ │ │ ├── Eastern │ │ │ │ │ ├── Mountain │ │ │ │ │ ├── Newfoundland │ │ │ │ │ ├── Pacific │ │ │ │ │ ├── Saskatchewan │ │ │ │ │ └── Yukon │ │ │ │ ├── Chile │ │ │ │ │ ├── Continental │ │ │ │ │ └── EasterIsland │ │ │ │ ├── Cuba │ │ │ │ ├── EET │ │ │ │ ├── EST │ │ │ │ ├── EST5EDT │ │ │ │ ├── Egypt │ │ │ │ ├── Eire │ │ │ │ ├── Etc │ │ │ │ │ ├── GMT │ │ │ │ │ ├── GMT+0 │ │ │ │ │ ├── GMT+1 │ │ │ │ │ ├── GMT+10 │ │ │ │ │ ├── GMT+11 │ │ │ │ │ ├── GMT+12 │ │ │ │ │ ├── GMT+2 │ │ │ │ │ ├── GMT+3 │ │ │ │ │ ├── GMT+4 │ │ │ │ │ ├── GMT+5 │ │ │ │ │ ├── GMT+6 │ │ │ │ │ ├── GMT+7 │ │ │ │ │ ├── GMT+8 │ │ │ │ │ ├── GMT+9 │ │ │ │ │ ├── GMT-0 │ │ │ │ │ ├── GMT-1 │ │ │ │ │ ├── GMT-10 │ │ │ │ │ ├── GMT-11 │ │ │ │ │ ├── GMT-12 │ │ │ │ │ ├── GMT-13 │ │ │ │ │ ├── GMT-14 │ │ │ │ │ ├── GMT-2 │ │ │ │ │ ├── GMT-3 │ │ │ │ │ ├── GMT-4 │ │ │ │ │ ├── GMT-5 │ │ │ │ │ ├── GMT-6 │ │ │ │ │ ├── GMT-7 │ │ │ │ │ ├── GMT-8 │ │ │ │ │ ├── GMT-9 │ │ │ │ │ ├── GMT0 │ │ │ │ │ ├── Greenwich │ │ │ │ │ ├── UCT │ │ │ │ │ ├── UTC │ │ │ │ │ ├── Universal │ │ │ │ │ └── Zulu │ │ │ │ ├── Europe │ │ │ │ │ ├── Amsterdam │ │ │ │ │ ├── Andorra │ │ │ │ │ ├── Astrakhan │ │ │ │ │ ├── Athens │ │ │ │ │ ├── Belfast │ │ │ │ │ ├── Belgrade │ │ │ │ │ ├── Berlin │ │ │ │ │ ├── Bratislava │ │ │ │ │ ├── Brussels │ │ │ │ │ ├── Bucharest │ │ │ │ │ ├── Budapest │ │ │ │ │ ├── Busingen │ │ │ │ │ ├── Chisinau │ │ │ │ │ ├── Copenhagen │ │ │ │ │ ├── Dublin │ │ │ │ │ ├── Gibraltar │ │ │ │ │ ├── Guernsey │ │ │ │ │ ├── Helsinki │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ ├── Istanbul │ │ │ │ │ ├── Jersey │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ ├── Kiev │ │ │ │ │ ├── Kirov │ │ │ │ │ ├── Lisbon │ │ │ │ │ ├── Ljubljana │ │ │ │ │ ├── London │ │ │ │ │ ├── Luxembourg │ │ │ │ │ ├── Madrid │ │ │ │ │ ├── Malta │ │ │ │ │ ├── Mariehamn │ │ │ │ │ ├── Minsk │ │ │ │ │ ├── Monaco │ │ │ │ │ ├── Moscow │ │ │ │ │ ├── Nicosia │ │ │ │ │ ├── Oslo │ │ │ │ │ ├── Paris │ │ │ │ │ ├── Podgorica │ │ │ │ │ ├── Prague │ │ │ │ │ ├── Riga │ │ │ │ │ ├── Rome │ │ │ │ │ ├── Samara │ │ │ │ │ ├── San_Marino │ │ │ │ │ ├── Sarajevo │ │ │ │ │ ├── Saratov │ │ │ │ │ ├── Simferopol │ │ │ │ │ ├── Skopje │ │ │ │ │ ├── Sofia │ │ │ │ │ ├── Stockholm │ │ │ │ │ ├── Tallinn │ │ │ │ │ ├── Tirane │ │ │ │ │ ├── Tiraspol │ │ │ │ │ ├── Ulyanovsk │ │ │ │ │ ├── Uzhgorod │ │ │ │ │ ├── Vaduz │ │ │ │ │ ├── Vatican │ │ │ │ │ ├── Vienna │ │ │ │ │ ├── Vilnius │ │ │ │ │ ├── Volgograd │ │ │ │ │ ├── Warsaw │ │ │ │ │ ├── Zagreb │ │ │ │ │ ├── Zaporozhye │ │ │ │ │ └── Zurich │ │ │ │ ├── GB │ │ │ │ ├── GB-Eire │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── HST │ │ │ │ ├── Hongkong │ │ │ │ ├── Iceland │ │ │ │ ├── Indian │ │ │ │ │ ├── Antananarivo │ │ │ │ │ ├── Chagos │ │ │ │ │ ├── Christmas │ │ │ │ │ ├── Cocos │ │ │ │ │ ├── Comoro │ │ │ │ │ ├── Kerguelen │ │ │ │ │ ├── Mahe │ │ │ │ │ ├── Maldives │ │ │ │ │ ├── Mauritius │ │ │ │ │ ├── Mayotte │ │ │ │ │ └── Reunion │ │ │ │ ├── Iran │ │ │ │ ├── Israel │ │ │ │ ├── Jamaica │ │ │ │ ├── Japan │ │ │ │ ├── Kwajalein │ │ │ │ ├── Libya │ │ │ │ ├── MET │ │ │ │ ├── MST │ │ │ │ ├── MST7MDT │ │ │ │ ├── Mexico │ │ │ │ │ ├── BajaNorte │ │ │ │ │ ├── BajaSur │ │ │ │ │ └── General │ │ │ │ ├── NZ │ │ │ │ ├── NZ-CHAT │ │ │ │ ├── Navajo │ │ │ │ ├── PRC │ │ │ │ ├── PST8PDT │ │ │ │ ├── Pacific │ │ │ │ │ ├── Apia │ │ │ │ │ ├── Auckland │ │ │ │ │ ├── Bougainville │ │ │ │ │ ├── Chatham │ │ │ │ │ ├── Chuuk │ │ │ │ │ ├── Easter │ │ │ │ │ ├── Efate │ │ │ │ │ ├── Enderbury │ │ │ │ │ ├── Fakaofo │ │ │ │ │ ├── Fiji │ │ │ │ │ ├── Funafuti │ │ │ │ │ ├── Galapagos │ │ │ │ │ ├── Gambier │ │ │ │ │ ├── Guadalcanal │ │ │ │ │ ├── Guam │ │ │ │ │ ├── Honolulu │ │ │ │ │ ├── Johnston │ │ │ │ │ ├── Kiritimati │ │ │ │ │ ├── Kosrae │ │ │ │ │ ├── Kwajalein │ │ │ │ │ ├── Majuro │ │ │ │ │ ├── Marquesas │ │ │ │ │ ├── Midway │ │ │ │ │ ├── Nauru │ │ │ │ │ ├── Niue │ │ │ │ │ ├── Norfolk │ │ │ │ │ ├── Noumea │ │ │ │ │ ├── Pago_Pago │ │ │ │ │ ├── Palau │ │ │ │ │ ├── Pitcairn │ │ │ │ │ ├── Pohnpei │ │ │ │ │ ├── Ponape │ │ │ │ │ ├── Port_Moresby │ │ │ │ │ ├── Rarotonga │ │ │ │ │ ├── Saipan │ │ │ │ │ ├── Samoa │ │ │ │ │ ├── Tahiti │ │ │ │ │ ├── Tarawa │ │ │ │ │ ├── Tongatapu │ │ │ │ │ ├── Truk │ │ │ │ │ ├── Wake │ │ │ │ │ ├── Wallis │ │ │ │ │ └── Yap │ │ │ │ ├── Poland │ │ │ │ ├── Portugal │ │ │ │ ├── ROC │ │ │ │ ├── ROK │ │ │ │ ├── Singapore │ │ │ │ ├── SystemV │ │ │ │ │ ├── AST4 │ │ │ │ │ ├── AST4ADT │ │ │ │ │ ├── CST6 │ │ │ │ │ ├── CST6CDT │ │ │ │ │ ├── EST5 │ │ │ │ │ ├── EST5EDT │ │ │ │ │ ├── HST10 │ │ │ │ │ ├── MST7 │ │ │ │ │ ├── MST7MDT │ │ │ │ │ ├── PST8 │ │ │ │ │ ├── PST8PDT │ │ │ │ │ ├── YST9 │ │ │ │ │ └── YST9YDT │ │ │ │ ├── Turkey │ │ │ │ ├── UCT │ │ │ │ ├── US │ │ │ │ │ ├── Alaska │ │ │ │ │ ├── Aleutian │ │ │ │ │ ├── Arizona │ │ │ │ │ ├── Central │ │ │ │ │ ├── East-Indiana │ │ │ │ │ ├── Eastern │ │ │ │ │ ├── Hawaii │ │ │ │ │ ├── Indiana-Starke │ │ │ │ │ ├── Michigan │ │ │ │ │ ├── Mountain │ │ │ │ │ ├── Pacific │ │ │ │ │ ├── Pacific-New │ │ │ │ │ └── Samoa │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ ├── W-SU │ │ │ │ ├── WET │ │ │ │ └── Zulu │ │ │ └── word.tcl │ │ ├── tcl8 │ │ │ ├── 8.4 │ │ │ │ ├── platform-1.0.14.tm │ │ │ │ └── platform │ │ │ │ │ └── shell-1.1.4.tm │ │ │ ├── 8.5 │ │ │ │ ├── msgcat-1.6.1.tm │ │ │ │ └── tcltest-2.5.0.tm │ │ │ └── 8.6 │ │ │ │ └── http-2.9.0.tm │ │ ├── tcl86t.lib │ │ ├── tclConfig.sh │ │ ├── tclooConfig.sh │ │ ├── tclstub86.lib │ │ ├── tix8.4.3 │ │ │ ├── Balloon.tcl │ │ │ ├── BtnBox.tcl │ │ │ ├── CObjView.tcl │ │ │ ├── ChkList.tcl │ │ │ ├── ComboBox.tcl │ │ │ ├── Compat.tcl │ │ │ ├── Console.tcl │ │ │ ├── Control.tcl │ │ │ ├── DefSchm.tcl │ │ │ ├── DialogS.tcl │ │ │ ├── DirBox.tcl │ │ │ ├── DirDlg.tcl │ │ │ ├── DirList.tcl │ │ │ ├── DirTree.tcl │ │ │ ├── DragDrop.tcl │ │ │ ├── DtlList.tcl │ │ │ ├── EFileBox.tcl │ │ │ ├── EFileDlg.tcl │ │ │ ├── Event.tcl │ │ │ ├── FileBox.tcl │ │ │ ├── FileCbx.tcl │ │ │ ├── FileDlg.tcl │ │ │ ├── FileEnt.tcl │ │ │ ├── FloatEnt.tcl │ │ │ ├── Grid.tcl │ │ │ ├── HList.tcl │ │ │ ├── HListDD.tcl │ │ │ ├── IconView.tcl │ │ │ ├── Init.tcl │ │ │ ├── LabEntry.tcl │ │ │ ├── LabFrame.tcl │ │ │ ├── LabWidg.tcl │ │ │ ├── ListNBk.tcl │ │ │ ├── Makefile │ │ │ ├── Meter.tcl │ │ │ ├── MultView.tcl │ │ │ ├── NoteBook.tcl │ │ │ ├── OldUtil.tcl │ │ │ ├── OptMenu.tcl │ │ │ ├── PanedWin.tcl │ │ │ ├── PopMenu.tcl │ │ │ ├── Primitiv.tcl │ │ │ ├── ResizeH.tcl │ │ │ ├── SGrid.tcl │ │ │ ├── SHList.tcl │ │ │ ├── SListBox.tcl │ │ │ ├── STList.tcl │ │ │ ├── SText.tcl │ │ │ ├── SWidget.tcl │ │ │ ├── SWindow.tcl │ │ │ ├── Select.tcl │ │ │ ├── Shell.tcl │ │ │ ├── SimpDlg.tcl │ │ │ ├── StackWin.tcl │ │ │ ├── StatBar.tcl │ │ │ ├── StdBBox.tcl │ │ │ ├── StdShell.tcl │ │ │ ├── TList.tcl │ │ │ ├── Tix.tcl │ │ │ ├── Tree.tcl │ │ │ ├── Utils.tcl │ │ │ ├── VResize.tcl │ │ │ ├── VStack.tcl │ │ │ ├── VTree.tcl │ │ │ ├── Variable.tcl │ │ │ ├── WInfo.tcl │ │ │ ├── bitmaps │ │ │ │ ├── act_fold.gif │ │ │ │ ├── act_fold.xbm │ │ │ │ ├── act_fold.xpm │ │ │ │ ├── balarrow.xbm │ │ │ │ ├── cbxarrow.xbm │ │ │ │ ├── ck_def.xbm │ │ │ │ ├── ck_off.xbm │ │ │ │ ├── ck_on.xbm │ │ │ │ ├── cross.xbm │ │ │ │ ├── decr.xbm │ │ │ │ ├── drop.xbm │ │ │ │ ├── file.gif │ │ │ │ ├── file.xbm │ │ │ │ ├── file.xpm │ │ │ │ ├── folder.gif │ │ │ │ ├── folder.xbm │ │ │ │ ├── folder.xpm │ │ │ │ ├── harddisk.xbm │ │ │ │ ├── hourglas.mask │ │ │ │ ├── hourglas.xbm │ │ │ │ ├── incr.xbm │ │ │ │ ├── info.gif │ │ │ │ ├── info.xpm │ │ │ │ ├── maximize.xbm │ │ │ │ ├── minimize.xbm │ │ │ │ ├── minus.gif │ │ │ │ ├── minus.xbm │ │ │ │ ├── minus.xpm │ │ │ │ ├── minusarm.gif │ │ │ │ ├── minusarm.xbm │ │ │ │ ├── minusarm.xpm │ │ │ │ ├── mktransgif.tcl │ │ │ │ ├── network.xbm │ │ │ │ ├── no_entry.gif │ │ │ │ ├── no_entry.xpm │ │ │ │ ├── openfile.xbm │ │ │ │ ├── openfold.gif │ │ │ │ ├── openfold.xbm │ │ │ │ ├── openfold.xpm │ │ │ │ ├── plus.gif │ │ │ │ ├── plus.xbm │ │ │ │ ├── plus.xpm │ │ │ │ ├── plusarm.gif │ │ │ │ ├── plusarm.xbm │ │ │ │ ├── plusarm.xpm │ │ │ │ ├── resize1.xbm │ │ │ │ ├── resize2.xbm │ │ │ │ ├── restore.xbm │ │ │ │ ├── srcfile.gif │ │ │ │ ├── srcfile.xbm │ │ │ │ ├── srcfile.xpm │ │ │ │ ├── system.xbm │ │ │ │ ├── textfile.gif │ │ │ │ ├── textfile.xbm │ │ │ │ ├── textfile.xpm │ │ │ │ ├── tick.xbm │ │ │ │ ├── warning.gif │ │ │ │ └── warning.xpm │ │ │ ├── demos │ │ │ │ ├── MkChoose.tcl │ │ │ │ ├── MkDirLis.tcl │ │ │ │ ├── MkSample.tcl │ │ │ │ ├── MkScroll.tcl │ │ │ │ ├── bitmaps │ │ │ │ │ ├── about.xpm │ │ │ │ │ ├── bold.xbm │ │ │ │ │ ├── capital.xbm │ │ │ │ │ ├── centerj.xbm │ │ │ │ │ ├── code.xpm │ │ │ │ │ ├── combobox.xbm │ │ │ │ │ ├── combobox.xpm │ │ │ │ │ ├── drivea.xbm │ │ │ │ │ ├── drivea.xpm │ │ │ │ │ ├── exit.xpm │ │ │ │ │ ├── filebox.xbm │ │ │ │ │ ├── filebox.xpm │ │ │ │ │ ├── harddisk.xbm │ │ │ │ │ ├── harddisk.xpm │ │ │ │ │ ├── italic.xbm │ │ │ │ │ ├── justify.xbm │ │ │ │ │ ├── leftj.xbm │ │ │ │ │ ├── netw.xbm │ │ │ │ │ ├── netw.xpm │ │ │ │ │ ├── network.xbm │ │ │ │ │ ├── network.xpm │ │ │ │ │ ├── optmenu.xpm │ │ │ │ │ ├── rightj.xbm │ │ │ │ │ ├── select.xpm │ │ │ │ │ ├── tix.gif │ │ │ │ │ └── underlin.xbm │ │ │ │ ├── samples │ │ │ │ │ ├── AllSampl.tcl │ │ │ │ │ ├── ArrowBtn.tcl │ │ │ │ │ ├── Balloon.tcl │ │ │ │ │ ├── BtnBox.tcl │ │ │ │ │ ├── CObjView.tcl │ │ │ │ │ ├── ChkList.tcl │ │ │ │ │ ├── CmpImg.tcl │ │ │ │ │ ├── CmpImg1.tcl │ │ │ │ │ ├── CmpImg2.tcl │ │ │ │ │ ├── CmpImg3.tcl │ │ │ │ │ ├── CmpImg4.tcl │ │ │ │ │ ├── ComboBox.tcl │ │ │ │ │ ├── Control.tcl │ │ │ │ │ ├── DirDlg.tcl │ │ │ │ │ ├── DirList.tcl │ │ │ │ │ ├── DirTree.tcl │ │ │ │ │ ├── DragDrop.tcl │ │ │ │ │ ├── DynTree.tcl │ │ │ │ │ ├── EFileDlg.tcl │ │ │ │ │ ├── EditGrid.tcl │ │ │ │ │ ├── FileDlg.tcl │ │ │ │ │ ├── FileEnt.tcl │ │ │ │ │ ├── HList1.tcl │ │ │ │ │ ├── LabEntry.tcl │ │ │ │ │ ├── LabFrame.tcl │ │ │ │ │ ├── ListNBK.tcl │ │ │ │ │ ├── Meter.tcl │ │ │ │ │ ├── NoteBook.tcl │ │ │ │ │ ├── OptMenu.tcl │ │ │ │ │ ├── PanedWin.tcl │ │ │ │ │ ├── PopMenu.tcl │ │ │ │ │ ├── SGrid0.tcl │ │ │ │ │ ├── SGrid1.tcl │ │ │ │ │ ├── SHList.tcl │ │ │ │ │ ├── SHList2.tcl │ │ │ │ │ ├── SListBox.tcl │ │ │ │ │ ├── STList1.tcl │ │ │ │ │ ├── STList2.tcl │ │ │ │ │ ├── STList3.tcl │ │ │ │ │ ├── SText.tcl │ │ │ │ │ ├── SWindow.tcl │ │ │ │ │ ├── Sample.tcl │ │ │ │ │ ├── Select.tcl │ │ │ │ │ ├── StdBBox.tcl │ │ │ │ │ ├── Tree.tcl │ │ │ │ │ ├── Xpm.tcl │ │ │ │ │ └── Xpm1.tcl │ │ │ │ ├── tclIndex │ │ │ │ ├── tixwidgets.tcl │ │ │ │ └── widget │ │ │ ├── fs.tcl │ │ │ ├── pkgIndex.tcl │ │ │ ├── pref │ │ │ │ ├── 10Point.fs │ │ │ │ ├── 10Point.fsc │ │ │ │ ├── 12Point.fs │ │ │ │ ├── 12Point.fsc │ │ │ │ ├── 14Point.fs │ │ │ │ ├── 14Point.fsc │ │ │ │ ├── Bisque.cs │ │ │ │ ├── Bisque.csc │ │ │ │ ├── Blue.cs │ │ │ │ ├── Blue.csc │ │ │ │ ├── Gray.cs │ │ │ │ ├── Gray.csc │ │ │ │ ├── Makefile │ │ │ │ ├── Old12Pt.fs │ │ │ │ ├── Old14Pt.fs │ │ │ │ ├── SGIGray.cs │ │ │ │ ├── SGIGray.csc │ │ │ │ ├── TK.cs │ │ │ │ ├── TK.csc │ │ │ │ ├── TK.fs │ │ │ │ ├── TK.fsc │ │ │ │ ├── TixGray.cs │ │ │ │ ├── TixGray.csc │ │ │ │ ├── TkWin.cs │ │ │ │ ├── TkWin.csc │ │ │ │ ├── TkWin.fs │ │ │ │ ├── TkWin.fsc │ │ │ │ ├── WmDefault.cs │ │ │ │ ├── WmDefault.csc │ │ │ │ ├── WmDefault.fs │ │ │ │ ├── WmDefault.fsc │ │ │ │ ├── WmDefault.py │ │ │ │ ├── WmDefault.tcl │ │ │ │ ├── WmDefault.txt │ │ │ │ ├── pkgIndex.tcl │ │ │ │ └── tixmkpref │ │ │ ├── tix84.dll │ │ │ └── tix84.lib │ │ ├── tk8.6 │ │ │ ├── bgerror.tcl │ │ │ ├── button.tcl │ │ │ ├── choosedir.tcl │ │ │ ├── clrpick.tcl │ │ │ ├── comdlg.tcl │ │ │ ├── console.tcl │ │ │ ├── demos │ │ │ │ ├── README │ │ │ │ ├── anilabel.tcl │ │ │ │ ├── aniwave.tcl │ │ │ │ ├── arrow.tcl │ │ │ │ ├── bind.tcl │ │ │ │ ├── bitmap.tcl │ │ │ │ ├── browse │ │ │ │ ├── button.tcl │ │ │ │ ├── check.tcl │ │ │ │ ├── clrpick.tcl │ │ │ │ ├── colors.tcl │ │ │ │ ├── combo.tcl │ │ │ │ ├── cscroll.tcl │ │ │ │ ├── ctext.tcl │ │ │ │ ├── dialog1.tcl │ │ │ │ ├── dialog2.tcl │ │ │ │ ├── en.msg │ │ │ │ ├── entry1.tcl │ │ │ │ ├── entry2.tcl │ │ │ │ ├── entry3.tcl │ │ │ │ ├── filebox.tcl │ │ │ │ ├── floor.tcl │ │ │ │ ├── fontchoose.tcl │ │ │ │ ├── form.tcl │ │ │ │ ├── goldberg.tcl │ │ │ │ ├── hello │ │ │ │ ├── hscale.tcl │ │ │ │ ├── icon.tcl │ │ │ │ ├── image1.tcl │ │ │ │ ├── image2.tcl │ │ │ │ ├── images │ │ │ │ │ ├── earth.gif │ │ │ │ │ ├── earthmenu.png │ │ │ │ │ ├── earthris.gif │ │ │ │ │ ├── flagdown.xbm │ │ │ │ │ ├── flagup.xbm │ │ │ │ │ ├── gray25.xbm │ │ │ │ │ ├── letters.xbm │ │ │ │ │ ├── noletter.xbm │ │ │ │ │ ├── ouster.png │ │ │ │ │ ├── pattern.xbm │ │ │ │ │ ├── tcllogo.gif │ │ │ │ │ └── teapot.ppm │ │ │ │ ├── items.tcl │ │ │ │ ├── ixset │ │ │ │ ├── knightstour.tcl │ │ │ │ ├── label.tcl │ │ │ │ ├── labelframe.tcl │ │ │ │ ├── license.terms │ │ │ │ ├── mclist.tcl │ │ │ │ ├── menu.tcl │ │ │ │ ├── menubu.tcl │ │ │ │ ├── msgbox.tcl │ │ │ │ ├── nl.msg │ │ │ │ ├── paned1.tcl │ │ │ │ ├── paned2.tcl │ │ │ │ ├── pendulum.tcl │ │ │ │ ├── plot.tcl │ │ │ │ ├── puzzle.tcl │ │ │ │ ├── radio.tcl │ │ │ │ ├── rmt │ │ │ │ ├── rolodex │ │ │ │ ├── ruler.tcl │ │ │ │ ├── sayings.tcl │ │ │ │ ├── search.tcl │ │ │ │ ├── spin.tcl │ │ │ │ ├── square │ │ │ │ ├── states.tcl │ │ │ │ ├── style.tcl │ │ │ │ ├── tclIndex │ │ │ │ ├── tcolor │ │ │ │ ├── text.tcl │ │ │ │ ├── textpeer.tcl │ │ │ │ ├── timer │ │ │ │ ├── toolbar.tcl │ │ │ │ ├── tree.tcl │ │ │ │ ├── ttkbut.tcl │ │ │ │ ├── ttkmenu.tcl │ │ │ │ ├── ttknote.tcl │ │ │ │ ├── ttkpane.tcl │ │ │ │ ├── ttkprogress.tcl │ │ │ │ ├── ttkscale.tcl │ │ │ │ ├── twind.tcl │ │ │ │ ├── unicodeout.tcl │ │ │ │ ├── vscale.tcl │ │ │ │ └── widget │ │ │ ├── dialog.tcl │ │ │ ├── entry.tcl │ │ │ ├── focus.tcl │ │ │ ├── fontchooser.tcl │ │ │ ├── iconlist.tcl │ │ │ ├── icons.tcl │ │ │ ├── images │ │ │ │ ├── README │ │ │ │ ├── logo.eps │ │ │ │ ├── logo100.gif │ │ │ │ ├── logo64.gif │ │ │ │ ├── logoLarge.gif │ │ │ │ ├── logoMed.gif │ │ │ │ ├── pwrdLogo.eps │ │ │ │ ├── pwrdLogo100.gif │ │ │ │ ├── pwrdLogo150.gif │ │ │ │ ├── pwrdLogo175.gif │ │ │ │ ├── pwrdLogo200.gif │ │ │ │ ├── pwrdLogo75.gif │ │ │ │ └── tai-ku.gif │ │ │ ├── license.terms │ │ │ ├── listbox.tcl │ │ │ ├── megawidget.tcl │ │ │ ├── menu.tcl │ │ │ ├── mkpsenc.tcl │ │ │ ├── msgbox.tcl │ │ │ ├── msgs │ │ │ │ ├── cs.msg │ │ │ │ ├── da.msg │ │ │ │ ├── de.msg │ │ │ │ ├── el.msg │ │ │ │ ├── en.msg │ │ │ │ ├── en_gb.msg │ │ │ │ ├── eo.msg │ │ │ │ ├── es.msg │ │ │ │ ├── fr.msg │ │ │ │ ├── hu.msg │ │ │ │ ├── it.msg │ │ │ │ ├── nl.msg │ │ │ │ ├── pl.msg │ │ │ │ ├── pt.msg │ │ │ │ ├── ru.msg │ │ │ │ └── sv.msg │ │ │ ├── obsolete.tcl │ │ │ ├── optMenu.tcl │ │ │ ├── palette.tcl │ │ │ ├── panedwindow.tcl │ │ │ ├── pkgIndex.tcl │ │ │ ├── safetk.tcl │ │ │ ├── scale.tcl │ │ │ ├── scrlbar.tcl │ │ │ ├── spinbox.tcl │ │ │ ├── tclIndex │ │ │ ├── tearoff.tcl │ │ │ ├── text.tcl │ │ │ ├── tk.tcl │ │ │ ├── tkfbox.tcl │ │ │ ├── ttk │ │ │ │ ├── altTheme.tcl │ │ │ │ ├── aquaTheme.tcl │ │ │ │ ├── button.tcl │ │ │ │ ├── clamTheme.tcl │ │ │ │ ├── classicTheme.tcl │ │ │ │ ├── combobox.tcl │ │ │ │ ├── cursors.tcl │ │ │ │ ├── defaults.tcl │ │ │ │ ├── entry.tcl │ │ │ │ ├── fonts.tcl │ │ │ │ ├── menubutton.tcl │ │ │ │ ├── notebook.tcl │ │ │ │ ├── panedwindow.tcl │ │ │ │ ├── progress.tcl │ │ │ │ ├── scale.tcl │ │ │ │ ├── scrollbar.tcl │ │ │ │ ├── sizegrip.tcl │ │ │ │ ├── spinbox.tcl │ │ │ │ ├── treeview.tcl │ │ │ │ ├── ttk.tcl │ │ │ │ ├── utils.tcl │ │ │ │ ├── vistaTheme.tcl │ │ │ │ ├── winTheme.tcl │ │ │ │ └── xpTheme.tcl │ │ │ ├── unsupported.tcl │ │ │ └── xmfbox.tcl │ │ ├── tk86t.lib │ │ └── tkstub86.lib │ ├── vcruntime140.dll │ └── vcruntime140_1.dll ├── SplitImg │ └── SplitImg.exe ├── TextureCompress.txt └── Unlock │ └── Unlock.exe └── UnityEditorTools.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/README.md -------------------------------------------------------------------------------- /SplitImg/SplitImg/SplitImg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/SplitImg/SplitImg/SplitImg.sln -------------------------------------------------------------------------------- /SplitImg/SplitImg/SplitImg/ImgHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/SplitImg/SplitImg/SplitImg/ImgHelper.cs -------------------------------------------------------------------------------- /SplitImg/SplitImg/SplitImg/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/SplitImg/SplitImg/SplitImg/Program.cs -------------------------------------------------------------------------------- /SplitImg/SplitImg/SplitImg/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/SplitImg/SplitImg/SplitImg/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SplitImg/SplitImg/SplitImg/SplitImg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/SplitImg/SplitImg/SplitImg/SplitImg.csproj -------------------------------------------------------------------------------- /SplitImg/SplitImg/SplitImg/bin/Debug/SplitImg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/SplitImg/SplitImg/SplitImg/bin/Debug/SplitImg.exe -------------------------------------------------------------------------------- /SplitImg/SplitImg/SplitImg/bin/Debug/SplitImg.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/SplitImg/SplitImg/SplitImg/bin/Debug/SplitImg.pdb -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Bundles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Bundles.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Bundles/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Bundles/Fonts.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Bundles/Fonts/symbol.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Bundles/Fonts/symbol.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Bundles/Images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Bundles/Images.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Bundles/Images/Login.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Bundles/Images/Login.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Bundles/Images/Login/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Bundles/Images/Login/search.png -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/AtlasSetting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/AtlasSetting.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/BMFontTools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/BMFontTools.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/ExcelToLua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/ExcelToLua.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/ExcelToLua/ExcelTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/ExcelToLua/ExcelTools.cs -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/GitLog.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/GitLog.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/GitLog/GitLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/GitLog/GitLog.cs -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/GitLog/GitLog.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/GitLog/GitLog.cs.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/LuaTools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/LuaTools.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/OtherTools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/OtherTools.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/OtherTools/CTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/OtherTools/CTools.cs -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/PlayerPrefsEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/PlayerPrefsEditor.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/SplitImgTools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/SplitImgTools.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/ToPinYin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/ToPinYin.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/ToPinYin/MetaAssetImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6141055792a54faa9342d5097f138d38 3 | timeCreated: 1657528253 -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/ToPinYin/PinYin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/ToPinYin/PinYin.cs -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/ToPinYin/PinYin.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/ToPinYin/PinYin.cs.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/TortoiseGit.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/TortoiseGit.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/UGUIEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/UGUIEditor.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/UGUIEditor/UGUIEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/UGUIEditor/UGUIEditor.cs -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/Unlock.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/Unlock.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/Unlock/Unlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/Unlock/Unlock.cs -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Editor/Unlock/Unlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Editor/Unlock/Unlock.cs.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/LuaConfig.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/LuaConfig.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/LuaConfig/CommonConfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/LuaConfig/CommonConfig.lua -------------------------------------------------------------------------------- /UnityEditorTools/Assets/LuaConfig/CommonConfig.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/LuaConfig/CommonConfig.lua.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/LuaConfig/DailyRewardConfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/LuaConfig/DailyRewardConfig.lua -------------------------------------------------------------------------------- /UnityEditorTools/Assets/LuaScripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/LuaScripts.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/LuaScripts/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/LuaScripts/UI.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/LuaScripts/UI/UISetting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/LuaScripts/UI/UISetting.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Plugins.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Plugins/iOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Plugins/iOS.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Resources.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Resources/BillingMode.json: -------------------------------------------------------------------------------- 1 | {"androidStore":"GooglePlay"} -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Resources/BillingMode.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Resources/BillingMode.json.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Scenes.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Scenes/ShowColliderScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Scenes/ShowColliderScene.unity -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Scenes/TestEventScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Scenes/TestEventScene.unity -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Script.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Script/Extensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Script/Extensions.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Script/GameFramework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Script/GameFramework.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Script/GameFramework/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Script/GameFramework/Base.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Script/SceneCollider.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Script/SceneCollider.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Script/SceneCollider/SceneColliderVisualizer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6b72dcca2a5442ab476d4d6b256ee3a 3 | timeCreated: 1701499798 -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Script/Test.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Script/Test.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Script/Test/EventTest.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Script/Test/EventTest.meta -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Script/UIElementsGenerate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Script/UIElementsGenerate.cs -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Script/UITextLocalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Script/UITextLocalization.cs -------------------------------------------------------------------------------- /UnityEditorTools/Assets/Script/VibrationUtil.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Assets/Script/VibrationUtil.meta -------------------------------------------------------------------------------- /UnityEditorTools/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Packages/manifest.json -------------------------------------------------------------------------------- /UnityEditorTools/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Packages/packages-lock.json -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /UnityEditorTools/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /UnityEditorTools/Tools/BMFont/BMFontGenerate.bat: -------------------------------------------------------------------------------- 1 | bmfont.exe -c %1 -o %2 -------------------------------------------------------------------------------- /UnityEditorTools/Tools/BMFont/BaseConfig.bmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/BMFont/BaseConfig.bmf -------------------------------------------------------------------------------- /UnityEditorTools/Tools/BMFont/bmfont.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/BMFont/bmfont.exe -------------------------------------------------------------------------------- /UnityEditorTools/Tools/BMFont/symbol.bmfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/BMFont/symbol.bmfc -------------------------------------------------------------------------------- /UnityEditorTools/Tools/BMFont/symbol.bmfc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/BMFont/symbol.bmfc1 -------------------------------------------------------------------------------- /UnityEditorTools/Tools/BMFont/symbol/fonts_fuhao_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/BMFont/symbol/fonts_fuhao_1.png -------------------------------------------------------------------------------- /UnityEditorTools/Tools/BMFont/symbol/fonts_fuhao_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/BMFont/symbol/fonts_fuhao_2.png -------------------------------------------------------------------------------- /UnityEditorTools/Tools/BMFont/symbol/fonts_fuhao_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/BMFont/symbol/fonts_fuhao_3.png -------------------------------------------------------------------------------- /UnityEditorTools/Tools/BMFont/symbol/fonts_fuhao_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/BMFont/symbol/fonts_fuhao_4.png -------------------------------------------------------------------------------- /UnityEditorTools/Tools/BMFont/symbol/fonts_fuhao_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/BMFont/symbol/fonts_fuhao_5.png -------------------------------------------------------------------------------- /UnityEditorTools/Tools/BMFont/symbol/fonts_fuhao_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/BMFont/symbol/fonts_fuhao_6.png -------------------------------------------------------------------------------- /UnityEditorTools/Tools/ExcelToLua/excel2lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/ExcelToLua/excel2lua.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/ExcelToLua/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/ExcelToLua/test.lua -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_asyncio.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_asyncio.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_bz2.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_ctypes.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_ctypes_test.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_ctypes_test.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_decimal.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_decimal.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_elementtree.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_hashlib.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_lzma.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_msi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_msi.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_overlapped.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_overlapped.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_queue.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_queue.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_socket.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_sqlite3.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_sqlite3.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_ssl.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_testbuffer.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_testbuffer.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_testcapi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_testcapi.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_testconsole.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_testconsole.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_tkinter.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_tkinter.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_uuid.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_uuid.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/_zoneinfo.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/_zoneinfo.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/libcrypto-1_1.dll -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/libffi-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/libffi-7.dll -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/libssl-1_1.dll -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/py.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/py.ico -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/pyc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/pyc.ico -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/pyd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/pyd.ico -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/pyexpat.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/python_lib.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/python_lib.cat -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/python_tools.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/python_tools.cat -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/select.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/sqlite3.dll -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/tcl86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/tcl86t.dll -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/tk86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/tk86t.dll -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/unicodedata.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/DLLs/winsound.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/DLLs/winsound.pyd -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Doc/python392.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Doc/python392.chm -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/LICENSE.txt -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/__future__.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/__phello__.foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/__phello__.foo.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_aix_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_aix_support.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_bootlocale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_bootlocale.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_bootsubprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_bootsubprocess.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_compat_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_compat_pickle.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_compression.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_markupbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_markupbase.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_osx_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_osx_support.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_py_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_py_abc.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_pydecimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_pydecimal.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_pyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_pyio.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_sitebuiltins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_sitebuiltins.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_strptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_strptime.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/_weakrefset.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/abc.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/aifc.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/antigravity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/antigravity.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/argparse.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/ast.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/asynchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/asynchat.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/asyncio/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/asyncio/events.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/asyncio/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/asyncio/futures.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/asyncio/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/asyncio/locks.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/asyncio/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/asyncio/log.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/asyncio/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/asyncio/queues.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/asyncio/runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/asyncio/runners.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/asyncio/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/asyncio/streams.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/asyncio/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/asyncio/tasks.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/asyncio/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/asyncio/threads.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/asyncio/trsock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/asyncio/trsock.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/asyncore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/asyncore.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/base64.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/bdb.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/binhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/binhex.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/bisect.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/bz2.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/cProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/cProfile.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/calendar.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/cgi.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/cgitb.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/chunk.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/cmd.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/code.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/codecs.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/codeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/codeop.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/collections/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/collections/abc.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/colorsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/colorsys.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/compileall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/compileall.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/concurrent/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/configparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/configparser.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/contextlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/contextlib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/contextvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/contextvars.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/copy.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/copyreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/copyreg.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/crypt.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/csv.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/ctypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/ctypes/__init__.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/ctypes/_aix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/ctypes/_aix.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/ctypes/_endian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/ctypes/_endian.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/ctypes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/ctypes/util.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/ctypes/wintypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/ctypes/wintypes.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/curses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/curses/__init__.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/curses/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/curses/ascii.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/curses/has_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/curses/has_key.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/curses/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/curses/panel.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/curses/textpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/curses/textpad.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/dataclasses.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/datetime.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/dbm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/dbm/__init__.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/dbm/dumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/dbm/dumb.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/dbm/gnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/dbm/gnu.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/dbm/ndbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/dbm/ndbm.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/decimal.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/difflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/difflib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/dis.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/distutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/distutils/README -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/distutils/cmd.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/distutils/core.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/distutils/debug.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/distutils/dist.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/distutils/log.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/distutils/spawn.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/distutils/tests/includetest.rst: -------------------------------------------------------------------------------- 1 | This should be included. 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/distutils/util.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/doctest.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/__init__.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/charset.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/encoders.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/errors.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/generator.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/header.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/iterators.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/message.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/mime/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/mime/base.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/mime/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/mime/text.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/parser.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/policy.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/email/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/email/utils.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/ascii.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/big5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/big5.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp037.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp273.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp273.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp424.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp424.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp437.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp500.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp720.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp720.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp737.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp737.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp775.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp775.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp850.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp850.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp852.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp855.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp855.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp856.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp856.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp857.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp857.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp858.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp858.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp860.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp860.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp861.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp861.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp862.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp862.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp863.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp863.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp864.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp864.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp865.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp865.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp866.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp866.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp869.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp869.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp874.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp874.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp875.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp875.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp932.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp932.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp949.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/cp950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/cp950.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/gbk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/gbk.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/hz.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/idna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/idna.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/johab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/johab.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/mbcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/mbcs.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/oem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/oem.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/utf_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/utf_7.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/encodings/utf_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/encodings/utf_8.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/ensurepip/_bundled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/enum.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/filecmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/filecmp.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/fileinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/fileinput.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/fnmatch.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/formatter.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/fractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/fractions.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/ftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/ftplib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/functools.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/genericpath.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/getopt.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/getpass.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/gettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/gettext.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/glob.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/graphlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/graphlib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/gzip.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/hashlib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/heapq.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/hmac.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/html/__init__.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/html/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/html/entities.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/html/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/html/parser.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/http/__init__.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/http/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/http/client.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/http/cookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/http/cookiejar.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/http/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/http/cookies.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/http/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/http/server.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/ChangeLog -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/NEWS.txt -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/NEWS2x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/NEWS2x.txt -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/README.txt -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/TODO.txt -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/browser.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/calltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/calltip.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/config.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/editor.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/extend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/extend.txt -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/format.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/grep.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/help.html -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/help.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/history.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/idle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/idle.bat -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/idle.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/idle.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/idle.pyw -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/iomenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/iomenu.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/macosx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/macosx.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/outwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/outwin.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/pyparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/pyparse.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/pyshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/pyshell.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/query.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/replace.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/rpc.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/run.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/search.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/sidebar.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/tooltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/tooltip.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/tree.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/undo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/undo.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/window.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/idlelib/zzdummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/idlelib/zzdummy.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/imaplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/imaplib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/imghdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/imghdr.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/imp.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/importlib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/importlib/abc.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/importlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/importlib/util.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/inspect.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/io.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/ipaddress.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/json/__init__.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/json/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/json/decoder.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/json/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/json/encoder.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/json/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/json/scanner.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/json/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/json/tool.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/keyword.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/lib2to3/fixes/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/lib2to3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/lib2to3/main.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/lib2to3/patcomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/lib2to3/patcomp.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/lib2to3/pygram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/lib2to3/pygram.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/lib2to3/pytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/lib2to3/pytree.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/lib2to3/tests/data/bom.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | print "BOM BOOM!" 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/lib2to3/tests/data/false_encoding.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print '#coding=0' 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/lib2to3/tests/data/fixers/parrot_example.py: -------------------------------------------------------------------------------- 1 | def parrot(): 2 | pass 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/linecache.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/locale.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/logging/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/logging/config.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/lzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/lzma.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/mailbox.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/mailcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/mailcap.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/mimetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/mimetypes.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/modulefinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/modulefinder.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/msilib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/msilib/__init__.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/msilib/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/msilib/schema.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/msilib/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/msilib/sequence.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/msilib/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/msilib/text.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/netrc.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/nntplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/nntplib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/ntpath.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/nturl2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/nturl2path.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/numbers.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/opcode.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/operator.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/optparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/optparse.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/os.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/pathlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/pathlib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/pdb.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/pickle.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/pickletools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/pickletools.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/pipes.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/pkgutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/pkgutil.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/platform.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/plistlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/plistlib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/poplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/poplib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/posixpath.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/pprint.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/profile.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/pstats.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/pty.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/py_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/py_compile.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/pyclbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/pyclbr.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/pydoc.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/queue.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/quopri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/quopri.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/random.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/re.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/reprlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/reprlib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/rlcompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/rlcompleter.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/runpy.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/sched.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/secrets.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/selectors.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/shelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/shelve.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/shlex.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/shutil.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/signal.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/et_xmlfile-1.0.1-py3.9.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/et_xmlfile-1.0.1-py3.9.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | et_xmlfile 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/et_xmlfile/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/jdcal-1.4.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/jdcal-1.4.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jdcal 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/openpyxl-3.0.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/openpyxl-3.0.6.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/openpyxl-3.0.6.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | openpyxl 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/openpyxl/formatting/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010-2021 openpyxl 2 | 3 | from .rule import Rule 4 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/openpyxl/pivot/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010-2021 openpyxl 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/openpyxl/reader/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010-2021 openpyxl 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/openpyxl/worksheet/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010-2021 openpyxl 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/openpyxl/writer/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010-2021 openpyxl 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip-21.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip-21.0.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip-21.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.12.05" 4 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 2) 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.2" 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/setuptools-49.2.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/setuptools-49.2.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/setuptools-49.2.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/setuptools-49.2.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/somepackage-1.2.3-py3.9.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site-packages/somepackage-1.2.3-py3.9.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | somepackage 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/site.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/smtpd.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/smtplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/smtplib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/sndhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/sndhdr.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/socket.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/socketserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/socketserver.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/sqlite3/dbapi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/sqlite3/dbapi2.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/sqlite3/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/sqlite3/dump.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/sqlite3/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/sre_compile.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/sre_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/sre_constants.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/sre_parse.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/ssl.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/stat.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/statistics.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/string.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/stringprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/stringprep.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/struct.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/subprocess.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/sunau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/sunau.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/symbol.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/symtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/symtable.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/sysconfig.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tabnanny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/tabnanny.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/tarfile.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/telnetlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/telnetlib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/tempfile.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/__main__.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/allsans.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/allsans.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/ann_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/ann_module.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/audiotest.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/audiotest.au -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/audiotests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/audiotests.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/autotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/autotest.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print('我') 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/badcert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/badcert.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/badkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/badkey.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/badsyntax_3131.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | € = 2 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/bisect_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/bisect_cmd.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/cfgparser.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/cfgparser.1 -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/cfgparser.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/cfgparser.2 -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/cfgparser.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/cfgparser.3 -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/cjkencodings/big5hkscs-utf8.txt: -------------------------------------------------------------------------------- 1 | 𠄌Ě鵮罓洆 2 | ÊÊ̄ê êê̄ 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/clinic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/clinic.test -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/coding20731.py: -------------------------------------------------------------------------------- 1 | #coding:latin1 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/data/README -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/dis_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/dis_module.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/empty.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/empty.vbs -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/ffdh3072.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/ffdh3072.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/final_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/final_a.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/final_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/final_b.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/fork_wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/fork_wait.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/gdb_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/gdb_sample.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/idnsans.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/idnsans.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/ieee754.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/ieee754.txt -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/imp_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/imp_dummy.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/keycert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/keycert.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/keycert2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/keycert2.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/keycert3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/keycert3.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/keycert4.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/keycert4.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/leakers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/list_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/list_tests.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/lock_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/lock_tests.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/mailcap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/mailcap.txt -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/mime.types -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/mp_preload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/mp_preload.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/nokia.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/nokia.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/profilee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/profilee.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/pstats.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/pstats.pck -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/pycacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/pycacert.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/pycakey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/pycakey.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/pydoc_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/pydoc_mod.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/pythoninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/pythoninfo.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/randv2_32.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/randv2_32.pck -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/randv2_64.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/randv2_64.pck -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/randv3.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/randv3.pck -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/re_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/re_tests.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/recursion.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/recursion.tar -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/regrtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/regrtest.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/relimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/relimport.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/reperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/reperf.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/secp384r1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/secp384r1.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/seq_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/seq_tests.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/sortperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/sortperf.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/ssl_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/ssl_cert.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/ssl_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/ssl_key.pem -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/ssltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/ssltests.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_abc.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_aifc.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_array.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_ast.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_audit.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_bdb.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_binop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_binop.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_bool.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_bufio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_bufio.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_bytes.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_bz2.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_call.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_capi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_capi.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_cgi.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_cgitb.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_class.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_cmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_cmath.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_cmd.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_code.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_copy.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_crypt.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_csv.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_dbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_dbm.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_deque.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_descr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_descr.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_dict.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_dis.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_eintr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_eintr.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_embed.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_enum.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_eof.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_epoll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_epoll.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_gc.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_import/data/circular_imports/basic2.py: -------------------------------------------------------------------------------- 1 | from . import basic 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_import/data/circular_imports/from_cycle1.py: -------------------------------------------------------------------------------- 1 | from .from_cycle2 import a 2 | b = 1 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_import/data/circular_imports/from_cycle2.py: -------------------------------------------------------------------------------- 1 | from .from_cycle1 import b 2 | a = 1 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_import/data/circular_imports/source.py: -------------------------------------------------------------------------------- 1 | from . import use 2 | spam = 1 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_import/data/circular_imports/subpkg/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_import/data/circular_imports/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_import/data/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_import/data/package2/submodule2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_import/data/unwritable/x.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data01/subdirectory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data01/subdirectory/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data02/one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data02/one/resource1.txt: -------------------------------------------------------------------------------- 1 | one resource 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data02/two/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data02/two/resource2.txt: -------------------------------------------------------------------------------- 1 | two resource 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data03/namespace/portion1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data03/namespace/portion2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/data03/namespace/resource1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'both_portions foo one' 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'both_portions foo two' 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py: -------------------------------------------------------------------------------- 1 | attr = 'in module' 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'portion1 foo one' 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/namespace_pkgs/portion1/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'portion1 foo one' 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/namespace_pkgs/portion2/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'portion2 foo two' 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/namespace_pkgs/project1/parent/child/one.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child one' 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/namespace_pkgs/project2/parent/child/two.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child two' 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/namespace_pkgs/project3/parent/child/three.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child three' 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/zipdata01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_importlib/zipdata02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_io.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_os.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_re.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_tk.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/test_uu.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/test_zoneinfo/__init__.py: -------------------------------------------------------------------------------- 1 | from .test_zoneinfo import * 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/xmltestdata/c14n-20/doc.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/xmltestdata/c14n-20/out_inC14N6_c14nDefault.xml: -------------------------------------------------------------------------------- 1 | © -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/xmltestdata/c14n-20/world.txt: -------------------------------------------------------------------------------- 1 | world -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/test/zipdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/test/zipdir.zip -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/textwrap.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/this.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/threading.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/timeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/timeit.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tkinter/dnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/tkinter/dnd.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tkinter/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/tkinter/font.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tkinter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tkinter/test/test_tkinter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tkinter/test/test_ttk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tkinter/tix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/tkinter/tix.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tkinter/ttk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/tkinter/ttk.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/token.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/tokenize.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/trace.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/traceback.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tracemalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/tracemalloc.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/tty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/tty.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/turtle.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/types.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/typing.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/urllib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/urllib/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/urllib/error.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/urllib/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/urllib/parse.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/uu.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/uuid.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/warnings.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/wave.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/weakref.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/webbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/webbrowser.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/wsgiref/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/wsgiref/util.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/xdrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/xdrlib.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/xml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/xml/__init__.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/zipapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/zipapp.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/zipfile.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Lib/zipimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Lib/zipimport.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/NEWS.txt -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Scripts/pip.exe -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Scripts/pip3.9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Scripts/pip3.9.exe -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Scripts/pip3.exe -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Tools/demo/beer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Tools/demo/beer.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Tools/demo/hanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Tools/demo/hanoi.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Tools/demo/life.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Tools/demo/life.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Tools/demo/mcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/Tools/demo/mcast.py -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/Tools/pynche/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/Python.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/abstract.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/asdl.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/ast.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/bitset.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/ceval.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/code.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/codecs.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/compile.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/context.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/datetime.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/errcode.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/eval.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/exports.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/fileutils.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/genobject.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/graminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/graminit.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/grammar.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/import.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/intrcheck.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/marshal.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/node.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/object.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/objimpl.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/opcode.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/osdefs.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/osmodule.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/parsetok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/parsetok.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/py_curses.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pyarena.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pycapsule.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pyconfig.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pyctype.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pydebug.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pydtrace.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pyerrors.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pyexpat.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pyfpe.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pyframe.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pyhash.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pymacro.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pymath.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pymem.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pyport.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pystate.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pystrcmp.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pystrhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pystrhex.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pystrtod.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pythonrun.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pythread.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/pytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/pytime.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/setobject.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/structseq.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/symtable.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/sysmodule.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/token.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/traceback.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/typeslots.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/ucnhash.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/include/warnings.h -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/libs/_tkinter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/libs/_tkinter.lib -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/libs/python3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/libs/python3.lib -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/libs/python39.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/libs/python39.lib -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/python.exe -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/python3.dll -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/python39.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/python39.dll -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/pythonw.exe -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/nmake/rules.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/nmake/rules.vc -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/nmake/tcl.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/nmake/tcl.nmake -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tcl8.6/auto.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tcl8.6/auto.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tcl8.6/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tcl8.6/init.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tcl8.6/safe.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tcl8.6/safe.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tcl8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tcl8.6/tclIndex -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tcl8.6/tm.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tcl8.6/tm.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tcl8.6/word.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tcl8.6/word.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tcl86t.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tcl86t.lib -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tclConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tclConfig.sh -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tclooConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tclooConfig.sh -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tclstub86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tclstub86.lib -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tix8.4.3/fs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tix8.4.3/fs.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tk8.6/demos/rmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tk8.6/demos/rmt -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tk8.6/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tk8.6/entry.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tk8.6/focus.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tk8.6/focus.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tk8.6/icons.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tk8.6/icons.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tk8.6/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tk8.6/menu.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tk8.6/scale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tk8.6/scale.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tk8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tk8.6/tclIndex -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tk8.6/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tk8.6/text.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tk8.6/tk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tk8.6/tk.tcl -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tk86t.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tk86t.lib -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/tcl/tkstub86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/tcl/tkstub86.lib -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/vcruntime140.dll -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Python3.9/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Python3.9/vcruntime140_1.dll -------------------------------------------------------------------------------- /UnityEditorTools/Tools/SplitImg/SplitImg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/SplitImg/SplitImg.exe -------------------------------------------------------------------------------- /UnityEditorTools/Tools/TextureCompress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/TextureCompress.txt -------------------------------------------------------------------------------- /UnityEditorTools/Tools/Unlock/Unlock.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/Tools/Unlock/Unlock.exe -------------------------------------------------------------------------------- /UnityEditorTools/UnityEditorTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang00lei/UnityEditorTools/HEAD/UnityEditorTools/UnityEditorTools.sln --------------------------------------------------------------------------------