У нас вы можете посмотреть бесплатно Approaches to Debugging: Feb 17, 2021 Boston Python presentation night или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
An online presentation night about approaches to debugging. Emily Charles, Debugging without print() This beginner-friendly talk is an introduction to pdb, the command line debugger built into Python. We'll cover the basics of interactive debugging, demonstrate some of the most common commands, and outline just a few advanced options for those who want to explore further. If you've never used a debugger before, or if you come from the world of graphical debuggers and want to explore command line options, then this is a talk for you! Richard Landau, Debugging by Printing Most programs need debugging, but some types of programs do not easily permit interactive debugging with the capabilities supplied by IDEs, Python pdb, and such. For complex or detached programs, the flow of process and data through a program can be followed using highly structured and flexible printing from the program. Such printing can be controlled from the outside without changes to the source code and, if the facility is reasonably efficient, can be a diagnostic tool even in production code. I'll present an overview of my library for non-interactive debug printing. Plus, a lightning talk about printing with repr()