├── .CodeQL.yml ├── .coveragerc ├── .env ├── .flake8 ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── auto-label.yml │ ├── codeql.yml │ ├── round-robin.yml │ └── stale.yml ├── .gitignore ├── .sonarcloud.properties ├── .vscode ├── extensions.json └── launch.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── SECURITY.md ├── TROUBLESHOOTING.md ├── azure-pipelines ├── linux-coverage.yaml ├── mac-coverage.yaml ├── pipelines.yaml ├── policheck │ ├── exceptions.mdb │ └── exceptions.xml ├── templates │ ├── coverage.yml │ ├── run_tests.yml │ └── use_python.yml └── win-coverage.yaml ├── cgmanifest.json ├── clean.cmd ├── coverage └── README ├── debugpy.code-workspace ├── doc └── Subprocess debugging.md ├── pyproject.toml ├── pytest.ini ├── setup.cfg ├── setup.py ├── sonar-project.properties ├── src └── debugpy │ ├── .vscode │ └── settings.json │ ├── ThirdPartyNotices.txt │ ├── __init__.py │ ├── __main__.py │ ├── _vendored │ ├── __init__.py │ ├── _pydevd_packaging.py │ ├── _util.py │ ├── force_pydevd.py │ └── pydevd │ │ ├── .github │ │ ├── FUNDING.yml │ │ ├── install_and_run_debug_py.sh │ │ └── workflows │ │ │ ├── pydevd-release-manylinux.yml │ │ │ ├── pydevd-release.yml │ │ │ └── pydevd-tests-python.yml │ │ ├── .gitignore │ │ ├── .gitrepo │ │ ├── .project │ │ ├── .pydevproject │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.python.pydev.yaml │ │ ├── LICENSE-EPL │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── _pydev_bundle │ │ ├── __init__.py │ │ ├── _pydev_calltip_util.py │ │ ├── _pydev_completer.py │ │ ├── _pydev_execfile.py │ │ ├── _pydev_filesystem_encoding.py │ │ ├── _pydev_getopt.py │ │ ├── _pydev_imports_tipper.py │ │ ├── _pydev_jy_imports_tipper.py │ │ ├── _pydev_log.py │ │ ├── _pydev_saved_modules.py │ │ ├── _pydev_sys_patch.py │ │ ├── _pydev_tipper_common.py │ │ ├── fsnotify │ │ │ └── __init__.py │ │ ├── pydev_console_utils.py │ │ ├── pydev_import_hook.py │ │ ├── pydev_imports.py │ │ ├── pydev_ipython_console.py │ │ ├── pydev_ipython_console_011.py │ │ ├── pydev_is_thread_alive.py │ │ ├── pydev_localhost.py │ │ ├── pydev_log.py │ │ ├── pydev_monkey.py │ │ ├── pydev_monkey_qt.py │ │ ├── pydev_override.py │ │ ├── pydev_umd.py │ │ └── pydev_versioncheck.py │ │ ├── _pydev_runfiles │ │ ├── __init__.py │ │ ├── pydev_runfiles.py │ │ ├── pydev_runfiles_coverage.py │ │ ├── pydev_runfiles_nose.py │ │ ├── pydev_runfiles_parallel.py │ │ ├── pydev_runfiles_parallel_client.py │ │ ├── pydev_runfiles_pytest2.py │ │ ├── pydev_runfiles_unittest.py │ │ └── pydev_runfiles_xml_rpc.py │ │ ├── _pydevd_bundle │ │ ├── __init__.py │ │ ├── _debug_adapter │ │ │ ├── __init__.py │ │ │ ├── __main__pydevd_gen_debug_adapter_protocol.py │ │ │ ├── debugProtocol.json │ │ │ ├── debugProtocolCustom.json │ │ │ ├── pydevd_base_schema.py │ │ │ ├── pydevd_schema.py │ │ │ └── pydevd_schema_log.py │ │ ├── pydevconsole_code.py │ │ ├── pydevd_additional_thread_info.py │ │ ├── pydevd_additional_thread_info_regular.py │ │ ├── pydevd_api.py │ │ ├── pydevd_breakpoints.py │ │ ├── pydevd_bytecode_utils.py │ │ ├── pydevd_bytecode_utils_py311.py │ │ ├── pydevd_code_to_source.py │ │ ├── pydevd_collect_bytecode_info.py │ │ ├── pydevd_comm.py │ │ ├── pydevd_comm_constants.py │ │ ├── pydevd_command_line_handling.py │ │ ├── pydevd_concurrency_analyser │ │ │ ├── __init__.py │ │ │ ├── pydevd_concurrency_logger.py │ │ │ └── pydevd_thread_wrappers.py │ │ ├── pydevd_console.py │ │ ├── pydevd_constants.py │ │ ├── pydevd_custom_frames.py │ │ ├── pydevd_cython.c │ │ ├── pydevd_cython.pxd │ │ ├── pydevd_cython.pyx │ │ ├── pydevd_cython_wrapper.py │ │ ├── pydevd_daemon_thread.py │ │ ├── pydevd_defaults.py │ │ ├── pydevd_dont_trace.py │ │ ├── pydevd_dont_trace_files.py │ │ ├── pydevd_exec2.py │ │ ├── pydevd_extension_api.py │ │ ├── pydevd_extension_utils.py │ │ ├── pydevd_filtering.py │ │ ├── pydevd_frame.py │ │ ├── pydevd_frame_utils.py │ │ ├── pydevd_gevent_integration.py │ │ ├── pydevd_import_class.py │ │ ├── pydevd_io.py │ │ ├── pydevd_json_debug_options.py │ │ ├── pydevd_net_command.py │ │ ├── pydevd_net_command_factory_json.py │ │ ├── pydevd_net_command_factory_xml.py │ │ ├── pydevd_plugin_utils.py │ │ ├── pydevd_process_net_command.py │ │ ├── pydevd_process_net_command_json.py │ │ ├── pydevd_referrers.py │ │ ├── pydevd_reload.py │ │ ├── pydevd_resolver.py │ │ ├── pydevd_runpy.py │ │ ├── pydevd_safe_repr.py │ │ ├── pydevd_save_locals.py │ │ ├── pydevd_signature.py │ │ ├── pydevd_source_mapping.py │ │ ├── pydevd_stackless.py │ │ ├── pydevd_suspended_frames.py │ │ ├── pydevd_thread_lifecycle.py │ │ ├── pydevd_timeout.py │ │ ├── pydevd_trace_dispatch.py │ │ ├── pydevd_trace_dispatch_regular.py │ │ ├── pydevd_traceproperty.py │ │ ├── pydevd_utils.py │ │ ├── pydevd_vars.py │ │ ├── pydevd_vm_type.py │ │ └── pydevd_xml.py │ │ ├── _pydevd_frame_eval │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── pydevd_frame_eval_cython_wrapper.py │ │ ├── pydevd_frame_eval_main.py │ │ ├── pydevd_frame_evaluator.c │ │ ├── pydevd_frame_evaluator.pxd │ │ ├── pydevd_frame_evaluator.template.pyx │ │ ├── pydevd_frame_tracing.py │ │ ├── pydevd_modify_bytecode.py │ │ ├── release_mem.h │ │ └── vendored │ │ │ ├── README.txt │ │ │ ├── __init__.py │ │ │ ├── bytecode │ │ │ ├── __init__.py │ │ │ ├── bytecode.py │ │ │ ├── cfg.py │ │ │ ├── concrete.py │ │ │ ├── flags.py │ │ │ ├── instr.py │ │ │ ├── peephole_opt.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_bytecode.py │ │ │ │ ├── test_cfg.py │ │ │ │ ├── test_code.py │ │ │ │ ├── test_concrete.py │ │ │ │ ├── test_flags.py │ │ │ │ ├── test_instr.py │ │ │ │ ├── test_misc.py │ │ │ │ ├── test_peephole_opt.py │ │ │ │ └── util_annotation.py │ │ │ └── pydevd_fix_code.py │ │ ├── _pydevd_sys_monitoring │ │ ├── _pydevd_sys_monitoring.py │ │ ├── _pydevd_sys_monitoring_cython.c │ │ ├── _pydevd_sys_monitoring_cython.pxd │ │ ├── _pydevd_sys_monitoring_cython.pyx │ │ └── pydevd_sys_monitoring.py │ │ ├── build_tools │ │ ├── build.py │ │ ├── build_binaries_osx.py │ │ ├── build_binaries_windows.py │ │ ├── check_no_git_modifications.py │ │ ├── generate_code.py │ │ ├── names_to_rename.py │ │ ├── pydevd_release_process.txt │ │ └── rename_pep8.py │ │ ├── conftest.py │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── interpreterInfo.py │ │ ├── jython_test_deps │ │ ├── ant.jar │ │ └── junit.jar │ │ ├── pycompletionserver.py │ │ ├── pydev_app_engine_debug_startup.py │ │ ├── pydev_coverage.py │ │ ├── pydev_ipython │ │ ├── README │ │ ├── __init__.py │ │ ├── inputhook.py │ │ ├── inputhookglut.py │ │ ├── inputhookgtk.py │ │ ├── inputhookgtk3.py │ │ ├── inputhookpyglet.py │ │ ├── inputhookqt4.py │ │ ├── inputhookqt5.py │ │ ├── inputhookqt6.py │ │ ├── inputhooktk.py │ │ ├── inputhookwx.py │ │ ├── matplotlibtools.py │ │ ├── qt.py │ │ ├── qt_for_kernel.py │ │ ├── qt_loaders.py │ │ └── version.py │ │ ├── pydev_pysrc.py │ │ ├── pydev_run_in_console.py │ │ ├── pydev_sitecustomize │ │ ├── __not_in_default_pythonpath.txt │ │ └── sitecustomize.py │ │ ├── pydevconsole.py │ │ ├── pydevd.py │ │ ├── pydevd_attach_to_process │ │ ├── README.txt │ │ ├── _always_live_program.py │ │ ├── _check.py │ │ ├── _test_attach_to_process.py │ │ ├── _test_attach_to_process_linux.py │ │ ├── add_code_to_python_process.py │ │ ├── attach_pydevd.py │ │ ├── attach_script.py │ │ ├── common │ │ │ ├── py_custom_pyeval_settrace.hpp │ │ │ ├── py_custom_pyeval_settrace_310.hpp │ │ │ ├── py_custom_pyeval_settrace_311.hpp │ │ │ ├── py_custom_pyeval_settrace_common.hpp │ │ │ ├── py_settrace.hpp │ │ │ ├── py_utils.hpp │ │ │ ├── py_version.hpp │ │ │ ├── python.h │ │ │ └── ref_utils.hpp │ │ ├── linux_and_mac │ │ │ ├── .gitignore │ │ │ ├── attach.cpp │ │ │ ├── compile_linux.sh │ │ │ ├── compile_mac.sh │ │ │ ├── compile_manylinux.cmd │ │ │ └── lldb_prepare.py │ │ ├── winappdbg │ │ │ ├── __init__.py │ │ │ ├── breakpoint.py │ │ │ ├── compat.py │ │ │ ├── crash.py │ │ │ ├── debug.py │ │ │ ├── disasm.py │ │ │ ├── event.py │ │ │ ├── interactive.py │ │ │ ├── module.py │ │ │ ├── process.py │ │ │ ├── registry.py │ │ │ ├── search.py │ │ │ ├── sql.py │ │ │ ├── system.py │ │ │ ├── textio.py │ │ │ ├── thread.py │ │ │ ├── util.py │ │ │ ├── win32 │ │ │ │ ├── __init__.py │ │ │ │ ├── advapi32.py │ │ │ │ ├── context_amd64.py │ │ │ │ ├── context_i386.py │ │ │ │ ├── dbghelp.py │ │ │ │ ├── defines.py │ │ │ │ ├── gdi32.py │ │ │ │ ├── kernel32.py │ │ │ │ ├── ntdll.py │ │ │ │ ├── peb_teb.py │ │ │ │ ├── psapi.py │ │ │ │ ├── shell32.py │ │ │ │ ├── shlwapi.py │ │ │ │ ├── user32.py │ │ │ │ ├── version.py │ │ │ │ └── wtsapi32.py │ │ │ └── window.py │ │ └── windows │ │ │ ├── attach.cpp │ │ │ ├── attach.h │ │ │ ├── compile_windows.bat │ │ │ ├── inject_dll.cpp │ │ │ ├── py_win_helpers.hpp │ │ │ ├── run_code_in_memory.hpp │ │ │ ├── run_code_on_dllmain.cpp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── pydevd_file_utils.py │ │ ├── pydevd_plugins │ │ ├── __init__.py │ │ ├── django_debug.py │ │ ├── extensions │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ ├── pydevd_helpers.py │ │ │ │ ├── pydevd_plugin_numpy_types.py │ │ │ │ ├── pydevd_plugin_pandas_types.py │ │ │ │ └── pydevd_plugins_django_form_str.py │ │ ├── jinja2_debug.py │ │ └── pydevd_line_validation.py │ │ ├── pydevd_tracing.py │ │ ├── pyproject.toml │ │ ├── pytest.ini │ │ ├── runfiles.py │ │ ├── setup.py │ │ ├── setup_pydevd_cython.py │ │ ├── stubs │ │ └── _django_manager_body.py │ │ ├── test_pydevd_reload │ │ ├── __init__.py │ │ └── test_pydevd_reload.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── test_check_pydevconsole.py │ │ ├── test_get_referrers.py │ │ ├── test_jyserver.py │ │ ├── test_jysimpleTipper.py │ │ ├── test_pydev_ipython_011.py │ │ ├── test_pydevconsole.py │ │ ├── test_pyserver.py │ │ └── test_simpleTipper.py │ │ ├── tests_mainloop │ │ ├── README │ │ ├── __init__.py │ │ ├── gui-glut.py │ │ ├── gui-gtk.py │ │ ├── gui-gtk3.py │ │ ├── gui-pyglet.py │ │ ├── gui-qt.py │ │ ├── gui-tk.py │ │ └── gui-wx.py │ │ ├── tests_python │ │ ├── __init__.py │ │ ├── check_debug_python.py │ │ ├── debug_constants.py │ │ ├── debugger_fixtures.py │ │ ├── debugger_unittest.py │ │ ├── flask1 │ │ │ ├── .project │ │ │ ├── .pydevproject │ │ │ ├── app.py │ │ │ └── templates │ │ │ │ ├── bad.html │ │ │ │ └── hello.html │ │ ├── my_django_proj_17 │ │ │ ├── .project │ │ │ ├── .pydevproject │ │ │ ├── manage.py │ │ │ ├── my_app │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ ├── templates │ │ │ │ │ └── my_app │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── inherited.html │ │ │ │ │ │ ├── inherits.html │ │ │ │ │ │ ├── name.html │ │ │ │ │ │ ├── no_var_error.html │ │ │ │ │ │ ├── template_error.html │ │ │ │ │ │ └── template_error2.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ └── my_django_proj_17 │ │ │ │ ├── __init__.py │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ ├── my_django_proj_21 │ │ │ ├── .project │ │ │ ├── .pydevproject │ │ │ ├── .settings │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ └── org.python.pydev.yaml │ │ │ ├── manage.py │ │ │ ├── my_app │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── forms.py │ │ │ │ ├── migrations │ │ │ │ │ └── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── templates │ │ │ │ │ └── my_app │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── inherited.html │ │ │ │ │ │ ├── inherits.html │ │ │ │ │ │ ├── name.html │ │ │ │ │ │ ├── no_var_error.html │ │ │ │ │ │ ├── template_error.html │ │ │ │ │ │ └── template_error2.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ └── my_django_proj_21 │ │ │ │ ├── __init__.py │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ ├── my_extensions │ │ │ ├── __init__.py │ │ │ └── pydevd_plugins │ │ │ │ ├── __init__.py │ │ │ │ └── extensions │ │ │ │ ├── __init__.py │ │ │ │ ├── pydevd_plugin_test_events.py │ │ │ │ └── pydevd_plugin_test_exttype.py │ │ ├── performance_check.py │ │ ├── regression_check.py │ │ ├── resource_path_translation │ │ │ ├── __init__.py │ │ │ └── other.py │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── _bytecode_big_method.py │ │ │ ├── _bytecode_constructs.py │ │ │ ├── _bytecode_many_names_example.py │ │ │ ├── _bytecode_overflow_example.py │ │ │ ├── _bytecode_super.py │ │ │ ├── _debugger_case1.py │ │ │ ├── _debugger_case13.py │ │ │ ├── _debugger_case14.py │ │ │ ├── _debugger_case15.py │ │ │ ├── _debugger_case15_execfile.py │ │ │ ├── _debugger_case16.py │ │ │ ├── _debugger_case17.py │ │ │ ├── _debugger_case17a.py │ │ │ ├── _debugger_case18.py │ │ │ ├── _debugger_case19.py │ │ │ ├── _debugger_case2.py │ │ │ ├── _debugger_case20.py │ │ │ ├── _debugger_case3.py │ │ │ ├── _debugger_case4.py │ │ │ ├── _debugger_case56.py │ │ │ ├── _debugger_case89.py │ │ │ ├── _debugger_case_adjust_breakpoint.py │ │ │ ├── _debugger_case_async.py │ │ │ ├── _debugger_case_asyncio.py │ │ │ ├── _debugger_case_attach_to_pid_multiple_threads.py │ │ │ ├── _debugger_case_attach_to_pid_simple.py │ │ │ ├── _debugger_case_breakpoint.py │ │ │ ├── _debugger_case_breakpoint2.py │ │ │ ├── _debugger_case_breakpoint_condition_exc.py │ │ │ ├── _debugger_case_breakpoint_remote.py │ │ │ ├── _debugger_case_breakpoint_remote_no_import.py │ │ │ ├── _debugger_case_change_breaks.py │ │ │ ├── _debugger_case_check_tracer.py │ │ │ ├── _debugger_case_completions.py │ │ │ ├── _debugger_case_custom_frames.py │ │ │ ├── _debugger_case_custom_message.py │ │ │ ├── _debugger_case_deadlock_thread_eval.py │ │ │ ├── _debugger_case_debug_options.py │ │ │ ├── _debugger_case_deep_stacks.py │ │ │ ├── _debugger_case_dir_exception.py │ │ │ ├── _debugger_case_dont_trace.py │ │ │ ├── _debugger_case_dont_trace_test.py │ │ │ ├── _debugger_case_evaluate.py │ │ │ ├── _debugger_case_event_ext.py │ │ │ ├── _debugger_case_exceptions.py │ │ │ ├── _debugger_case_frame_eval.py │ │ │ ├── _debugger_case_generator.py │ │ │ ├── _debugger_case_generator2.py │ │ │ ├── _debugger_case_generator3.py │ │ │ ├── _debugger_case_generator_py2.py │ │ │ ├── _debugger_case_generator_py3.py │ │ │ ├── _debugger_case_generator_step_in.py │ │ │ ├── _debugger_case_get_next_statement_targets.py │ │ │ ├── _debugger_case_get_thread_stack.py │ │ │ ├── _debugger_case_gevent.py │ │ │ ├── _debugger_case_gevent_simple.py │ │ │ ├── _debugger_case_gevent_subprocess.py │ │ │ ├── _debugger_case_globals.py │ │ │ ├── _debugger_case_gui_event_loop.py │ │ │ ├── _debugger_case_gui_event_loop_qt5.py │ │ │ ├── _debugger_case_hasattr_crash.py │ │ │ ├── _debugger_case_hit_count.py │ │ │ ├── _debugger_case_hit_count_conditional.py │ │ │ ├── _debugger_case_ignore_exceptions.py │ │ │ ├── _debugger_case_import_imported.py │ │ │ ├── _debugger_case_import_main.py │ │ │ ├── _debugger_case_lambda_multiline.py │ │ │ ├── _debugger_case_lamda.py │ │ │ ├── _debugger_case_large_exception_stack.py │ │ │ ├── _debugger_case_linecache.py │ │ │ ├── _debugger_case_linecache_existing_file.py │ │ │ ├── _debugger_case_listen_dap_messages.py │ │ │ ├── _debugger_case_local_variables.py │ │ │ ├── _debugger_case_local_variables2.py │ │ │ ├── _debugger_case_local_variables3.py │ │ │ ├── _debugger_case_local_variables_hex.py │ │ │ ├── _debugger_case_logging.py │ │ │ ├── _debugger_case_m_switch.py │ │ │ ├── _debugger_case_m_switch_2.py │ │ │ ├── _debugger_case_matplotlib.py │ │ │ ├── _debugger_case_method_single_line.py │ │ │ ├── _debugger_case_module.py │ │ │ ├── _debugger_case_module_entry_point.py │ │ │ ├── _debugger_case_multi_threads_stepping.py │ │ │ ├── _debugger_case_multiple_threads.py │ │ │ ├── _debugger_case_multiple_threads_same_code.py │ │ │ ├── _debugger_case_multiprocessing.py │ │ │ ├── _debugger_case_multiprocessing_2.py │ │ │ ├── _debugger_case_multiprocessing_pool.py │ │ │ ├── _debugger_case_multiprocessing_stopped_threads.py │ │ │ ├── _debugger_case_namedtuple.py │ │ │ ├── _debugger_case_no_subprocess_patching.py │ │ │ ├── _debugger_case_odict.py │ │ │ ├── _debugger_case_path_translation.py │ │ │ ├── _debugger_case_pause_continue.py │ │ │ ├── _debugger_case_print.py │ │ │ ├── _debugger_case_pydevd_customization.py │ │ │ ├── _debugger_case_python_c.py │ │ │ ├── _debugger_case_qthread1.py │ │ │ ├── _debugger_case_qthread2.py │ │ │ ├── _debugger_case_qthread3.py │ │ │ ├── _debugger_case_qthread4.py │ │ │ ├── _debugger_case_quoting.py │ │ │ ├── _debugger_case_raise_with_cause.py │ │ │ ├── _debugger_case_raise_with_cause_msg.py │ │ │ ├── _debugger_case_redirect.py │ │ │ ├── _debugger_case_remote.py │ │ │ ├── _debugger_case_remote_1.py │ │ │ ├── _debugger_case_remote_2.py │ │ │ ├── _debugger_case_remote_threads.py │ │ │ ├── _debugger_case_remote_unhandled_exceptions.py │ │ │ ├── _debugger_case_remote_unhandled_exceptions2.py │ │ │ ├── _debugger_case_remove_breakpoint.py │ │ │ ├── _debugger_case_replace_process.py │ │ │ ├── _debugger_case_return_value.py │ │ │ ├── _debugger_case_return_value_asyncio.py │ │ │ ├── _debugger_case_scapy.py │ │ │ ├── _debugger_case_scoped_stepping.py │ │ │ ├── _debugger_case_scoped_stepping_print.py │ │ │ ├── _debugger_case_scoped_stepping_target.py │ │ │ ├── _debugger_case_scoped_stepping_target2.py │ │ │ ├── _debugger_case_scoped_stepping_target_async.py │ │ │ ├── _debugger_case_set_next_statement.py │ │ │ ├── _debugger_case_settrace.py │ │ │ ├── _debugger_case_show_bytecode.py │ │ │ ├── _debugger_case_simple_calls.py │ │ │ ├── _debugger_case_skip_breakpoint_in_exceptions.py │ │ │ ├── _debugger_case_smart_step_into.py │ │ │ ├── _debugger_case_smart_step_into2.py │ │ │ ├── _debugger_case_smart_step_into3.py │ │ │ ├── _debugger_case_source_map_goto_target.py │ │ │ ├── _debugger_case_source_mapping.py │ │ │ ├── _debugger_case_source_mapping_and_reference.py │ │ │ ├── _debugger_case_source_mapping_jmc.py │ │ │ ├── _debugger_case_source_reference.py │ │ │ ├── _debugger_case_stepping.py │ │ │ ├── _debugger_case_stop_async_iteration.py │ │ │ ├── _debugger_case_subprocess_and_fork.py │ │ │ ├── _debugger_case_subprocess_target.zip │ │ │ ├── _debugger_case_subprocess_zip.py │ │ │ ├── _debugger_case_suspend_all.py │ │ │ ├── _debugger_case_suspend_policy.py │ │ │ ├── _debugger_case_sysexit.py │ │ │ ├── _debugger_case_sysexit_0.py │ │ │ ├── _debugger_case_sysexit_none.py │ │ │ ├── _debugger_case_sysexit_unhandled_attach.py │ │ │ ├── _debugger_case_sysexit_unhandled_break.py │ │ │ ├── _debugger_case_sysexit_unhandled_launcher.py │ │ │ ├── _debugger_case_terminate.py │ │ │ ├── _debugger_case_thread_creation_deadlock.py │ │ │ ├── _debugger_case_thread_started_exited.py │ │ │ ├── _debugger_case_trace_dispatch.py │ │ │ ├── _debugger_case_tracing.py │ │ │ ├── _debugger_case_trio.py │ │ │ ├── _debugger_case_type_ext.py │ │ │ ├── _debugger_case_unhandled_exception_get_stack.py │ │ │ ├── _debugger_case_unhandled_exceptions.py │ │ │ ├── _debugger_case_unhandled_exceptions_custom.py │ │ │ ├── _debugger_case_unhandled_exceptions_generator.py │ │ │ ├── _debugger_case_unhandled_exceptions_listcomp.py │ │ │ ├── _debugger_case_unhandled_exceptions_on_top_level.py │ │ │ ├── _debugger_case_unhandled_exceptions_on_top_level2.py │ │ │ ├── _debugger_case_unhandled_just_my_code.py │ │ │ ├── _debugger_case_user_unhandled.py │ │ │ ├── _debugger_case_user_unhandled2.py │ │ │ ├── _debugger_case_variables_with_same_name.py │ │ │ ├── _debugger_case_wait_for_attach.py │ │ │ ├── _debugger_case_wait_for_attach_debugpy_mode.py │ │ │ ├── _debugger_case_wait_for_attach_impl.py │ │ │ ├── _debugger_case_warnings.py │ │ │ ├── _debugger_case_yield_from.py │ │ │ ├── _debugger_case_zip_files.py │ │ │ ├── _performance_1.py │ │ │ ├── _performance_2.py │ │ │ ├── _performance_3.py │ │ │ ├── _pydev_coverage_cyrillic_encoding_py2.py │ │ │ ├── _pydev_coverage_cyrillic_encoding_py3.py │ │ │ ├── _pydev_coverage_syntax_error.py │ │ │ ├── _pydevd_test_find_main_thread_id.py │ │ │ ├── launch │ │ │ │ └── foo │ │ │ │ │ ├── __main__.py │ │ │ │ │ └── bar.py │ │ │ ├── launch_py2 │ │ │ │ ├── __init__.py │ │ │ │ └── foo │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ └── bar.py │ │ │ ├── my_code │ │ │ │ ├── __init__.py │ │ │ │ ├── my_code.py │ │ │ │ ├── my_code_coroutine.py │ │ │ │ ├── my_code_coroutine_user_unhandled.py │ │ │ │ ├── my_code_coroutine_user_unhandled_no_stop.py │ │ │ │ ├── my_code_double_step.py │ │ │ │ ├── my_code_exception.py │ │ │ │ ├── my_code_exception_on_other.py │ │ │ │ ├── my_code_exception_user_unhandled.py │ │ │ │ └── my_code_on_entry.py │ │ │ ├── not_my_code │ │ │ │ ├── __init__.py │ │ │ │ ├── empty_file.py │ │ │ │ ├── main_on_entry.py │ │ │ │ ├── main_on_entry2.py │ │ │ │ ├── not_my_coroutine.py │ │ │ │ ├── other.py │ │ │ │ └── other_noop.py │ │ │ └── wrong_bytecode │ │ │ │ ├── _debugger_case_wrong_bytecode.py │ │ │ │ └── helper │ │ │ │ ├── __init__.py │ │ │ │ └── helper │ │ │ │ ├── __init__.py │ │ │ │ └── helper │ │ │ │ └── __init__.py │ │ ├── test_additional_thread_info.py │ │ ├── test_bytecode_manipulation.py │ │ ├── test_code_obj_to_source_code.py │ │ ├── test_collect_bytecode_info.py │ │ ├── test_collect_bytecode_info │ │ │ ├── test_collect_try_except_info.json │ │ │ ├── test_iter_bytecode.py26.json │ │ │ ├── test_iter_bytecode.py27.json │ │ │ ├── test_iter_bytecode.py36.json │ │ │ └── test_iter_bytecode.py37.json │ │ ├── test_console.py │ │ ├── test_convert_utilities.py │ │ ├── test_debugger.py │ │ ├── test_debugger │ │ │ ├── test_case_variable_access.json │ │ │ └── test_case_variable_access_by_id.json │ │ ├── test_debugger_json.py │ │ ├── test_dump_threads.py │ │ ├── test_evaluate_expression.py │ │ ├── test_extract_token.py │ │ ├── test_fixtures.py │ │ ├── test_frame_eval_and_tracing.py │ │ ├── test_frame_evaluator.py │ │ ├── test_frame_utils.py │ │ ├── test_null.py │ │ ├── test_process_command_line.py │ │ ├── test_pydev_monkey.py │ │ ├── test_pydevcoverage.py │ │ ├── test_pydevd_api.py │ │ ├── test_pydevd_filtering.py │ │ ├── test_pydevd_io.py │ │ ├── test_resolvers.py │ │ ├── test_resolvers │ │ │ ├── test_get_child_variables_dict_multiple_levels_dap_2_.json │ │ │ ├── test_get_child_variables_dict_multiple_levels_dap_300_.json │ │ │ ├── test_get_child_variables_multiple_levels_dap_2_.json │ │ │ ├── test_get_child_variables_multiple_levels_dap_300_.json │ │ │ ├── test_get_child_variables_multiple_levels_resolver_2_.json │ │ │ └── test_get_child_variables_multiple_levels_resolver_300_.json │ │ ├── test_run.py │ │ ├── test_safe_repr.py │ │ ├── test_save_locals.py │ │ ├── test_schema.py │ │ ├── test_single_notification.py │ │ ├── test_smart_step_into_bytecode.py │ │ ├── test_suspended_frames_manager.py │ │ ├── test_sys_monitoring.py │ │ ├── test_timeout_tracker.py │ │ ├── test_tracing_gotchas.py │ │ ├── test_tracing_on_top_level.py │ │ └── test_utilities.py │ │ ├── tests_runfiles │ │ ├── not_in_default_pythonpath.txt │ │ ├── samples │ │ │ ├── .cvsignore │ │ │ ├── nested_dir │ │ │ │ ├── .cvsignore │ │ │ │ ├── __init__.py │ │ │ │ ├── nested2 │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── deep_nest_test.py │ │ │ │ │ └── non_test_file.py │ │ │ │ ├── nested3 │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── junk.txt │ │ │ │ │ └── non_test_file.py │ │ │ │ ├── non_test_file.py │ │ │ │ └── simple4_test.py │ │ │ ├── non_test_file.py │ │ │ ├── not_in_default_pythonpath.txt │ │ │ ├── simple2_test.py │ │ │ ├── simple3_test.py │ │ │ ├── simpleClass_test.py │ │ │ ├── simpleModule_test.py │ │ │ └── simple_test.py │ │ ├── samples_integrated │ │ │ └── root │ │ │ │ ├── __init__.py │ │ │ │ └── test_in_root.py │ │ ├── test_pydevd_property.py │ │ ├── test_pydevdio.py │ │ ├── test_runfiles.py │ │ └── test_runfiles_integrated.py │ │ └── third_party │ │ ├── cython_json.py │ │ ├── pep8 │ │ ├── autopep8.py │ │ └── pycodestyle.py │ │ └── tests_cython_json.py │ ├── _version.py │ ├── adapter │ ├── __init__.py │ ├── __main__.py │ ├── clients.py │ ├── components.py │ ├── launchers.py │ ├── servers.py │ └── sessions.py │ ├── common │ ├── __init__.py │ ├── json.py │ ├── log.py │ ├── messaging.py │ ├── singleton.py │ ├── sockets.py │ ├── stacks.py │ ├── timestamp.py │ └── util.py │ ├── launcher │ ├── __init__.py │ ├── __main__.py │ ├── debuggee.py │ ├── handlers.py │ ├── output.py │ └── winapi.py │ ├── public_api.py │ ├── py.typed │ └── server │ ├── __init__.py │ ├── api.py │ ├── attach_pid_injected.py │ └── cli.py ├── subrepo.py ├── tests ├── DEBUGGEE_PYTHONPATH │ ├── NOT_A_PACKAGE │ └── debuggee │ │ ├── __init__.py │ │ └── backchannel.py ├── __init__.py ├── _logs │ ├── README │ └── test-logs.code-workspace ├── code.py ├── conftest.py ├── debug │ ├── __init__.py │ ├── comms.py │ ├── config.py │ ├── output.py │ ├── runners.py │ ├── session.py │ └── targets.py ├── debugpy │ ├── __init__.py │ ├── adapter │ │ └── __init__.py │ ├── common │ │ ├── __init__.py │ │ ├── test_messaging.py │ │ └── test_socket.py │ ├── server │ │ ├── __init__.py │ │ └── test_cli.py │ ├── test_args.py │ ├── test_attach.py │ ├── test_breakpoints.py │ ├── test_cli_args.py │ ├── test_completions.py │ ├── test_disconnect.py │ ├── test_django.py │ ├── test_docstrings.py │ ├── test_env.py │ ├── test_evaluate.py │ ├── test_exception.py │ ├── test_exclude_rules.py │ ├── test_flask.py │ ├── test_gevent.py │ ├── test_input.py │ ├── test_justmycode.py │ ├── test_log.py │ ├── test_multiproc.py │ ├── test_numpy.py │ ├── test_output.py │ ├── test_path_mapping.py │ ├── test_run.py │ ├── test_source_mapping.py │ ├── test_step.py │ ├── test_stop_on_entry.py │ ├── test_system_info.py │ ├── test_threads.py │ ├── test_tracing.py │ └── test_vs_specific.py ├── logs.py ├── net.py ├── patterns │ ├── __init__.py │ ├── _impl.py │ ├── dap.py │ └── some.py ├── pytest_fixtures.py ├── pytest_hooks.py ├── requirements.txt ├── test_data │ ├── NOT_A_PACKAGE │ ├── bp │ │ ├── a&b │ │ │ └── test.py │ │ └── ನನ್ನ_ಸ್ಕ್ರಿಪ್ಟ್.py │ ├── call_me_back │ │ ├── __init__.py │ │ └── call_me_back.py │ ├── django1 │ │ ├── __init__.py │ │ ├── app.py │ │ └── templates │ │ │ ├── bad.html │ │ │ └── hello.html │ ├── flask1 │ │ ├── __init__.py │ │ ├── app.py │ │ ├── main.py │ │ └── templates │ │ │ ├── bad.html │ │ │ └── hello.html │ └── testpkgs │ │ └── pkg1 │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── sub │ │ ├── __init__.py │ │ └── __main__.py ├── tests │ ├── __init__.py │ ├── test_patterns.py │ ├── test_timeline.py │ └── test_vendoring.py ├── timeline.md ├── timeline.py └── watchdog │ ├── __init__.py │ └── worker.py ├── tox.ini └── versioneer.py /.CodeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.CodeQL.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.coveragerc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | PYTHONPATH=./src 2 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | src/debugpy/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/auto-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.github/workflows/auto-label.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/round-robin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.github/workflows/round-robin.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/DESCRIPTION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /azure-pipelines/linux-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/azure-pipelines/linux-coverage.yaml -------------------------------------------------------------------------------- /azure-pipelines/mac-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/azure-pipelines/mac-coverage.yaml -------------------------------------------------------------------------------- /azure-pipelines/pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/azure-pipelines/pipelines.yaml -------------------------------------------------------------------------------- /azure-pipelines/policheck/exceptions.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/azure-pipelines/policheck/exceptions.mdb -------------------------------------------------------------------------------- /azure-pipelines/policheck/exceptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/azure-pipelines/policheck/exceptions.xml -------------------------------------------------------------------------------- /azure-pipelines/templates/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/azure-pipelines/templates/coverage.yml -------------------------------------------------------------------------------- /azure-pipelines/templates/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/azure-pipelines/templates/run_tests.yml -------------------------------------------------------------------------------- /azure-pipelines/templates/use_python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/azure-pipelines/templates/use_python.yml -------------------------------------------------------------------------------- /azure-pipelines/win-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/azure-pipelines/win-coverage.yaml -------------------------------------------------------------------------------- /cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/cgmanifest.json -------------------------------------------------------------------------------- /clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/clean.cmd -------------------------------------------------------------------------------- /coverage/README: -------------------------------------------------------------------------------- 1 | codecov data files and HTML reports go here. 2 | -------------------------------------------------------------------------------- /debugpy.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/debugpy.code-workspace -------------------------------------------------------------------------------- /doc/Subprocess debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/doc/Subprocess debugging.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/setup.py -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/debugpy/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/.vscode/settings.json -------------------------------------------------------------------------------- /src/debugpy/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /src/debugpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/__init__.py -------------------------------------------------------------------------------- /src/debugpy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/__main__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/__init__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/_pydevd_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/_pydevd_packaging.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/_util.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/force_pydevd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/force_pydevd.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/.github/FUNDING.yml -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/.github/install_and_run_debug_py.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/.github/install_and_run_debug_py.sh -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/.github/workflows/pydevd-release-manylinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/.github/workflows/pydevd-release-manylinux.yml -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/.github/workflows/pydevd-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/.github/workflows/pydevd-release.yml -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/.github/workflows/pydevd-tests-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/.github/workflows/pydevd-tests-python.yml -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/.gitignore -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/.gitrepo -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/.project -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/.pydevproject -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/.settings/org.python.pydev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/.settings/org.python.pydev.yaml -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/LICENSE-EPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/LICENSE-EPL -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/MANIFEST.in -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/README.md -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_calltip_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_calltip_util.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_completer.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_execfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_execfile.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_filesystem_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_filesystem_encoding.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_getopt.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_imports_tipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_imports_tipper.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_jy_imports_tipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_jy_imports_tipper.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_log.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_saved_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_saved_modules.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_sys_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_sys_patch.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_tipper_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_tipper_common.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/fsnotify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/fsnotify/__init__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_console_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_console_utils.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_import_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_import_hook.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_imports.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_ipython_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_ipython_console.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_ipython_console_011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_ipython_console_011.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_is_thread_alive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_is_thread_alive.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_localhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_localhost.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_log.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_monkey.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_monkey_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_monkey_qt.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_override.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_umd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_umd.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_versioncheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_bundle/pydev_versioncheck.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_runfiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_coverage.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_nose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_nose.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_parallel.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_parallel_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_parallel_client.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_pytest2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_pytest2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_unittest.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_xml_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_xml_rpc.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/debugProtocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/debugProtocol.json -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/debugProtocolCustom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/debugProtocolCustom.json -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_base_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_base_schema.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_schema.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_schema_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_schema_log.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevconsole_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevconsole_code.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_additional_thread_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_additional_thread_info.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_additional_thread_info_regular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_additional_thread_info_regular.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_api.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_breakpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_breakpoints.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_bytecode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_bytecode_utils.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_bytecode_utils_py311.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_bytecode_utils_py311.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_code_to_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_code_to_source.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_collect_bytecode_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_collect_bytecode_info.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_comm.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_comm_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_comm_constants.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_command_line_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_command_line_handling.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_concurrency_analyser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_console.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_constants.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_custom_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_custom_frames.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython.c -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython.pxd -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython.pyx -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython_wrapper.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_daemon_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_daemon_thread.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_defaults.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_dont_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_dont_trace.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_dont_trace_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_dont_trace_files.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_exec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_exec2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_extension_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_extension_api.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_extension_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_extension_utils.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_filtering.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_frame.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_frame_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_frame_utils.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_gevent_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_gevent_integration.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_import_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_import_class.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_io.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_json_debug_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_json_debug_options.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command_factory_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command_factory_json.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command_factory_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command_factory_xml.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_plugin_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_plugin_utils.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_process_net_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_process_net_command.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_process_net_command_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_process_net_command_json.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_referrers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_referrers.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_reload.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_resolver.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_runpy.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_safe_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_safe_repr.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_save_locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_save_locals.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_signature.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_source_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_source_mapping.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_stackless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_stackless.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_suspended_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_suspended_frames.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_thread_lifecycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_thread_lifecycle.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_timeout.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_trace_dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_trace_dispatch.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_trace_dispatch_regular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_trace_dispatch_regular.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_traceproperty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_traceproperty.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_utils.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_vars.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_vm_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_vm_type.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_xml.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/.gitignore -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_eval_cython_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_eval_cython_wrapper.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_eval_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_eval_main.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_evaluator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_evaluator.c -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_evaluator.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_evaluator.pxd -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_evaluator.template.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_evaluator.template.pyx -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_tracing.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_modify_bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_modify_bytecode.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/release_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/release_mem.h -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/README.txt -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/__init__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/bytecode.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/cfg.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/concrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/concrete.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/flags.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/instr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/instr.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/peephole_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/peephole_opt.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/__init__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_bytecode.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_cfg.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_code.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_concrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_concrete.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_flags.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_instr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_instr.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_misc.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/util_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/util_annotation.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/pydevd_fix_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/pydevd_fix_code.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_sys_monitoring/_pydevd_sys_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_sys_monitoring/_pydevd_sys_monitoring.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_sys_monitoring/_pydevd_sys_monitoring_cython.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_sys_monitoring/_pydevd_sys_monitoring_cython.c -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_sys_monitoring/_pydevd_sys_monitoring_cython.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_sys_monitoring/_pydevd_sys_monitoring_cython.pxd -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_sys_monitoring/_pydevd_sys_monitoring_cython.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_sys_monitoring/_pydevd_sys_monitoring_cython.pyx -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/_pydevd_sys_monitoring/pydevd_sys_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/_pydevd_sys_monitoring/pydevd_sys_monitoring.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/build_tools/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/build_tools/build.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/build_tools/build_binaries_osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/build_tools/build_binaries_osx.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/build_tools/build_binaries_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/build_tools/build_binaries_windows.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/build_tools/check_no_git_modifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/build_tools/check_no_git_modifications.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/build_tools/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/build_tools/generate_code.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/build_tools/names_to_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/build_tools/names_to_rename.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/build_tools/pydevd_release_process.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/build_tools/pydevd_release_process.txt -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/build_tools/rename_pep8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/build_tools/rename_pep8.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/conftest.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/gradlew -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/gradlew.bat -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/interpreterInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/interpreterInfo.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/jython_test_deps/ant.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/jython_test_deps/ant.jar -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/jython_test_deps/junit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/jython_test_deps/junit.jar -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pycompletionserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pycompletionserver.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_app_engine_debug_startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_app_engine_debug_startup.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_coverage.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/README -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/inputhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/inputhook.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/inputhookglut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/inputhookglut.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/inputhookgtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/inputhookgtk.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/inputhookgtk3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/inputhookgtk3.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/inputhookpyglet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/inputhookpyglet.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/inputhookqt4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/inputhookqt4.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/inputhookqt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/inputhookqt5.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/inputhookqt6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/inputhookqt6.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/inputhooktk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/inputhooktk.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/inputhookwx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/inputhookwx.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/matplotlibtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/matplotlibtools.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/qt.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/qt_for_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/qt_for_kernel.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/qt_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/qt_loaders.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_ipython/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_ipython/version.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_pysrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_pysrc.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_run_in_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_run_in_console.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_sitecustomize/__not_in_default_pythonpath.txt: -------------------------------------------------------------------------------- 1 | (no __init__.py file) -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydev_sitecustomize/sitecustomize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydev_sitecustomize/sitecustomize.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevconsole.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/README.txt -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/_always_live_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/_always_live_program.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/_check.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/_test_attach_to_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/_test_attach_to_process.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/_test_attach_to_process_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/_test_attach_to_process_linux.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_pydevd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_pydevd.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_script.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/py_custom_pyeval_settrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/py_custom_pyeval_settrace.hpp -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/py_settrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/py_settrace.hpp -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/py_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/py_utils.hpp -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/py_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/py_version.hpp -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/python.h -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/ref_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/ref_utils.hpp -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/.gitignore -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/attach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/attach.cpp -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/compile_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/compile_linux.sh -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/compile_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/compile_mac.sh -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/compile_manylinux.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/compile_manylinux.cmd -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/lldb_prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/lldb_prepare.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/__init__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/breakpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/breakpoint.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/compat.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/crash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/crash.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/debug.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/disasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/disasm.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/event.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/interactive.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/module.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/process.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/registry.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/search.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/sql.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/system.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/textio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/textio.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/thread.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/util.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/__init__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/advapi32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/advapi32.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/context_amd64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/context_amd64.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/context_i386.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/context_i386.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/dbghelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/dbghelp.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/defines.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/gdi32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/gdi32.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/kernel32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/kernel32.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/ntdll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/ntdll.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/peb_teb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/peb_teb.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/psapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/psapi.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/shell32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/shell32.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/shlwapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/shlwapi.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/user32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/user32.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/version.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/wtsapi32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/wtsapi32.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/window.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/attach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/attach.cpp -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/attach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/attach.h -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/compile_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/compile_windows.bat -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/inject_dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/inject_dll.cpp -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/py_win_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/py_win_helpers.hpp -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/run_code_in_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/run_code_in_memory.hpp -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/run_code_on_dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/run_code_on_dllmain.cpp -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/stdafx.cpp -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/stdafx.h -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/targetver.h -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_file_utils.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_plugins/__init__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_plugins/django_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_plugins/django_debug.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/README.md -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/__init__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/__init__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_helpers.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_plugin_numpy_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_plugin_numpy_types.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_plugin_pandas_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_plugin_pandas_types.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_plugins/jinja2_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_plugins/jinja2_debug.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_plugins/pydevd_line_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_plugins/pydevd_line_validation.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pydevd_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pydevd_tracing.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pyproject.toml -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/pytest.ini -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/runfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/runfiles.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/setup.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/setup_pydevd_cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/setup_pydevd_cython.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/stubs/_django_manager_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/stubs/_django_manager_body.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/test_pydevd_reload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/test_pydevd_reload/test_pydevd_reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/test_pydevd_reload/test_pydevd_reload.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests/test_check_pydevconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests/test_check_pydevconsole.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests/test_get_referrers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests/test_get_referrers.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests/test_jyserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests/test_jyserver.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests/test_jysimpleTipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests/test_jysimpleTipper.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests/test_pydev_ipython_011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests/test_pydev_ipython_011.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests/test_pydevconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests/test_pydevconsole.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests/test_pyserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests/test_pyserver.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests/test_simpleTipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests/test_simpleTipper.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_mainloop/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_mainloop/README -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_mainloop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_mainloop/gui-glut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_mainloop/gui-glut.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_mainloop/gui-gtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_mainloop/gui-gtk.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_mainloop/gui-gtk3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_mainloop/gui-gtk3.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_mainloop/gui-pyglet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_mainloop/gui-pyglet.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_mainloop/gui-qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_mainloop/gui-qt.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_mainloop/gui-tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_mainloop/gui-tk.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_mainloop/gui-wx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_mainloop/gui-wx.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/check_debug_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/check_debug_python.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/debug_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/debug_constants.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/debugger_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/debugger_fixtures.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/debugger_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/debugger_unittest.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/flask1/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/flask1/.project -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/flask1/.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/flask1/.pydevproject -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/flask1/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/flask1/app.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/flask1/templates/bad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/flask1/templates/bad.html -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/flask1/templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/flask1/templates/hello.html -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/.project -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/.pydevproject -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/manage.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/admin.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/forms.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/models.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/tests.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/urls.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_app/views.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_django_proj_17/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_django_proj_17/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_django_proj_17/settings.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_django_proj_17/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_django_proj_17/urls.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_django_proj_17/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_17/my_django_proj_17/wsgi.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/.project -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/.pydevproject -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/manage.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/admin.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/apps.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/forms.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/models.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/tests.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/urls.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_app/views.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_django_proj_21/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_django_proj_21/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_django_proj_21/settings.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_django_proj_21/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_django_proj_21/urls.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_django_proj_21/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_django_proj_21/my_django_proj_21/wsgi.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/my_extensions/pydevd_plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/my_extensions/pydevd_plugins/__init__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/performance_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/performance_check.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/regression_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/regression_check.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resource_path_translation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resource_path_translation/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resource_path_translation/other.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_bytecode_big_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_bytecode_big_method.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_bytecode_constructs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_bytecode_constructs.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_bytecode_many_names_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_bytecode_many_names_example.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_bytecode_overflow_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_bytecode_overflow_example.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_bytecode_super.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_bytecode_super.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case1.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case13.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case14.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case15.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case15_execfile.py: -------------------------------------------------------------------------------- 1 | f=lambda x: 'val=%s' % x 2 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case16.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case17.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case17a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case17a.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case18.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case19.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case20.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case3.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case4.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case56.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case89.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case89.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_adjust_breakpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_adjust_breakpoint.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_async.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_asyncio.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_attach_to_pid_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_attach_to_pid_simple.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_breakpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_breakpoint.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_breakpoint2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_breakpoint2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_breakpoint_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_breakpoint_remote.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_change_breaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_change_breaks.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_check_tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_check_tracer.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_completions.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_custom_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_custom_frames.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_custom_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_custom_message.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_deadlock_thread_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_deadlock_thread_eval.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_debug_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_debug_options.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_deep_stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_deep_stacks.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_dir_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_dir_exception.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_dont_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_dont_trace.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_dont_trace_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_dont_trace_test.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_evaluate.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_event_ext.py: -------------------------------------------------------------------------------- 1 | # File empty. Output is in the extension itself -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_exceptions.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_frame_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_frame_eval.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_generator.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_generator2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_generator2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_generator3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_generator3.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_generator_py2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_generator_py2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_generator_py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_generator_py3.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_generator_step_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_generator_step_in.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_get_thread_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_get_thread_stack.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_gevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_gevent.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_gevent_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_gevent_simple.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_gevent_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_gevent_subprocess.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_globals.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_gui_event_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_gui_event_loop.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_gui_event_loop_qt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_gui_event_loop_qt5.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_hasattr_crash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_hasattr_crash.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_hit_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_hit_count.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_ignore_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_ignore_exceptions.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_import_imported.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_import_imported.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_import_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_import_main.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_lambda_multiline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_lambda_multiline.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_lamda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_lamda.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_linecache.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_listen_dap_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_listen_dap_messages.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_local_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_local_variables.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_local_variables2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_local_variables2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_local_variables3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_local_variables3.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_local_variables_hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_local_variables_hex.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_logging.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_m_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_m_switch.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_m_switch_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_m_switch_2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_matplotlib.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_method_single_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_method_single_line.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_module.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_module_entry_point.py: -------------------------------------------------------------------------------- 1 | def main(): 2 | print('TEST SUCEEDED!') -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_multiple_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_multiple_threads.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_multiprocessing.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_multiprocessing_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_multiprocessing_2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_multiprocessing_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_multiprocessing_pool.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_namedtuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_namedtuple.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_odict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_odict.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_path_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_path_translation.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_pause_continue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_pause_continue.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_print.py: -------------------------------------------------------------------------------- 1 | print('TEST SUCEEDED') # Break here should only hit once. -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_pydevd_customization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_pydevd_customization.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_python_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_python_c.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_qthread1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_qthread1.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_qthread2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_qthread2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_qthread3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_qthread3.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_qthread4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_qthread4.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_quoting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_quoting.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_raise_with_cause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_raise_with_cause.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_raise_with_cause_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_raise_with_cause_msg.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_redirect.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_remote.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_remote_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_remote_1.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_remote_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_remote_2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_remote_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_remote_threads.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_remove_breakpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_remove_breakpoint.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_replace_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_replace_process.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_return_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_return_value.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_return_value_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_return_value_asyncio.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_scapy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_scapy.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_scoped_stepping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_scoped_stepping.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_set_next_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_set_next_statement.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_settrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_settrace.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_show_bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_show_bytecode.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_simple_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_simple_calls.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_smart_step_into.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_smart_step_into.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_smart_step_into2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_smart_step_into2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_smart_step_into3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_smart_step_into3.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_source_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_source_mapping.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_source_mapping_jmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_source_mapping_jmc.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_source_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_source_reference.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_stepping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_stepping.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_subprocess_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_subprocess_zip.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_suspend_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_suspend_all.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_suspend_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_suspend_policy.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_sysexit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_sysexit.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_sysexit_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_sysexit_0.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_sysexit_none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_sysexit_none.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_terminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_terminate.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_trace_dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_trace_dispatch.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_tracing.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_trio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_trio.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_type_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_type_ext.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_unhandled_exceptions_on_top_level.py: -------------------------------------------------------------------------------- 1 | raise ValueError('TEST SUCEEDED') 2 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_user_unhandled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_user_unhandled.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_user_unhandled2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_user_unhandled2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_wait_for_attach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_wait_for_attach.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_warnings.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_yield_from.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_yield_from.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_zip_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_debugger_case_zip_files.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_performance_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_performance_1.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_performance_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_performance_2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_performance_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_performance_3.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_pydev_coverage_syntax_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_pydev_coverage_syntax_error.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/_pydevd_test_find_main_thread_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/_pydevd_test_find_main_thread_id.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/launch/foo/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/launch/foo/__main__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/launch/foo/bar.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/launch_py2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/launch_py2/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/launch_py2/foo/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/launch_py2/foo/__main__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/launch_py2/foo/bar.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/my_code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/my_code/my_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/my_code/my_code.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/my_code/my_code_coroutine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/my_code/my_code_coroutine.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/my_code/my_code_double_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/my_code/my_code_double_step.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/my_code/my_code_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/my_code/my_code_exception.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/my_code/my_code_on_entry.py: -------------------------------------------------------------------------------- 1 | print('my code on entry') 2 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/not_my_code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/not_my_code/empty_file.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/not_my_code/main_on_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/not_my_code/main_on_entry.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/not_my_code/main_on_entry2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/not_my_code/main_on_entry2.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/not_my_code/not_my_coroutine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/not_my_code/not_my_coroutine.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/not_my_code/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/not_my_code/other.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/not_my_code/other_noop.py: -------------------------------------------------------------------------------- 1 | def call_noop(): 2 | return None 3 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/resources/wrong_bytecode/helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/resources/wrong_bytecode/helper/__init__.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_additional_thread_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_additional_thread_info.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_bytecode_manipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_bytecode_manipulation.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_code_obj_to_source_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_code_obj_to_source_code.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_collect_bytecode_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_collect_bytecode_info.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_console.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_convert_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_convert_utilities.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_debugger.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_debugger/test_case_variable_access.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_debugger/test_case_variable_access.json -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_debugger_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_debugger_json.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_dump_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_dump_threads.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_evaluate_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_evaluate_expression.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_extract_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_extract_token.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_fixtures.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_frame_eval_and_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_frame_eval_and_tracing.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_frame_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_frame_evaluator.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_frame_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_frame_utils.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_null.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_process_command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_process_command_line.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_pydev_monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_pydev_monkey.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_pydevcoverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_pydevcoverage.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_pydevd_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_pydevd_api.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_pydevd_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_pydevd_filtering.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_pydevd_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_pydevd_io.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_resolvers.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_run.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_safe_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_safe_repr.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_save_locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_save_locals.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_schema.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_single_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_single_notification.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_smart_step_into_bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_smart_step_into_bytecode.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_suspended_frames_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_suspended_frames_manager.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_sys_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_sys_monitoring.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_timeout_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_timeout_tracker.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_tracing_gotchas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_tracing_gotchas.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_tracing_on_top_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_tracing_on_top_level.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_python/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_python/test_utilities.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/not_in_default_pythonpath.txt: -------------------------------------------------------------------------------- 1 | (no __init__.py file) -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/.cvsignore: -------------------------------------------------------------------------------- 1 | *.class 2 | *.pyc 3 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/nested_dir/.cvsignore: -------------------------------------------------------------------------------- 1 | *.class 2 | *.pyc 3 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/nested_dir/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/nested_dir/nested2/.cvsignore: -------------------------------------------------------------------------------- 1 | *.class 2 | *.pyc 3 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/nested_dir/nested2/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/nested_dir/nested2/non_test_file.py: -------------------------------------------------------------------------------- 1 | """ i am a python file with no tests """ 2 | pass 3 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/nested_dir/nested3/.cvsignore: -------------------------------------------------------------------------------- 1 | *.class 2 | *.pyc 3 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/nested_dir/nested3/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/nested_dir/nested3/junk.txt: -------------------------------------------------------------------------------- 1 | im a junk file 2 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/nested_dir/nested3/non_test_file.py: -------------------------------------------------------------------------------- 1 | """ i am a python file with no tests """ 2 | pass 3 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/nested_dir/non_test_file.py: -------------------------------------------------------------------------------- 1 | """ i am a python file with no tests """ 2 | pass 3 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/nested_dir/simple4_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_runfiles/samples/nested_dir/simple4_test.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/non_test_file.py: -------------------------------------------------------------------------------- 1 | """ i am a python file with no tests """ 2 | pass 3 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/not_in_default_pythonpath.txt: -------------------------------------------------------------------------------- 1 | (no __init__.py file) -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/simple2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_runfiles/samples/simple2_test.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/simple3_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_runfiles/samples/simple3_test.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/simpleClass_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_runfiles/samples/simpleClass_test.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/simpleModule_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_runfiles/samples/simpleModule_test.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples/simple_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_runfiles/samples/simple_test.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples_integrated/root/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/samples_integrated/root/test_in_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_runfiles/samples_integrated/root/test_in_root.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/test_pydevd_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_runfiles/test_pydevd_property.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/test_pydevdio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_runfiles/test_pydevdio.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/test_runfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_runfiles/test_runfiles.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/tests_runfiles/test_runfiles_integrated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/tests_runfiles/test_runfiles_integrated.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/third_party/cython_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/third_party/cython_json.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/third_party/pep8/autopep8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/third_party/pep8/autopep8.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/third_party/pep8/pycodestyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/third_party/pep8/pycodestyle.py -------------------------------------------------------------------------------- /src/debugpy/_vendored/pydevd/third_party/tests_cython_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_vendored/pydevd/third_party/tests_cython_json.py -------------------------------------------------------------------------------- /src/debugpy/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/_version.py -------------------------------------------------------------------------------- /src/debugpy/adapter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/adapter/__init__.py -------------------------------------------------------------------------------- /src/debugpy/adapter/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/adapter/__main__.py -------------------------------------------------------------------------------- /src/debugpy/adapter/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/adapter/clients.py -------------------------------------------------------------------------------- /src/debugpy/adapter/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/adapter/components.py -------------------------------------------------------------------------------- /src/debugpy/adapter/launchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/adapter/launchers.py -------------------------------------------------------------------------------- /src/debugpy/adapter/servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/adapter/servers.py -------------------------------------------------------------------------------- /src/debugpy/adapter/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/adapter/sessions.py -------------------------------------------------------------------------------- /src/debugpy/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/common/__init__.py -------------------------------------------------------------------------------- /src/debugpy/common/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/common/json.py -------------------------------------------------------------------------------- /src/debugpy/common/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/common/log.py -------------------------------------------------------------------------------- /src/debugpy/common/messaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/common/messaging.py -------------------------------------------------------------------------------- /src/debugpy/common/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/common/singleton.py -------------------------------------------------------------------------------- /src/debugpy/common/sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/common/sockets.py -------------------------------------------------------------------------------- /src/debugpy/common/stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/common/stacks.py -------------------------------------------------------------------------------- /src/debugpy/common/timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/common/timestamp.py -------------------------------------------------------------------------------- /src/debugpy/common/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/common/util.py -------------------------------------------------------------------------------- /src/debugpy/launcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/launcher/__init__.py -------------------------------------------------------------------------------- /src/debugpy/launcher/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/launcher/__main__.py -------------------------------------------------------------------------------- /src/debugpy/launcher/debuggee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/launcher/debuggee.py -------------------------------------------------------------------------------- /src/debugpy/launcher/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/launcher/handlers.py -------------------------------------------------------------------------------- /src/debugpy/launcher/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/launcher/output.py -------------------------------------------------------------------------------- /src/debugpy/launcher/winapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/launcher/winapi.py -------------------------------------------------------------------------------- /src/debugpy/public_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/public_api.py -------------------------------------------------------------------------------- /src/debugpy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/debugpy/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/server/__init__.py -------------------------------------------------------------------------------- /src/debugpy/server/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/server/api.py -------------------------------------------------------------------------------- /src/debugpy/server/attach_pid_injected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/server/attach_pid_injected.py -------------------------------------------------------------------------------- /src/debugpy/server/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/src/debugpy/server/cli.py -------------------------------------------------------------------------------- /subrepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/subrepo.py -------------------------------------------------------------------------------- /tests/DEBUGGEE_PYTHONPATH/NOT_A_PACKAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/DEBUGGEE_PYTHONPATH/NOT_A_PACKAGE -------------------------------------------------------------------------------- /tests/DEBUGGEE_PYTHONPATH/debuggee/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/DEBUGGEE_PYTHONPATH/debuggee/__init__.py -------------------------------------------------------------------------------- /tests/DEBUGGEE_PYTHONPATH/debuggee/backchannel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/DEBUGGEE_PYTHONPATH/debuggee/backchannel.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/_logs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/_logs/README -------------------------------------------------------------------------------- /tests/_logs/test-logs.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/_logs/test-logs.code-workspace -------------------------------------------------------------------------------- /tests/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/code.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/debug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debug/__init__.py -------------------------------------------------------------------------------- /tests/debug/comms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debug/comms.py -------------------------------------------------------------------------------- /tests/debug/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debug/config.py -------------------------------------------------------------------------------- /tests/debug/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debug/output.py -------------------------------------------------------------------------------- /tests/debug/runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debug/runners.py -------------------------------------------------------------------------------- /tests/debug/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debug/session.py -------------------------------------------------------------------------------- /tests/debug/targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debug/targets.py -------------------------------------------------------------------------------- /tests/debugpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/__init__.py -------------------------------------------------------------------------------- /tests/debugpy/adapter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/adapter/__init__.py -------------------------------------------------------------------------------- /tests/debugpy/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/common/__init__.py -------------------------------------------------------------------------------- /tests/debugpy/common/test_messaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/common/test_messaging.py -------------------------------------------------------------------------------- /tests/debugpy/common/test_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/common/test_socket.py -------------------------------------------------------------------------------- /tests/debugpy/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/server/__init__.py -------------------------------------------------------------------------------- /tests/debugpy/server/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/server/test_cli.py -------------------------------------------------------------------------------- /tests/debugpy/test_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_args.py -------------------------------------------------------------------------------- /tests/debugpy/test_attach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_attach.py -------------------------------------------------------------------------------- /tests/debugpy/test_breakpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_breakpoints.py -------------------------------------------------------------------------------- /tests/debugpy/test_cli_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_cli_args.py -------------------------------------------------------------------------------- /tests/debugpy/test_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_completions.py -------------------------------------------------------------------------------- /tests/debugpy/test_disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_disconnect.py -------------------------------------------------------------------------------- /tests/debugpy/test_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_django.py -------------------------------------------------------------------------------- /tests/debugpy/test_docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_docstrings.py -------------------------------------------------------------------------------- /tests/debugpy/test_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_env.py -------------------------------------------------------------------------------- /tests/debugpy/test_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_evaluate.py -------------------------------------------------------------------------------- /tests/debugpy/test_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_exception.py -------------------------------------------------------------------------------- /tests/debugpy/test_exclude_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_exclude_rules.py -------------------------------------------------------------------------------- /tests/debugpy/test_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_flask.py -------------------------------------------------------------------------------- /tests/debugpy/test_gevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_gevent.py -------------------------------------------------------------------------------- /tests/debugpy/test_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_input.py -------------------------------------------------------------------------------- /tests/debugpy/test_justmycode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_justmycode.py -------------------------------------------------------------------------------- /tests/debugpy/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_log.py -------------------------------------------------------------------------------- /tests/debugpy/test_multiproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_multiproc.py -------------------------------------------------------------------------------- /tests/debugpy/test_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_numpy.py -------------------------------------------------------------------------------- /tests/debugpy/test_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_output.py -------------------------------------------------------------------------------- /tests/debugpy/test_path_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_path_mapping.py -------------------------------------------------------------------------------- /tests/debugpy/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_run.py -------------------------------------------------------------------------------- /tests/debugpy/test_source_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_source_mapping.py -------------------------------------------------------------------------------- /tests/debugpy/test_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_step.py -------------------------------------------------------------------------------- /tests/debugpy/test_stop_on_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_stop_on_entry.py -------------------------------------------------------------------------------- /tests/debugpy/test_system_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_system_info.py -------------------------------------------------------------------------------- /tests/debugpy/test_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_threads.py -------------------------------------------------------------------------------- /tests/debugpy/test_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_tracing.py -------------------------------------------------------------------------------- /tests/debugpy/test_vs_specific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/debugpy/test_vs_specific.py -------------------------------------------------------------------------------- /tests/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/logs.py -------------------------------------------------------------------------------- /tests/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/net.py -------------------------------------------------------------------------------- /tests/patterns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/patterns/__init__.py -------------------------------------------------------------------------------- /tests/patterns/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/patterns/_impl.py -------------------------------------------------------------------------------- /tests/patterns/dap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/patterns/dap.py -------------------------------------------------------------------------------- /tests/patterns/some.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/patterns/some.py -------------------------------------------------------------------------------- /tests/pytest_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/pytest_fixtures.py -------------------------------------------------------------------------------- /tests/pytest_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/pytest_hooks.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_data/NOT_A_PACKAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/NOT_A_PACKAGE -------------------------------------------------------------------------------- /tests/test_data/bp/a&b/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/bp/a&b/test.py -------------------------------------------------------------------------------- /tests/test_data/bp/ನನ್ನ_ಸ್ಕ್ರಿಪ್ಟ್.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/bp/ನನ್ನ_ಸ್ಕ್ರಿಪ್ಟ್.py -------------------------------------------------------------------------------- /tests/test_data/call_me_back/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data/call_me_back/call_me_back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/call_me_back/call_me_back.py -------------------------------------------------------------------------------- /tests/test_data/django1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data/django1/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/django1/app.py -------------------------------------------------------------------------------- /tests/test_data/django1/templates/bad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/django1/templates/bad.html -------------------------------------------------------------------------------- /tests/test_data/django1/templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/django1/templates/hello.html -------------------------------------------------------------------------------- /tests/test_data/flask1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/flask1/__init__.py -------------------------------------------------------------------------------- /tests/test_data/flask1/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/flask1/app.py -------------------------------------------------------------------------------- /tests/test_data/flask1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/flask1/main.py -------------------------------------------------------------------------------- /tests/test_data/flask1/templates/bad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/flask1/templates/bad.html -------------------------------------------------------------------------------- /tests/test_data/flask1/templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/flask1/templates/hello.html -------------------------------------------------------------------------------- /tests/test_data/testpkgs/pkg1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data/testpkgs/pkg1/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/testpkgs/pkg1/__main__.py -------------------------------------------------------------------------------- /tests/test_data/testpkgs/pkg1/sub/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data/testpkgs/pkg1/sub/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/test_data/testpkgs/pkg1/sub/__main__.py -------------------------------------------------------------------------------- /tests/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/tests/__init__.py -------------------------------------------------------------------------------- /tests/tests/test_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/tests/test_patterns.py -------------------------------------------------------------------------------- /tests/tests/test_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/tests/test_timeline.py -------------------------------------------------------------------------------- /tests/tests/test_vendoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/tests/test_vendoring.py -------------------------------------------------------------------------------- /tests/timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/timeline.md -------------------------------------------------------------------------------- /tests/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/timeline.py -------------------------------------------------------------------------------- /tests/watchdog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/watchdog/__init__.py -------------------------------------------------------------------------------- /tests/watchdog/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tests/watchdog/worker.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/tox.ini -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/debugpy/HEAD/versioneer.py --------------------------------------------------------------------------------