├── 07-Модули и пакеты ├── 02-Modules and Packages │ ├── MainPackage │ │ ├── __init__.py │ │ ├── SubPackage │ │ │ ├── __init__.py │ │ │ ├── subscript.py │ │ │ └── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── subscript.cpython-37.pyc │ │ ├── main_script.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── main_script.cpython-37.pyc │ └── fizz_buzz.py └── 03-__name__ and __main__ │ └── program.py ├── 11-Финальная практика └── 03-04-HomeWorks_solutions │ ├── true_or_false │ ├── __init__.py │ ├── game_status.py │ ├── game_result.py │ └── __pycache__ │ │ ├── game.cpython-37.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── question.cpython-37.pyc │ │ ├── game_result.cpython-37.pyc │ │ └── game_status.cpython-37.pyc │ ├── venv │ ├── Lib │ │ └── site-packages │ │ │ ├── pip-19.0.3-py3.6.egg │ │ │ ├── EGG-INFO │ │ │ │ ├── not-zip-safe │ │ │ │ ├── top_level.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ └── entry_points.txt │ │ │ └── pip │ │ │ │ ├── _internal │ │ │ │ ├── utils │ │ │ │ │ └── __init__.py │ │ │ │ ├── operations │ │ │ │ │ └── __init__.py │ │ │ │ ├── models │ │ │ │ │ └── __init__.py │ │ │ │ └── cli │ │ │ │ │ └── __init__.py │ │ │ │ ├── _vendor │ │ │ │ ├── chardet │ │ │ │ │ └── cli │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── html5lib │ │ │ │ │ └── filters │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── urllib3 │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _securetransport │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── packages │ │ │ │ │ │ ├── backports │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── msgpack │ │ │ │ │ └── _version.py │ │ │ │ ├── idna │ │ │ │ │ ├── package_data.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── certifi │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __main__.py │ │ │ │ ├── pep517 │ │ │ │ │ └── __init__.py │ │ │ │ ├── cachecontrol │ │ │ │ │ └── caches │ │ │ │ │ │ └── __init__.py │ │ │ │ └── pytoml │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── setuptools.pth │ │ │ ├── easy-install.pth │ │ │ └── setuptools-40.8.0-py3.6.egg │ ├── pyvenv.cfg │ └── Scripts │ │ ├── _bz2.pyd │ │ ├── _msi.pyd │ │ ├── _ssl.pyd │ │ ├── pip.exe │ │ ├── pip3.exe │ │ ├── _ctypes.pyd │ │ ├── _lzma.pyd │ │ ├── _socket.pyd │ │ ├── pip3.6.exe │ │ ├── pyexpat.pyd │ │ ├── python.exe │ │ ├── python3.dll │ │ ├── pythonw.exe │ │ ├── select.pyd │ │ ├── sqlite3.dll │ │ ├── tcl86t.dll │ │ ├── tk86t.dll │ │ ├── _asyncio.pyd │ │ ├── _decimal.pyd │ │ ├── _hashlib.pyd │ │ ├── _sqlite3.pyd │ │ ├── _testcapi.pyd │ │ ├── _tkinter.pyd │ │ ├── python36.dll │ │ ├── winsound.pyd │ │ ├── _ctypes_test.pyd │ │ ├── _elementtree.pyd │ │ ├── _overlapped.pyd │ │ ├── _testbuffer.pyd │ │ ├── _testconsole.pyd │ │ ├── easy_install.exe │ │ ├── unicodedata.pyd │ │ ├── vcruntime140.dll │ │ ├── _distutils_findvs.pyd │ │ ├── _multiprocessing.pyd │ │ ├── _testmultiphase.pyd │ │ ├── easy_install-3.6.exe │ │ └── _testimportmultiple.pyd │ ├── .idea │ ├── .gitignore │ ├── misc.xml │ └── inspectionProfiles │ │ └── profiles_settings.xml │ └── hangman │ ├── invalid_operation_exception.py │ ├── game_status.py │ └── __pycache__ │ ├── game.cpython-36.pyc │ └── game_status.cpython-36.pyc ├── 10-Что нового в Python 3.8 └── Python_3_8 │ ├── .mypy_cache │ └── 3.8 │ │ ├── @plugins_snapshot.json │ │ └── @plugins_snapshot.json.2cf3e55ead7def15 │ ├── venv │ ├── Lib │ │ └── site-packages │ │ │ ├── mypyc │ │ │ ├── __init__.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ │ ├── test_run.cpython-38.pyc │ │ │ │ │ ├── testutil.cpython-38.pyc │ │ │ │ │ └── test_emit.cpython-38.pyc │ │ │ └── __pycache__ │ │ │ │ ├── ops.cpython-38.pyc │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ ├── crash.cpython-38.pyc │ │ │ │ ├── emit.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── analysis.cpython-38.pyc │ │ │ │ ├── common.cpython-38.pyc │ │ │ │ ├── cstring.cpython-38.pyc │ │ │ │ ├── emitfunc.cpython-38.pyc │ │ │ │ ├── errors.cpython-38.pyc │ │ │ │ ├── genclass.cpython-38.pyc │ │ │ │ ├── genexpr.cpython-38.pyc │ │ │ │ ├── genfunc.cpython-38.pyc │ │ │ │ ├── genops.cpython-38.pyc │ │ │ │ ├── namegen.cpython-38.pyc │ │ │ │ ├── ops_dict.cpython-38.pyc │ │ │ │ ├── ops_exc.cpython-38.pyc │ │ │ │ ├── ops_int.cpython-38.pyc │ │ │ │ ├── ops_list.cpython-38.pyc │ │ │ │ ├── ops_misc.cpython-38.pyc │ │ │ │ ├── ops_set.cpython-38.pyc │ │ │ │ ├── ops_str.cpython-38.pyc │ │ │ │ ├── options.cpython-38.pyc │ │ │ │ ├── refcount.cpython-38.pyc │ │ │ │ ├── sametype.cpython-38.pyc │ │ │ │ ├── subtype.cpython-38.pyc │ │ │ │ ├── uninit.cpython-38.pyc │ │ │ │ ├── emitclass.cpython-38.pyc │ │ │ │ ├── emitmodule.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── genops_for.cpython-38.pyc │ │ │ │ ├── genopsmain.cpython-38.pyc │ │ │ │ ├── genopsutil.cpython-38.pyc │ │ │ │ ├── ir_builder.cpython-38.pyc │ │ │ │ ├── ops_tuple.cpython-38.pyc │ │ │ │ ├── rt_subtype.cpython-38.pyc │ │ │ │ ├── specialize.cpython-38.pyc │ │ │ │ ├── emitwrapper.cpython-38.pyc │ │ │ │ ├── genopscontext.cpython-38.pyc │ │ │ │ ├── genopsmapper.cpython-38.pyc │ │ │ │ ├── genopsprepare.cpython-38.pyc │ │ │ │ ├── genopsvisitor.cpython-38.pyc │ │ │ │ ├── genopsvtable.cpython-38.pyc │ │ │ │ ├── genstatement.cpython-38.pyc │ │ │ │ ├── ops_primitive.cpython-38.pyc │ │ │ │ ├── nonlocalcontrol.cpython-38.pyc │ │ │ │ └── prebuildvisitor.cpython-38.pyc │ │ │ ├── mypy │ │ │ ├── dmypy │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ │ └── client.cpython-38.pyc │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── collect.py │ │ │ │ ├── update.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── data.cpython-38.pyc │ │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ │ ├── update.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── collect.cpython-38.pyc │ │ │ │ │ ├── helpers.cpython-38.pyc │ │ │ │ │ ├── testapi.cpython-38.pyc │ │ │ │ │ ├── testargs.cpython-38.pyc │ │ │ │ │ ├── testcheck.cpython-38.pyc │ │ │ │ │ ├── testdeps.cpython-38.pyc │ │ │ │ │ ├── testdiff.cpython-38.pyc │ │ │ │ │ ├── testgraph.cpython-38.pyc │ │ │ │ │ ├── testinfer.cpython-38.pyc │ │ │ │ │ ├── testipc.cpython-38.pyc │ │ │ │ │ ├── testmerge.cpython-38.pyc │ │ │ │ │ ├── testmypyc.cpython-38.pyc │ │ │ │ │ ├── testparse.cpython-38.pyc │ │ │ │ │ ├── testsolve.cpython-38.pyc │ │ │ │ │ ├── testtypes.cpython-38.pyc │ │ │ │ │ ├── visitors.cpython-38.pyc │ │ │ │ │ ├── testcmdline.cpython-38.pyc │ │ │ │ │ ├── testdaemon.cpython-38.pyc │ │ │ │ │ ├── testpep561.cpython-38.pyc │ │ │ │ │ ├── testreports.cpython-38.pyc │ │ │ │ │ ├── testsamples.cpython-38.pyc │ │ │ │ │ ├── testsemanal.cpython-38.pyc │ │ │ │ │ ├── teststubgen.cpython-38.pyc │ │ │ │ │ ├── testtypegen.cpython-38.pyc │ │ │ │ │ └── typefixture.cpython-38.pyc │ │ │ ├── plugins │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── attrs.cpython-38.pyc │ │ │ │ │ ├── common.cpython-38.pyc │ │ │ │ │ ├── ctypes.cpython-38.pyc │ │ │ │ │ ├── enums.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── default.cpython-38.pyc │ │ │ ├── server │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── deps.cpython-38.pyc │ │ │ │ │ ├── astdiff.cpython-38.pyc │ │ │ │ │ ├── subexpr.cpython-38.pyc │ │ │ │ │ ├── target.cpython-38.pyc │ │ │ │ │ ├── trigger.cpython-38.pyc │ │ │ │ │ ├── update.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── astmerge.cpython-38.pyc │ │ │ │ │ ├── aststrip.cpython-38.pyc │ │ │ │ │ └── objgraph.cpython-38.pyc │ │ │ ├── typeshed │ │ │ │ ├── stdlib │ │ │ │ │ ├── 2 │ │ │ │ │ │ ├── distutils │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── emxccompiler.pyi │ │ │ │ │ │ ├── email │ │ │ │ │ │ │ ├── mime │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ ├── nonmultipart.pyi │ │ │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ │ │ ├── message.pyi │ │ │ │ │ │ │ │ ├── text.pyi │ │ │ │ │ │ │ │ └── multipart.pyi │ │ │ │ │ │ │ ├── encoders.pyi │ │ │ │ │ │ │ └── MIMEText.pyi │ │ │ │ │ │ ├── encodings │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── atexit.pyi │ │ │ │ │ │ ├── md5.pyi │ │ │ │ │ │ ├── nturl2path.pyi │ │ │ │ │ │ ├── htmlentitydefs.pyi │ │ │ │ │ │ ├── importlib.pyi │ │ │ │ │ │ └── whichdb.pyi │ │ │ │ │ ├── 3 │ │ │ │ │ │ ├── urllib │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── concurrent │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── futures │ │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── email │ │ │ │ │ │ │ └── mime │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ └── nonmultipart.pyi │ │ │ │ │ │ ├── nturl2path.pyi │ │ │ │ │ │ ├── encodings │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ └── html │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── entities.pyi │ │ │ │ │ └── 2and3 │ │ │ │ │ │ ├── wsgiref │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── distutils │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── command │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── bdist.pyi │ │ │ │ │ │ │ ├── build.pyi │ │ │ │ │ │ │ ├── check.pyi │ │ │ │ │ │ │ ├── clean.pyi │ │ │ │ │ │ │ ├── config.pyi │ │ │ │ │ │ │ ├── register.pyi │ │ │ │ │ │ │ ├── sdist.pyi │ │ │ │ │ │ │ ├── bdist_dumb.pyi │ │ │ │ │ │ │ ├── bdist_rpm.pyi │ │ │ │ │ │ │ ├── bdist_wininst.pyi │ │ │ │ │ │ │ ├── build_clib.pyi │ │ │ │ │ │ │ ├── build_ext.pyi │ │ │ │ │ │ │ ├── build_scripts.pyi │ │ │ │ │ │ │ ├── install_data.pyi │ │ │ │ │ │ │ ├── install_lib.pyi │ │ │ │ │ │ │ ├── bdist_packager.pyi │ │ │ │ │ │ │ ├── install_headers.pyi │ │ │ │ │ │ │ └── install_scripts.pyi │ │ │ │ │ │ ├── debug.pyi │ │ │ │ │ │ ├── filelist.pyi │ │ │ │ │ │ ├── bcppcompiler.pyi │ │ │ │ │ │ ├── msvccompiler.pyi │ │ │ │ │ │ └── unixccompiler.pyi │ │ │ │ │ │ ├── xml │ │ │ │ │ │ ├── etree │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── cElementTree.pyi │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── parsers │ │ │ │ │ │ │ ├── expat │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ ├── model.pyi │ │ │ │ │ │ │ └── errors.pyi │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── lib2to3 │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── sqlite3 │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── dummy_threading.pyi │ │ │ │ │ │ ├── antigravity.pyi │ │ │ │ │ │ └── keyword.pyi │ │ │ │ └── third_party │ │ │ │ │ ├── 2 │ │ │ │ │ ├── fb303 │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── kazoo │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── recipe │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── scribe │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── OpenSSL │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── concurrent │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── futures │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── six │ │ │ │ │ │ └── moves │ │ │ │ │ │ ├── queue.pyi │ │ │ │ │ │ ├── reprlib.pyi │ │ │ │ │ │ ├── _thread.pyi │ │ │ │ │ │ ├── cPickle.pyi │ │ │ │ │ │ ├── html_parser.pyi │ │ │ │ │ │ ├── http_client.pyi │ │ │ │ │ │ ├── http_cookies.pyi │ │ │ │ │ │ ├── CGIHTTPServer.pyi │ │ │ │ │ │ ├── _dummy_thread.pyi │ │ │ │ │ │ ├── configparser.pyi │ │ │ │ │ │ ├── http_cookiejar.pyi │ │ │ │ │ │ ├── socketserver.pyi │ │ │ │ │ │ ├── urllib_error.pyi │ │ │ │ │ │ ├── urllib_parse.pyi │ │ │ │ │ │ ├── xmlrpc_client.pyi │ │ │ │ │ │ ├── BaseHTTPServer.pyi │ │ │ │ │ │ ├── email_mime_base.pyi │ │ │ │ │ │ ├── email_mime_text.pyi │ │ │ │ │ │ ├── html_entities.pyi │ │ │ │ │ │ ├── urllib_request.pyi │ │ │ │ │ │ ├── urllib_response.pyi │ │ │ │ │ │ ├── urllib_robotparser.pyi │ │ │ │ │ │ ├── SimpleHTTPServer.pyi │ │ │ │ │ │ ├── email_mime_multipart.pyi │ │ │ │ │ │ ├── email_mime_nonmultipart.pyi │ │ │ │ │ │ └── urllib │ │ │ │ │ │ ├── robotparser.pyi │ │ │ │ │ │ └── error.pyi │ │ │ │ │ ├── 3 │ │ │ │ │ ├── jwt │ │ │ │ │ │ └── contrib │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── algorithms │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── six │ │ │ │ │ │ └── moves │ │ │ │ │ │ │ ├── queue.pyi │ │ │ │ │ │ │ ├── _thread.pyi │ │ │ │ │ │ │ ├── builtins.pyi │ │ │ │ │ │ │ ├── cPickle.pyi │ │ │ │ │ │ │ ├── reprlib.pyi │ │ │ │ │ │ │ ├── tkinter.pyi │ │ │ │ │ │ │ ├── BaseHTTPServer.pyi │ │ │ │ │ │ │ ├── CGIHTTPServer.pyi │ │ │ │ │ │ │ ├── _dummy_thread.pyi │ │ │ │ │ │ │ ├── configparser.pyi │ │ │ │ │ │ │ ├── html_entities.pyi │ │ │ │ │ │ │ ├── html_parser.pyi │ │ │ │ │ │ │ ├── http_client.pyi │ │ │ │ │ │ │ ├── http_cookies.pyi │ │ │ │ │ │ │ ├── socketserver.pyi │ │ │ │ │ │ │ ├── tkinter_ttk.pyi │ │ │ │ │ │ │ ├── urllib_error.pyi │ │ │ │ │ │ │ ├── urllib_parse.pyi │ │ │ │ │ │ │ ├── SimpleHTTPServer.pyi │ │ │ │ │ │ │ ├── email_mime_base.pyi │ │ │ │ │ │ │ ├── email_mime_text.pyi │ │ │ │ │ │ │ ├── http_cookiejar.pyi │ │ │ │ │ │ │ ├── tkinter_dialog.pyi │ │ │ │ │ │ │ ├── urllib_request.pyi │ │ │ │ │ │ │ ├── urllib_response.pyi │ │ │ │ │ │ │ ├── tkinter_constants.pyi │ │ │ │ │ │ │ ├── tkinter_filedialog.pyi │ │ │ │ │ │ │ ├── urllib_robotparser.pyi │ │ │ │ │ │ │ ├── email_mime_multipart.pyi │ │ │ │ │ │ │ ├── tkinter_commondialog.pyi │ │ │ │ │ │ │ ├── tkinter_tkfiledialog.pyi │ │ │ │ │ │ │ ├── email_mime_nonmultipart.pyi │ │ │ │ │ │ │ └── urllib │ │ │ │ │ │ │ ├── robotparser.pyi │ │ │ │ │ │ │ └── error.pyi │ │ │ │ │ ├── docutils │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── parsers │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── rst │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ ├── nodes.pyi │ │ │ │ │ │ │ │ └── states.pyi │ │ │ │ │ │ └── examples.pyi │ │ │ │ │ ├── typed_ast │ │ │ │ │ │ ├── conversions.pyi │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── pkg_resources │ │ │ │ │ │ └── py31compat.pyi │ │ │ │ │ └── 2and3 │ │ │ │ │ ├── geoip2 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── mixins.pyi │ │ │ │ │ ├── google │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── util │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── compiler │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── internal │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── empty_pb2.pyi │ │ │ │ │ ├── tornado │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── ssl_match_hostname.pyi │ │ │ │ │ ├── cryptography │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── hazmat │ │ │ │ │ │ ├── bindings │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── openssl │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── primitives │ │ │ │ │ │ ├── twofactor │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── constant_time.pyi │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── asymmetric │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ └── serialization │ │ │ │ │ │ │ └── pkcs12.pyi │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── backends │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── dateutil │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── pymysql │ │ │ │ │ ├── constants │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── util.pyi │ │ │ │ │ ├── werkzeug │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── lint.pyi │ │ │ │ │ └── middleware │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── Crypto │ │ │ │ │ ├── Random │ │ │ │ │ │ ├── Fortuna │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ ├── OSRNG │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── fallback.pyi │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── Util │ │ │ │ │ │ ├── strxor.pyi │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── RFC1751.pyi │ │ │ │ │ ├── Signature │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── PublicKey │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── Protocol │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── Chaffing.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── certifi.pyi │ │ │ │ │ ├── pynamodb │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── types.pyi │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── util.pyi │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── settings.pyi │ │ │ │ │ ├── jinja2 │ │ │ │ │ └── constants.pyi │ │ │ │ │ ├── requests │ │ │ │ │ ├── packages │ │ │ │ │ │ └── urllib3 │ │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ │ │ └── _implementation.pyi │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── response.pyi │ │ │ │ │ ├── status_codes.pyi │ │ │ │ │ └── compat.pyi │ │ │ │ │ ├── maxminddb │ │ │ │ │ ├── errors.pyi │ │ │ │ │ └── const.pyi │ │ │ │ │ ├── markupsafe │ │ │ │ │ └── _constants.pyi │ │ │ │ │ ├── redis │ │ │ │ │ └── utils.pyi │ │ │ │ │ └── boto │ │ │ │ │ └── kms │ │ │ │ │ └── __init__.pyi │ │ │ ├── version.py │ │ │ ├── __init__.py │ │ │ ├── py.typed │ │ │ └── __pycache__ │ │ │ │ ├── api.cpython-38.pyc │ │ │ │ ├── git.cpython-38.pyc │ │ │ │ ├── ipc.cpython-38.pyc │ │ │ │ ├── join.cpython-38.pyc │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ ├── meet.cpython-38.pyc │ │ │ │ ├── mro.cpython-38.pyc │ │ │ │ ├── util.cpython-38.pyc │ │ │ │ ├── argmap.cpython-38.pyc │ │ │ │ ├── binder.cpython-38.pyc │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ ├── errors.cpython-38.pyc │ │ │ │ ├── fixup.cpython-38.pyc │ │ │ │ ├── infer.cpython-38.pyc │ │ │ │ ├── lookup.cpython-38.pyc │ │ │ │ ├── nodes.cpython-38.pyc │ │ │ │ ├── parse.cpython-38.pyc │ │ │ │ ├── plugin.cpython-38.pyc │ │ │ │ ├── report.cpython-38.pyc │ │ │ │ ├── scope.cpython-38.pyc │ │ │ │ ├── solve.cpython-38.pyc │ │ │ │ ├── state.cpython-38.pyc │ │ │ │ ├── stats.cpython-38.pyc │ │ │ │ ├── types.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ ├── applytype.cpython-38.pyc │ │ │ │ ├── checker.cpython-38.pyc │ │ │ │ ├── checkexpr.cpython-38.pyc │ │ │ │ ├── defaults.cpython-38.pyc │ │ │ │ ├── dmypy_os.cpython-38.pyc │ │ │ │ ├── erasetype.cpython-38.pyc │ │ │ │ ├── fastparse.cpython-38.pyc │ │ │ │ ├── freetree.cpython-38.pyc │ │ │ │ ├── fscache.cpython-38.pyc │ │ │ │ ├── fswatcher.cpython-38.pyc │ │ │ │ ├── gclogger.cpython-38.pyc │ │ │ │ ├── literals.cpython-38.pyc │ │ │ │ ├── maptype.cpython-38.pyc │ │ │ │ ├── messages.cpython-38.pyc │ │ │ │ ├── metastore.cpython-38.pyc │ │ │ │ ├── options.cpython-38.pyc │ │ │ │ ├── renaming.cpython-38.pyc │ │ │ │ ├── sametypes.cpython-38.pyc │ │ │ │ ├── semanal.cpython-38.pyc │ │ │ │ ├── sitepkgs.cpython-38.pyc │ │ │ │ ├── strconv.cpython-38.pyc │ │ │ │ ├── stubdoc.cpython-38.pyc │ │ │ │ ├── stubgen.cpython-38.pyc │ │ │ │ ├── stubgenc.cpython-38.pyc │ │ │ │ ├── stubtest.cpython-38.pyc │ │ │ │ ├── stubutil.cpython-38.pyc │ │ │ │ ├── subtypes.cpython-38.pyc │ │ │ │ ├── traverser.cpython-38.pyc │ │ │ │ ├── typeanal.cpython-38.pyc │ │ │ │ ├── typeops.cpython-38.pyc │ │ │ │ ├── typestate.cpython-38.pyc │ │ │ │ ├── typevars.cpython-38.pyc │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ ├── visitor.cpython-38.pyc │ │ │ │ ├── bogus_type.cpython-38.pyc │ │ │ │ ├── checkmember.cpython-38.pyc │ │ │ │ ├── constraints.cpython-38.pyc │ │ │ │ ├── dmypy_util.cpython-38.pyc │ │ │ │ ├── errorcodes.cpython-38.pyc │ │ │ │ ├── expandtype.cpython-38.pyc │ │ │ │ ├── exprtotype.cpython-38.pyc │ │ │ │ ├── fastparse2.cpython-38.pyc │ │ │ │ ├── indirection.cpython-38.pyc │ │ │ │ ├── memprofile.cpython-38.pyc │ │ │ │ ├── moduleinfo.cpython-38.pyc │ │ │ │ ├── sharedparse.cpython-38.pyc │ │ │ │ ├── suggestions.cpython-38.pyc │ │ │ │ ├── tvar_scope.cpython-38.pyc │ │ │ │ ├── checkstrformat.cpython-38.pyc │ │ │ │ ├── config_parser.cpython-38.pyc │ │ │ │ ├── dmypy_server.cpython-38.pyc │ │ │ │ ├── find_sources.cpython-38.pyc │ │ │ │ ├── mixedtraverser.cpython-38.pyc │ │ │ │ ├── modulefinder.cpython-38.pyc │ │ │ │ ├── moduleinspect.cpython-38.pyc │ │ │ │ ├── reachability.cpython-38.pyc │ │ │ │ ├── semanal_enum.cpython-38.pyc │ │ │ │ ├── semanal_infer.cpython-38.pyc │ │ │ │ ├── semanal_main.cpython-38.pyc │ │ │ │ ├── semanal_pass1.cpython-38.pyc │ │ │ │ ├── semanal_shared.cpython-38.pyc │ │ │ │ ├── treetransform.cpython-38.pyc │ │ │ │ ├── type_visitor.cpython-38.pyc │ │ │ │ ├── typetraverser.cpython-38.pyc │ │ │ │ ├── message_registry.cpython-38.pyc │ │ │ │ ├── semanal_newtype.cpython-38.pyc │ │ │ │ ├── semanal_typeargs.cpython-38.pyc │ │ │ │ └── split_namespace.cpython-38.pyc │ │ │ ├── mypy-0.770.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── WHEEL │ │ │ └── entry_points.txt │ │ │ ├── pip-19.0.3-py3.8.egg │ │ │ ├── EGG-INFO │ │ │ │ ├── not-zip-safe │ │ │ │ ├── top_level.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ └── entry_points.txt │ │ │ └── pip │ │ │ │ ├── _internal │ │ │ │ ├── utils │ │ │ │ │ └── __init__.py │ │ │ │ ├── operations │ │ │ │ │ └── __init__.py │ │ │ │ ├── models │ │ │ │ │ └── __init__.py │ │ │ │ └── cli │ │ │ │ │ └── __init__.py │ │ │ │ ├── _vendor │ │ │ │ ├── chardet │ │ │ │ │ └── cli │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── html5lib │ │ │ │ │ └── filters │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── urllib3 │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _securetransport │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── packages │ │ │ │ │ │ ├── backports │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── msgpack │ │ │ │ │ └── _version.py │ │ │ │ ├── idna │ │ │ │ │ ├── package_data.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── certifi │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __main__.py │ │ │ │ ├── pep517 │ │ │ │ │ └── __init__.py │ │ │ │ ├── cachecontrol │ │ │ │ │ └── caches │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── pytoml │ │ │ │ │ └── __init__.py │ │ │ │ └── distlib │ │ │ │ │ ├── t32.exe │ │ │ │ │ ├── t64.exe │ │ │ │ │ └── w32.exe │ │ │ │ └── __init__.py │ │ │ ├── typed_ast │ │ │ ├── __init__.py │ │ │ ├── _ast27.cp38-win32.pyd │ │ │ └── _ast3.cp38-win32.pyd │ │ │ ├── mypy_extensions-0.4.3.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── setuptools.pth │ │ │ ├── typed_ast-1.4.1-py3.8.egg-info │ │ │ ├── dependency_links.txt │ │ │ └── top_level.txt │ │ │ ├── typing_extensions-3.7.4.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── easy-install.pth │ │ │ ├── setuptools-40.8.0-py3.8.egg │ │ │ └── __pycache__ │ │ │ ├── mypy_extensions.cpython-38.pyc │ │ │ └── typing_extensions.cpython-38.pyc │ ├── pyvenv.cfg │ └── Scripts │ │ ├── mypy.exe │ │ ├── pip.exe │ │ ├── pip3.exe │ │ ├── dmypy.exe │ │ ├── pip3.8.exe │ │ ├── python.exe │ │ ├── pythonw.exe │ │ ├── stubgen.exe │ │ ├── stubtest.exe │ │ ├── easy_install.exe │ │ └── easy_install-3.8.exe │ ├── .idea │ ├── .gitignore │ ├── misc.xml │ └── inspectionProfiles │ │ └── profiles_settings.xml │ └── 06_f_str.py ├── 12-Многопоточное программирование └── MultiAsyncParallel │ ├── venv │ ├── Lib │ │ └── site-packages │ │ │ ├── attr │ │ │ └── py.typed │ │ │ ├── aiohttp │ │ │ ├── py.typed │ │ │ └── _find_header.pxd │ │ │ ├── urllib3 │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ └── _securetransport │ │ │ │ │ └── __init__.py │ │ │ └── packages │ │ │ │ ├── backports │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── yarl │ │ │ ├── py.typed │ │ │ └── _quoting.cp38-win32.pyd │ │ │ ├── chardet │ │ │ └── cli │ │ │ │ └── __init__.py │ │ │ ├── async_timeout │ │ │ └── py.typed │ │ │ ├── idna-2.9.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── multidict │ │ │ └── py.typed │ │ │ ├── aiofiles-0.5.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── aiohttp-3.6.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── attrs-19.3.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── chardet-3.0.4.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── entry_points.txt │ │ │ └── WHEEL │ │ │ ├── urllib3-1.25.9.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── async_timeout-3.0.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── certifi-2020.4.5.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── multidict-4.7.5.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── pip-19.0.3-py3.8.egg │ │ │ ├── EGG-INFO │ │ │ │ ├── not-zip-safe │ │ │ │ ├── top_level.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ └── entry_points.txt │ │ │ └── pip │ │ │ │ ├── _internal │ │ │ │ ├── utils │ │ │ │ │ └── __init__.py │ │ │ │ ├── operations │ │ │ │ │ └── __init__.py │ │ │ │ ├── models │ │ │ │ │ └── __init__.py │ │ │ │ └── cli │ │ │ │ │ └── __init__.py │ │ │ │ ├── _vendor │ │ │ │ ├── chardet │ │ │ │ │ └── cli │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── html5lib │ │ │ │ │ └── filters │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── urllib3 │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _securetransport │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── packages │ │ │ │ │ │ ├── backports │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── msgpack │ │ │ │ │ └── _version.py │ │ │ │ ├── idna │ │ │ │ │ ├── package_data.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── certifi │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __main__.py │ │ │ │ ├── pep517 │ │ │ │ │ └── __init__.py │ │ │ │ ├── cachecontrol │ │ │ │ │ └── caches │ │ │ │ │ │ └── __init__.py │ │ │ │ └── pytoml │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── requests-2.23.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── idna │ │ │ ├── package_data.py │ │ │ └── __init__.py │ │ │ ├── setuptools.pth │ │ │ ├── yarl-1.4.2-py3.8.egg-info │ │ │ ├── dependency_links.txt │ │ │ ├── top_level.txt │ │ │ └── requires.txt │ │ │ ├── easy-install.pth │ │ │ ├── certifi │ │ │ └── __init__.py │ │ │ ├── aiofiles │ │ │ └── __init__.py │ │ │ └── setuptools-40.8.0-py3.8.egg │ ├── pyvenv.cfg │ └── Scripts │ │ ├── pip.exe │ │ ├── pip3.exe │ │ ├── pip3.8.exe │ │ ├── python.exe │ │ ├── pythonw.exe │ │ ├── chardetect.exe │ │ ├── easy_install.exe │ │ └── easy_install-3.8.exe │ ├── .idea │ ├── .gitignore │ └── misc.xml │ └── multithreading │ └── __pycache__ │ └── decorators.cpython-38.pyc ├── 05-Исключения └── 03-UnitTesting │ ├── __pycache__ │ └── fizz_buzz.cpython-37.pyc │ └── fizz_buzz.py └── Чат в Telegram и Канал в YouTube.md /07-Модули и пакеты/02-Modules and Packages/MainPackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07-Модули и пакеты/02-Modules and Packages/MainPackage/SubPackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/.mypy_cache/3.8/@plugins_snapshot.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/dmypy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/collect.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/update.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/attr/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/.mypy_cache/3.8/@plugins_snapshot.json.2cf3e55ead7def15: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/aiohttp/py.typed: -------------------------------------------------------------------------------- 1 | Marker -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy-0.770.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/3/urllib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.770" 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/yarl/py.typed: -------------------------------------------------------------------------------- 1 | # Placeholder -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/distutils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/email/mime/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/wsgiref/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/3/concurrent/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/3/email/mime/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/fb303/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/kazoo/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/scribe/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/typed_ast/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.4.1" 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/xml/etree/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/OpenSSL/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/concurrent/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/geoip2/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/google/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/tornado/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/jwt/contrib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy_extensions-0.4.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.8.egg 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/async_timeout/py.typed: -------------------------------------------------------------------------------- 1 | Placeholder -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/idna-2.9.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/multidict/py.typed: -------------------------------------------------------------------------------- 1 | PEP-561 marker. -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy-0.770.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | mypy 2 | mypyc 3 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__init__.py: -------------------------------------------------------------------------------- 1 | # This page intentionally left blank 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/bdist.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/build.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/check.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/clean.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/config.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/register.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/sdist.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/kazoo/recipe/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/backports/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/cryptography/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/dateutil/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/typed_ast-1.4.1-py3.8.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/typing_extensions-3.7.4.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/aiofiles-0.5.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/aiohttp-3.6.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/attrs-19.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/idna-2.9.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/urllib3-1.25.9.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07-Модули и пакеты/02-Modules and Packages/MainPackage/main_script.py: -------------------------------------------------------------------------------- 1 | def hello_main(): 2 | print('Hello from Main') 3 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/bdist_dumb.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/bdist_rpm.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/bdist_wininst.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/build_clib.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/build_ext.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/build_scripts.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/install_data.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/install_lib.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/pymysql/constants/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.6.egg 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/async_timeout-3.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/attrs-19.3.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | attr 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/certifi-2020.4.5.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/multidict-4.7.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/requests-2.23.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/bdist_packager.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/install_headers.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/install_scripts.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/Fortuna/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/werkzeug/middleware/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy_extensions-0.4.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | mypy_extensions 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/aiofiles-0.5.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | aiofiles 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/aiohttp-3.6.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.9' 2 | 3 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/requests-2.23.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.8.egg 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/urllib3-1.25.9.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/yarl-1.4.2-py3.8.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/yarl-1.4.2-py3.8.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | yarl 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/queue.pyi: -------------------------------------------------------------------------------- 1 | from Queue import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/reprlib.pyi: -------------------------------------------------------------------------------- 1 | from repr import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/certifi.pyi: -------------------------------------------------------------------------------- 1 | def where() -> str: ... 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/compiler/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/internal/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/queue.pyi: -------------------------------------------------------------------------------- 1 | from queue import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/typing_extensions-3.7.4.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | typing_extensions 2 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/certifi-2020.4.5.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/multidict-4.7.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | multidict 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.8.egg 2 | ./pip-19.0.3-py3.8.egg 3 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/xml/__init__.pyi: -------------------------------------------------------------------------------- 1 | import xml.parsers as parsers 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/_thread.pyi: -------------------------------------------------------------------------------- 1 | from thread import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/cPickle.pyi: -------------------------------------------------------------------------------- 1 | from cPickle import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/cryptography/hazmat/bindings/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/pynamodb/__init__.pyi: -------------------------------------------------------------------------------- 1 | __license__: str 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/_thread.pyi: -------------------------------------------------------------------------------- 1 | from _thread import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/builtins.pyi: -------------------------------------------------------------------------------- 1 | from builtins import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/cPickle.pyi: -------------------------------------------------------------------------------- 1 | from pickle import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/reprlib.pyi: -------------------------------------------------------------------------------- 1 | from reprlib import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter.pyi: -------------------------------------------------------------------------------- 1 | from tkinter import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/async_timeout-3.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | async_timeout 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. The mypy package uses inline types. 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/html_parser.pyi: -------------------------------------------------------------------------------- 1 | from HTMLParser import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/http_client.pyi: -------------------------------------------------------------------------------- 1 | from httplib import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/http_cookies.pyi: -------------------------------------------------------------------------------- 1 | from Cookie import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/cryptography/hazmat/bindings/openssl/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/jinja2/constants.pyi: -------------------------------------------------------------------------------- 1 | LOREM_IPSUM_WORDS: str 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/contrib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/packages/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/typed_ast-1.4.1-py3.8.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _ast27 2 | _ast3 3 | typed_ast 4 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/__init__.pyi: -------------------------------------------------------------------------------- 1 | # Stubs for lib2to3 (Python 3.6) 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/xml/parsers/expat/__init__.pyi: -------------------------------------------------------------------------------- 1 | from pyexpat import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/xml/parsers/expat/model.pyi: -------------------------------------------------------------------------------- 1 | from pyexpat.model import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/CGIHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from CGIHTTPServer import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/_dummy_thread.pyi: -------------------------------------------------------------------------------- 1 | from dummy_thread import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/configparser.pyi: -------------------------------------------------------------------------------- 1 | from ConfigParser import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/http_cookiejar.pyi: -------------------------------------------------------------------------------- 1 | from cookielib import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/socketserver.pyi: -------------------------------------------------------------------------------- 1 | from SocketServer import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/urllib_error.pyi: -------------------------------------------------------------------------------- 1 | from .urllib.error import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/urllib_parse.pyi: -------------------------------------------------------------------------------- 1 | from .urllib.parse import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/xmlrpc_client.pyi: -------------------------------------------------------------------------------- 1 | from xmlrpclib import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/OSRNG/__init__.pyi: -------------------------------------------------------------------------------- 1 | __revision__: str 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/__init__.pyi: -------------------------------------------------------------------------------- 1 | __version__: bytes 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/BaseHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from http.server import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/CGIHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from http.server import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/_dummy_thread.pyi: -------------------------------------------------------------------------------- 1 | from _dummy_thread import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/configparser.pyi: -------------------------------------------------------------------------------- 1 | from configparser import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/html_entities.pyi: -------------------------------------------------------------------------------- 1 | from html.entities import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/html_parser.pyi: -------------------------------------------------------------------------------- 1 | from html.parser import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/http_client.pyi: -------------------------------------------------------------------------------- 1 | from http.client import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/http_cookies.pyi: -------------------------------------------------------------------------------- 1 | from http.cookies import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/socketserver.pyi: -------------------------------------------------------------------------------- 1 | from socketserver import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter_ttk.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.ttk import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/urllib_error.pyi: -------------------------------------------------------------------------------- 1 | from urllib.error import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/urllib_parse.pyi: -------------------------------------------------------------------------------- 1 | from urllib.parse import * 2 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/hangman/invalid_operation_exception.py: -------------------------------------------------------------------------------- 1 | class InvalidOperationException(Exception): 2 | pass 3 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.6.egg 2 | ./pip-19.0.3-py3.6.egg 3 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/yarl-1.4.2-py3.8.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | multidict>=4.0 2 | idna>=2.0 3 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/xml/parsers/__init__.pyi: -------------------------------------------------------------------------------- 1 | import xml.parsers.expat as expat 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/xml/parsers/expat/errors.pyi: -------------------------------------------------------------------------------- 1 | from pyexpat.errors import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/BaseHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from BaseHTTPServer import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/email_mime_base.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.base import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/email_mime_text.pyi: -------------------------------------------------------------------------------- 1 | from email.MIMEText import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/html_entities.pyi: -------------------------------------------------------------------------------- 1 | from htmlentitydefs import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/urllib_request.pyi: -------------------------------------------------------------------------------- 1 | from .urllib.request import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/urllib_response.pyi: -------------------------------------------------------------------------------- 1 | from .urllib.response import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/urllib_robotparser.pyi: -------------------------------------------------------------------------------- 1 | from robotparser import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/SimpleHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from http.server import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/email_mime_base.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.base import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/email_mime_text.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.text import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/http_cookiejar.pyi: -------------------------------------------------------------------------------- 1 | from http.cookiejar import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter_dialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.dialog import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/urllib_request.pyi: -------------------------------------------------------------------------------- 1 | from .urllib.request import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/urllib_response.pyi: -------------------------------------------------------------------------------- 1 | from .urllib.response import * 2 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.8.egg 2 | ./pip-19.0.3-py3.8.egg 3 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/sqlite3/__init__.pyi: -------------------------------------------------------------------------------- 1 | from sqlite3.dbapi2 import * # noqa: F403 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/SimpleHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from SimpleHTTPServer import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/lint.pyi: -------------------------------------------------------------------------------- 1 | from ..middleware.lint import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter_constants.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.constants import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter_filedialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.filedialog import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/urllib_robotparser.pyi: -------------------------------------------------------------------------------- 1 | from urllib.robotparser import * 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/debug.pyi: -------------------------------------------------------------------------------- 1 | # Stubs for distutils.debug 2 | 3 | DEBUG: bool 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/email_mime_multipart.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.multipart import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/maxminddb/errors.pyi: -------------------------------------------------------------------------------- 1 | class InvalidDatabaseError(RuntimeError): ... 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/email_mime_multipart.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.multipart import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter_commondialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.commondialog import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter_tkfiledialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.filedialog import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/email_mime_nonmultipart.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.nonmultipart import * 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/response.pyi: -------------------------------------------------------------------------------- 1 | def is_fp_closed(obj): ... 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/jwt/contrib/algorithms/__init__.pyi: -------------------------------------------------------------------------------- 1 | from hashlib import _Hash as _HashAlg 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/email_mime_nonmultipart.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.nonmultipart import * 2 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.04.05.1" 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/filelist.pyi: -------------------------------------------------------------------------------- 1 | # Stubs for distutils.filelist 2 | 3 | class FileList: ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/aiohttp/_find_header.pxd: -------------------------------------------------------------------------------- 1 | cdef extern from "_find_header.h": 2 | int find_header(char *, int) 3 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/3/nturl2path.pyi: -------------------------------------------------------------------------------- 1 | def url2pathname(url: str) -> str: ... 2 | def pathname2url(p: str) -> str: ... 3 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/docutils/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name) -> Any: ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Users\Engin\AppData\Local\Programs\Python\Python38-32 2 | include-system-site-packages = false 3 | version = 3.8.2 4 | -------------------------------------------------------------------------------- /07-Модули и пакеты/02-Modules and Packages/MainPackage/SubPackage/subscript.py: -------------------------------------------------------------------------------- 1 | def hello_subscript(): 2 | print('Hello subscript') 3 | 4 | def hello_indeed(): 5 | print('Indeed Hello') -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/urllib/robotparser.pyi: -------------------------------------------------------------------------------- 1 | from robotparser import RobotFileParser as RobotFileParser 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/cryptography/hazmat/primitives/twofactor/__init__.pyi: -------------------------------------------------------------------------------- 1 | class InvalidToken(Exception): ... 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/pymysql/util.pyi: -------------------------------------------------------------------------------- 1 | def byte2int(b): ... 2 | def int2byte(i): ... 3 | def join_bytes(bs): ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/pynamodb/types.pyi: -------------------------------------------------------------------------------- 1 | STRING: str 2 | NUMBER: str 3 | BINARY: str 4 | HASH: str 5 | RANGE: str 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/docutils/parsers/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name) -> Any: ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/game_status.py: -------------------------------------------------------------------------------- 1 | from enum import Enum 2 | 3 | 4 | class GameStatus(Enum): 5 | IN_PROGRESS = 1 6 | GAME_IS_OVER = 2 -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/chardet-3.0.4.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | chardetect = chardet.cli.chardetect:main 3 | 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/dmypy/__main__.py: -------------------------------------------------------------------------------- 1 | from mypy.dmypy.client import console_entry 2 | 3 | if __name__ == '__main__': 4 | console_entry() 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/3/encodings/__init__.pyi: -------------------------------------------------------------------------------- 1 | import codecs 2 | 3 | def search_function(encoding: str) -> codecs.CodecInfo: ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/Crypto/Util/strxor.pyi: -------------------------------------------------------------------------------- 1 | def strxor(*args, **kwargs): ... 2 | def strxor_c(*args, **kwargs): ... 3 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/cryptography/hazmat/primitives/constant_time.pyi: -------------------------------------------------------------------------------- 1 | def bytes_eq(a: bytes, b: bytes) -> bool: ... 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/docutils/parsers/rst/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name) -> Any: ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/docutils/parsers/rst/nodes.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name) -> Any: ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/urllib/robotparser.pyi: -------------------------------------------------------------------------------- 1 | from urllib.robotparser import RobotFileParser as RobotFileParser 2 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Scripts/mypy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Scripts/mypy.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/markupsafe/_constants.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any, Dict, Text 2 | 3 | HTML_ENTITIES: Dict[Text, int] 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Scripts/dmypy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Scripts/dmypy.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Scripts/pip3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Scripts/pip3.8.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Scripts/python.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Scripts/stubgen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Scripts/stubgen.exe -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = D:\ProgramFiles\Microsoft Visual Studio\Shared\Python36_64 2 | include-system-site-packages = false 3 | version = 3.6.6 4 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Users\Engin\AppData\Local\Programs\Python\Python38-32 2 | include-system-site-packages = false 3 | version = 3.8.2 4 | -------------------------------------------------------------------------------- /07-Модули и пакеты/03-__name__ and __main__/program.py: -------------------------------------------------------------------------------- 1 | #from converter import to_inches 2 | #from converter import * 3 | #import converter 4 | #import converter as c 5 | print(converter.to_inches(10)) -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy-0.770.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/dummy_threading.pyi: -------------------------------------------------------------------------------- 1 | 2 | from _dummy_threading import * 3 | from _dummy_threading import __all__ as __all__ 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/Crypto/Signature/__init__.pyi: -------------------------------------------------------------------------------- 1 | # Names in __all__ with no definition: 2 | # PKCS1_PSS 3 | # PKCS1_v1_5 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/cryptography/hazmat/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/pynamodb/connection/util.pyi: -------------------------------------------------------------------------------- 1 | from typing import Text 2 | 3 | def pythonic(var_name: Text) -> Text: ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Scripts/stubtest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Scripts/stubtest.exe -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /05-Исключения/03-UnitTesting/__pycache__/fizz_buzz.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/05-Исключения/03-UnitTesting/__pycache__/fizz_buzz.cpython-37.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/Crypto/PublicKey/__init__.pyi: -------------------------------------------------------------------------------- 1 | # Names in __all__ with no definition: 2 | # DSA 3 | # ElGamal 4 | # RSA 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/cryptography/hazmat/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def default_backend() -> Any: ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/requests/status_codes.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | from .structures import LookupDict 3 | 4 | codes: Any 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/docutils/examples.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | html_parts: Any 4 | 5 | def __getattr__(name) -> Any: ... 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/cryptography/hazmat/primitives/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_bz2.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_msi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_msi.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_ssl.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/Crypto/Protocol/__init__.pyi: -------------------------------------------------------------------------------- 1 | # Names in __all__ with no definition: 2 | # AllOrNothing 3 | # Chaffing 4 | # KDF 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/backports/ssl_match_hostname.pyi: -------------------------------------------------------------------------------- 1 | class CertificateError(ValueError): ... 2 | 3 | def match_hostname(cert, hostname): ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/typed_ast/conversions.pyi: -------------------------------------------------------------------------------- 1 | from . import ast27 2 | from . import ast3 3 | 4 | def py2to3(ast: ast27.AST) -> ast3.AST: ... 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/typing_extensions-3.7.4.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Scripts/easy_install-3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Scripts/easy_install-3.8.exe -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_ctypes.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_lzma.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_socket.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/pip3.6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/pip3.6.exe -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/pyexpat.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/python.exe -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/python3.dll -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/select.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/sqlite3.dll -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/tcl86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/tcl86t.dll -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/tk86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/tk86t.dll -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/aiofiles-0.5.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/aiohttp-3.6.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_asyncio.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_asyncio.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_decimal.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_decimal.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_hashlib.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_sqlite3.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_sqlite3.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_testcapi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_testcapi.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_tkinter.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_tkinter.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/python36.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/python36.dll -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/winsound.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/winsound.pyd -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/async_timeout-3.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.32.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/multidict-4.7.5.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: false 4 | Tag: cp38-cp38-win32 5 | 6 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/encodings/__init__.pyi: -------------------------------------------------------------------------------- 1 | import codecs 2 | 3 | import typing 4 | 5 | def search_function(encoding: str) -> codecs.CodecInfo: 6 | ... 7 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/xml/etree/cElementTree.pyi: -------------------------------------------------------------------------------- 1 | # Stubs for xml.etree.cElementTree (Python 3.4) 2 | 3 | from xml.etree.ElementTree import * # noqa: F403 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.8 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_ctypes_test.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_ctypes_test.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_elementtree.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_overlapped.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_overlapped.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_testbuffer.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_testbuffer.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_testconsole.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_testconsole.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/unicodedata.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/vcruntime140.dll -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/pip3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/pip3.8.exe -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/python.exe -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/06_f_str.py: -------------------------------------------------------------------------------- 1 | full_name = 'John Fowler' 2 | print(f'full_name={full_name}') 3 | 4 | print(f'Logging: {full_name=}') 5 | 6 | print(f'Logging: {full_name[5:]=}') 7 | print(f'{full_name=:>15}') 8 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/atexit.pyi: -------------------------------------------------------------------------------- 1 | from typing import TypeVar, Any 2 | 3 | _FT = TypeVar('_FT') 4 | 5 | def register(func: _FT, *args: Any, **kargs: Any) -> _FT: ... 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/md5.pyi: -------------------------------------------------------------------------------- 1 | # Stubs for Python 2.7 md5 stdlib module 2 | 3 | from hashlib import md5 as md5, md5 as new 4 | 5 | blocksize: int 6 | digest_size: int 7 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/nturl2path.pyi: -------------------------------------------------------------------------------- 1 | from typing import AnyStr 2 | 3 | def url2pathname(url: AnyStr) -> AnyStr: ... 4 | def pathname2url(p: AnyStr) -> AnyStr: ... 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy_extensions-0.4.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/hangman/game_status.py: -------------------------------------------------------------------------------- 1 | from enum import Enum 2 | 3 | 4 | class GameStatus(Enum): 5 | WON = 1 6 | LOST = 2 7 | IN_PROGRESS = 3 8 | NOT_STARTED = 4 9 | 10 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ("ssl_match_hostname",) 6 | -------------------------------------------------------------------------------- /05-Исключения/03-UnitTesting/fizz_buzz.py: -------------------------------------------------------------------------------- 1 | def get_reply(number): 2 | if number%5==0 and number%3==0: 3 | return 'FizzBuzz' 4 | elif number%3==0: 5 | return 'Fizz' 6 | elif number%5==0: 7 | return 'Buzz' 8 | else: 9 | return '' -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/email/mime/nonmultipart.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.base import MIMEBase 2 | 3 | class MIMENonMultipart(MIMEBase): 4 | def attach(self, payload): ... 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/htmlentitydefs.pyi: -------------------------------------------------------------------------------- 1 | from typing import Dict 2 | 3 | name2codepoint: Dict[str, int] 4 | codepoint2name: Dict[int, str] 5 | entitydefs: Dict[str, str] 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/3/concurrent/futures/__init__.pyi: -------------------------------------------------------------------------------- 1 | from ._base import * # noqa: F403 2 | from .thread import * # noqa: F403 3 | from .process import * # noqa: F403 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/Crypto/Util/__init__.pyi: -------------------------------------------------------------------------------- 1 | # Names in __all__ with no definition: 2 | # RFC1751 3 | # asn1 4 | # number 5 | # randpool 6 | # strxor 7 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/pkg_resources/py31compat.pyi: -------------------------------------------------------------------------------- 1 | from typing import Text 2 | import os 3 | import sys 4 | 5 | needs_makedirs: bool 6 | 7 | makedirs = os.makedirs 8 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/game_result.py: -------------------------------------------------------------------------------- 1 | from dataclasses import dataclass 2 | 3 | 4 | @dataclass 5 | class GameResult: 6 | questions_passed: int 7 | mistakes_made: int 8 | won: bool 9 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.6 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_distutils_findvs.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_distutils_findvs.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_multiprocessing.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_multiprocessing.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_testmultiphase.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_testmultiphase.pyd -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/easy_install-3.6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/easy_install-3.6.exe -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/attrs-19.3.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/idna-2.9.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/chardetect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/chardetect.exe -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/3/html/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import AnyStr 2 | 3 | def escape(s: AnyStr, quote: bool = ...) -> AnyStr: ... 4 | def unescape(s: AnyStr) -> AnyStr: ... 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/concurrent/futures/__init__.pyi: -------------------------------------------------------------------------------- 1 | from ._base import * # noqa: F403 2 | from .thread import * # noqa: F403 3 | from .process import * # noqa: F403 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/geoip2/mixins.pyi: -------------------------------------------------------------------------------- 1 | class SimpleEquality: 2 | def __eq__(self, other: object) -> bool: ... 3 | def __ne__(self, other: object) -> bool: ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/empty_pb2.pyi: -------------------------------------------------------------------------------- 1 | from google.protobuf.message import Message 2 | 3 | class Empty(Message): 4 | def __init__(self,) -> None: ... 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/typed_ast/__init__.pyi: -------------------------------------------------------------------------------- 1 | # This module is a fork of the CPython 2 and 3 ast modules with PEP 484 support. 2 | # See: https://github.com/python/typed_ast 3 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_testimportmultiple.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Scripts/_testimportmultiple.pyd -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/chardet-3.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.8 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/requests-2.23.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.4) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/urllib3-1.25.9.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/distutils/emxccompiler.pyi: -------------------------------------------------------------------------------- 1 | # Stubs for emxccompiler 2 | 3 | from distutils.unixccompiler import UnixCCompiler 4 | 5 | class EMXCCompiler(UnixCCompiler): ... 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/email/mime/base.pyi: -------------------------------------------------------------------------------- 1 | from email import message 2 | 3 | class MIMEBase(message.Message): 4 | def __init__(self, _maintype, _subtype, **_params) -> None: ... 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/importlib.pyi: -------------------------------------------------------------------------------- 1 | import types 2 | from typing import Optional, Text 3 | 4 | def import_module(name: Text, package: Optional[Text] = ...) -> types.ModuleType: ... 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/antigravity.pyi: -------------------------------------------------------------------------------- 1 | 2 | import sys 3 | 4 | if sys.version_info >= (3, 0): 5 | def geohash(latitude: float, longitude: float, datedow: bytes) -> None: ... 6 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/hangman/__pycache__/game.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/hangman/__pycache__/game.cpython-36.pyc -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/aiofiles/__init__.py: -------------------------------------------------------------------------------- 1 | """Utilities for asyncio-friendly file handling.""" 2 | from .threadpool import open 3 | 4 | __version__ = "0.5.0" 5 | 6 | __all__ = ["open"] 7 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/certifi-2020.4.5.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/easy_install-3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/12-Многопоточное программирование/MultiAsyncParallel/venv/Scripts/easy_install-3.8.exe -------------------------------------------------------------------------------- /07-Модули и пакеты/02-Modules and Packages/fizz_buzz.py: -------------------------------------------------------------------------------- 1 | def get_reply(number): 2 | if number%5==0 and number%3==0: 3 | return 'FizzBuzz' 4 | elif number%3==0: 5 | return 'Fizz' 6 | elif number%5==0: 7 | return 'Buzz' 8 | else: 9 | return '' -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/bcppcompiler.pyi: -------------------------------------------------------------------------------- 1 | # Stubs for distutils.bcppcompiler 2 | 3 | from distutils.ccompiler import CCompiler 4 | 5 | 6 | class BCPPCompiler(CCompiler): ... 7 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/msvccompiler.pyi: -------------------------------------------------------------------------------- 1 | # Stubs for distutils.msvccompiler 2 | 3 | from distutils.ccompiler import CCompiler 4 | 5 | 6 | class MSVCCompiler(CCompiler): ... 7 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/Crypto/__init__.pyi: -------------------------------------------------------------------------------- 1 | # Names in __all__ with no definition: 2 | # Cipher 3 | # Hash 4 | # Protocol 5 | # PublicKey 6 | # Signature 7 | # Util 8 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/setuptools-40.8.0-py3.8.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/setuptools-40.8.0-py3.8.egg -------------------------------------------------------------------------------- /07-Модули и пакеты/02-Modules and Packages/MainPackage/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/07-Модули и пакеты/02-Modules and Packages/MainPackage/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/distutils/unixccompiler.pyi: -------------------------------------------------------------------------------- 1 | # Stubs for distutils.unixccompiler 2 | 3 | from distutils.ccompiler import CCompiler 4 | 5 | 6 | class UnixCCompiler(CCompiler): ... 7 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2and3/keyword.pyi: -------------------------------------------------------------------------------- 1 | # Stubs for keyword 2 | 3 | from typing import Sequence, Text, Union 4 | 5 | def iskeyword(s: Union[Text, bytes]) -> bool: ... 6 | kwlist: Sequence[str] 7 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/3/email/mime/nonmultipart.pyi: -------------------------------------------------------------------------------- 1 | # Stubs for email.mime.nonmultipart (Python 3.4) 2 | 3 | from email.mime.base import MIMEBase 4 | 5 | class MIMENonMultipart(MIMEBase): ... 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/typed_ast/_ast27.cp38-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/typed_ast/_ast27.cp38-win32.pyd -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/typed_ast/_ast3.cp38-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/typed_ast/_ast3.cp38-win32.pyd -------------------------------------------------------------------------------- /07-Модули и пакеты/02-Modules and Packages/MainPackage/__pycache__/main_script.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/07-Модули и пакеты/02-Modules and Packages/MainPackage/__pycache__/main_script.cpython-37.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/email/encoders.pyi: -------------------------------------------------------------------------------- 1 | def encode_base64(msg) -> None: ... 2 | def encode_quopri(msg) -> None: ... 3 | def encode_7or8bit(msg) -> None: ... 4 | def encode_noop(msg) -> None: ... 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/3/html/entities.pyi: -------------------------------------------------------------------------------- 1 | from typing import Dict 2 | 3 | name2codepoint: Dict[str, int] 4 | html5: Dict[str, str] 5 | codepoint2name: Dict[int, str] 6 | entitydefs: Dict[str, str] 7 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/OSRNG/fallback.pyi: -------------------------------------------------------------------------------- 1 | from .rng_base import BaseRNG 2 | 3 | class PythonOSURandomRNG(BaseRNG): 4 | name: str 5 | def __init__(self) -> None: ... 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/requests/compat.pyi: -------------------------------------------------------------------------------- 1 | # Stubs for requests.compat (Python 3.4) 2 | 3 | from typing import Any 4 | import collections 5 | 6 | OrderedDict = collections.OrderedDict 7 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyi: -------------------------------------------------------------------------------- 1 | import ssl 2 | 3 | CertificateError = ssl.CertificateError 4 | match_hostname = ssl.match_hostname 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyi: -------------------------------------------------------------------------------- 1 | class CertificateError(ValueError): ... 2 | 3 | def match_hostname(cert, hostname): ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/hangman/__pycache__/game_status.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/hangman/__pycache__/game_status.cpython-36.pyc -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/__pycache__/game.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/__pycache__/game.cpython-37.pyc -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/api.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/git.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/git.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/ipc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/ipc.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/join.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/join.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/main.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/main.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/meet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/meet.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/mro.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/mro.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/whichdb.pyi: -------------------------------------------------------------------------------- 1 | # Source: https://hg.python.org/cpython/file/2.7/Lib/whichdb.py 2 | 3 | from typing import Optional, Text 4 | 5 | def whichdb(filename: Text) -> Optional[str]: ... 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/maxminddb/const.pyi: -------------------------------------------------------------------------------- 1 | MODE_AUTO: int = ... 2 | MODE_MMAP_EXT: int = ... 3 | MODE_MMAP: int = ... 4 | MODE_FILE: int = ... 5 | MODE_MEMORY: int = ... 6 | MODE_FD: int = ... 7 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/pynamodb/connection/__init__.pyi: -------------------------------------------------------------------------------- 1 | from pynamodb.connection.base import Connection as Connection 2 | from pynamodb.connection.table import TableConnection as TableConnection 3 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops.cpython-38.pyc -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/__pycache__/question.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/__pycache__/question.cpython-37.pyc -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/argmap.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/argmap.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/binder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/binder.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/errors.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/errors.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/fixup.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/fixup.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/infer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/infer.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/lookup.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/lookup.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/nodes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/nodes.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/parse.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/parse.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/plugin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/plugin.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/report.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/report.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/scope.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/scope.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/solve.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/solve.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/state.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/state.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/stats.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/stats.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/types.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/types.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def new(*args: Any, **kwargs: Any): ... 4 | def atfork() -> None: ... 5 | def get_random_bytes(n: int) -> bytes: ... 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/cryptography/hazmat/primitives/serialization/pkcs12.pyi: -------------------------------------------------------------------------------- 1 | from typing import Optional 2 | 3 | def load_key_and_certificates(data: bytes, password: Optional[bytes], backend): ... 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/crash.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/crash.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/emit.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/emit.cpython-38.pyc -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/pip-19.0.3-py3.6.egg/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/setuptools-40.8.0-py3.6.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/venv/Lib/site-packages/setuptools-40.8.0-py3.6.egg -------------------------------------------------------------------------------- /07-Модули и пакеты/02-Modules and Packages/MainPackage/SubPackage/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/07-Модули и пакеты/02-Modules and Packages/MainPackage/SubPackage/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /07-Модули и пакеты/02-Modules and Packages/MainPackage/SubPackage/__pycache__/subscript.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/07-Модули и пакеты/02-Modules and Packages/MainPackage/SubPackage/__pycache__/subscript.cpython-37.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy-0.770.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | dmypy = mypy.dmypy.client:console_entry 3 | mypy = mypy.__main__:console_entry 4 | stubgen = mypy.stubgen:main 5 | stubtest = mypy.stubtest:main 6 | 7 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/applytype.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/applytype.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/checker.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/checker.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/checkexpr.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/checkexpr.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/defaults.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/defaults.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/dmypy_os.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/dmypy_os.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/erasetype.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/erasetype.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/fastparse.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/fastparse.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/freetree.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/freetree.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/fscache.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/fscache.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/fswatcher.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/fswatcher.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/gclogger.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/gclogger.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/literals.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/literals.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/maptype.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/maptype.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/messages.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/messages.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/metastore.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/metastore.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/options.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/options.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/renaming.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/renaming.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/sametypes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/sametypes.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/sitepkgs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/sitepkgs.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/strconv.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/strconv.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/stubdoc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/stubdoc.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/stubgen.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/stubgen.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/stubgenc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/stubgenc.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/stubtest.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/stubtest.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/stubutil.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/stubutil.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/subtypes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/subtypes.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/traverser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/traverser.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/typeanal.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/typeanal.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/typeops.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/typeops.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/typestate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/typestate.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/typevars.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/typevars.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/visitor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/visitor.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/data.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/email/MIMEText.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.nonmultipart import MIMENonMultipart 2 | 3 | class MIMEText(MIMENonMultipart): 4 | def __init__(self, _text, _subtype=..., _charset=...) -> None: ... 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/email/mime/message.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.nonmultipart import MIMENonMultipart 2 | 3 | 4 | class MIMEMessage(MIMENonMultipart): 5 | def __init__(self, _msg, _subtype=...) -> None: ... 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/email/mime/text.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.nonmultipart import MIMENonMultipart 2 | 3 | class MIMEText(MIMENonMultipart): 4 | def __init__(self, _text, _subtype=..., _charset=...) -> None: ... 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2/six/moves/urllib/error.pyi: -------------------------------------------------------------------------------- 1 | from urllib2 import URLError as URLError 2 | from urllib2 import HTTPError as HTTPError 3 | from urllib import ContentTooShortError as ContentTooShortError 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/redis/utils.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | HIREDIS_AVAILABLE: Any 4 | 5 | def from_url(url, db=..., **kwargs): ... 6 | def pipeline(redis_obj): ... 7 | 8 | class dummy: ... 9 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/analysis.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/analysis.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/cstring.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/cstring.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/emitfunc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/emitfunc.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/errors.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/errors.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genclass.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genclass.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genexpr.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genexpr.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genfunc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genfunc.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genops.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genops.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/namegen.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/namegen.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_dict.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_dict.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_exc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_exc.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_int.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_int.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_list.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_list.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_misc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_misc.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_set.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_set.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_str.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_str.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/options.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/options.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/refcount.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/refcount.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/sametype.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/sametype.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/subtype.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/subtype.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/uninit.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/uninit.cpython-38.pyc -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/__pycache__/game_result.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/__pycache__/game_result.cpython-37.pyc -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/__pycache__/game_status.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/11-Финальная практика/03-04-HomeWorks_solutions/true_or_false/__pycache__/game_status.cpython-37.pyc -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/__pycache__/mypy_extensions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/__pycache__/mypy_extensions.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/bogus_type.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/bogus_type.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/checkmember.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/checkmember.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/constraints.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/constraints.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/dmypy_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/dmypy_util.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/errorcodes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/errorcodes.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/expandtype.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/expandtype.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/exprtotype.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/exprtotype.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/fastparse2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/fastparse2.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/indirection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/indirection.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/memprofile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/memprofile.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/moduleinfo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/moduleinfo.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/sharedparse.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/sharedparse.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/suggestions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/suggestions.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/tvar_scope.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/tvar_scope.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/deps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/deps.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/update.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/update.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/stdlib/2/email/mime/multipart.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.base import MIMEBase 2 | 3 | class MIMEMultipart(MIMEBase): 4 | def __init__(self, _subtype=..., boundary=..., _subparts=..., **_params) -> None: ... 5 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/emitclass.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/emitclass.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/emitmodule.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/emitmodule.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genops_for.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genops_for.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopsmain.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopsmain.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopsutil.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopsutil.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ir_builder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ir_builder.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_tuple.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_tuple.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/rt_subtype.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/rt_subtype.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/specialize.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/specialize.cpython-38.pyc -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/setuptools-40.8.0-py3.8.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/setuptools-40.8.0-py3.8.egg -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/yarl/_quoting.cp38-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/12-Многопоточное программирование/MultiAsyncParallel/venv/Lib/site-packages/yarl/_quoting.cp38-win32.pyd -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/__pycache__/typing_extensions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/__pycache__/typing_extensions.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/checkstrformat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/checkstrformat.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/config_parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/config_parser.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/dmypy_server.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/dmypy_server.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/find_sources.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/find_sources.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/mixedtraverser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/mixedtraverser.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/modulefinder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/modulefinder.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/moduleinspect.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/moduleinspect.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/reachability.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/reachability.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_enum.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_enum.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_infer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_infer.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_main.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_main.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_pass1.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_pass1.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_shared.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_shared.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/treetransform.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/treetransform.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/type_visitor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/type_visitor.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/typetraverser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/typetraverser.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/dmypy/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/dmypy/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/dmypy/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/dmypy/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/dmypy/__pycache__/client.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/dmypy/__pycache__/client.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__pycache__/attrs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__pycache__/attrs.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__pycache__/ctypes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__pycache__/ctypes.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__pycache__/enums.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__pycache__/enums.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/astdiff.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/astdiff.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/subexpr.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/subexpr.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/target.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/target.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/trigger.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/trigger.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/update.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/update.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/collect.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/collect.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/helpers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/helpers.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testapi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testapi.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testargs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testargs.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testcheck.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testcheck.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testdeps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testdeps.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testdiff.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testdiff.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testgraph.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testgraph.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testinfer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testinfer.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testipc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testipc.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testmerge.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testmerge.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testmypyc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testmypyc.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testparse.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testparse.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testsolve.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testsolve.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testtypes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testtypes.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/visitors.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/visitors.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/Crypto/Protocol/Chaffing.pyi: -------------------------------------------------------------------------------- 1 | __revision__: str 2 | 3 | class Chaff: 4 | def __init__(self, factor: float = ..., blocksper: int = ...) -> None: ... 5 | def chaff(self, blocks): ... 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/Crypto/Util/RFC1751.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | __revision__: str 4 | binary: Any 5 | 6 | def key_to_english(key): ... 7 | def english_to_key(s): ... 8 | 9 | wordlist: Any 10 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/docutils/parsers/rst/states.pyi: -------------------------------------------------------------------------------- 1 | import typing 2 | from typing import Any 3 | 4 | class Inliner: 5 | def __init__(self) -> None: 6 | ... 7 | 8 | def __getattr__(name) -> Any: ... 9 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/emitwrapper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/emitwrapper.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopscontext.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopscontext.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopsmapper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopsmapper.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopsprepare.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopsprepare.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopsvisitor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopsvisitor.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopsvtable.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genopsvtable.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genstatement.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/genstatement.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_primitive.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/ops_primitive.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/test/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/test/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/test/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/test/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/test/__pycache__/test_run.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/test/__pycache__/test_run.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/test/__pycache__/testutil.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/test/__pycache__/testutil.cpython-38.pyc -------------------------------------------------------------------------------- /11-Финальная практика/03-04-HomeWorks_solutions/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /12-Многопоточное программирование/MultiAsyncParallel/multithreading/__pycache__/decorators.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/12-Многопоточное программирование/MultiAsyncParallel/multithreading/__pycache__/decorators.cpython-38.pyc -------------------------------------------------------------------------------- /Чат в Telegram и Канал в YouTube.md: -------------------------------------------------------------------------------- 1 | Для общения между студентами открыт чат в телеге. [Присоединяйтесь](https://bit.ly/3t6ygMX) 2 | 3 | Канал для студентов в YouTube: [https://www.youtube.com/channel/UCTk5fSXUF_05q8U-Jx4uyLQ](https://www.youtube.com/channel/UCTk5fSXUF_05q8U-Jx4uyLQ) 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/message_registry.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/message_registry.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_newtype.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_newtype.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_typeargs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/semanal_typeargs.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/split_namespace.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/__pycache__/split_namespace.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__pycache__/default.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/plugins/__pycache__/default.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/astmerge.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/astmerge.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/aststrip.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/aststrip.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/objgraph.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/server/__pycache__/objgraph.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testcmdline.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testcmdline.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testdaemon.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testdaemon.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testpep561.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testpep561.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testreports.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testreports.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testsamples.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testsamples.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testsemanal.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testsemanal.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/teststubgen.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/teststubgen.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testtypegen.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/testtypegen.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/typefixture.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/test/__pycache__/typefixture.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/boto/kms/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import List 2 | import boto.regioninfo 3 | 4 | def regions() -> List[boto.regioninfo.RegionInfo]: ... 5 | def connect_to_region(region_name, **kw_params): ... 6 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/2and3/pynamodb/settings.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | log: Any 4 | default_settings_dict: Any 5 | OVERRIDE_SETTINGS_PATH: Any 6 | override_settings: Any 7 | 8 | def get_settings_value(key): ... 9 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypy/typeshed/third_party/3/six/moves/urllib/error.pyi: -------------------------------------------------------------------------------- 1 | from urllib.error import URLError as URLError 2 | from urllib.error import HTTPError as HTTPError 3 | from urllib.error import ContentTooShortError as ContentTooShortError 4 | -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/nonlocalcontrol.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/nonlocalcontrol.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/prebuildvisitor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/__pycache__/prebuildvisitor.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/test/__pycache__/test_emit.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/mypyc/test/__pycache__/test_emit.cpython-38.pyc -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngineerSpock/Python-from-Zero-to-Hero/HEAD/10-Что нового в Python 3.8/Python_3_8/venv/Lib/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/distlib/w32.exe --------------------------------------------------------------------------------