mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Add start method import (#1004)
* Add unicode tests * Fix breakpoint for unicode test * Add ptvsd import test * Improve how we do import ptvsd tests. * Enable import ptvsd tests * Disabling import based test temporaily
This commit is contained in:
parent
8b92b8462d
commit
36f2aef119
12 changed files with 158 additions and 57 deletions
9
pytests/func/testfiles/bp/ನನ್ನ_ಸ್ಕ್ರಿಪ್ಟ್.py
Normal file
9
pytests/func/testfiles/bp/ನನ್ನ_ಸ್ಕ್ರಿಪ್ಟ್.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
from dbgimporter import import_and_enable_debugger
|
||||
import_and_enable_debugger()
|
||||
def ಏನಾದರೂ_ಮಾಡು():
|
||||
print('ಏನೋ ಮಾಡಿದೆ'.encode(sys.stdout.encoding, errors='replace'))
|
||||
|
||||
|
||||
ಏನಾದರೂ_ಮಾಡು()
|
||||
Loading…
Add table
Add a link
Reference in a new issue