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:
Karthik Nadig 2018-11-12 18:35:35 -08:00 committed by GitHub
parent 8b92b8462d
commit 36f2aef119
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 158 additions and 57 deletions

View 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'))
ಏನದರ_ಮ()