forked from microsoft/ptvsd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Django 2.2 tests and fixes for exception breakpoints in Django 1.7. F…
…ixes microsoft#1298, microsoft#1294
- Loading branch information
Showing
14 changed files
with
144 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...sd/_vendored/pydevd/tests_python/my_django_proj_17/my_app/templates/my_app/inherited.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{% if chat_mode %} | ||
"chat_mode=True" | ||
{% else %} | ||
"chat_mode=False" | ||
{% endif %} |
2 changes: 2 additions & 0 deletions
2
...vsd/_vendored/pydevd/tests_python/my_django_proj_17/my_app/templates/my_app/inherits.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{% include 'my_app/inherited.html' with chat_mode=True %} | ||
{% include 'my_app/inherited.html' with chat_mode=False %} |
13 changes: 13 additions & 0 deletions
13
...endored/pydevd/tests_python/my_django_proj_17/my_app/templates/my_app/template_error.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{% if entries %} | ||
<ul> | ||
{% for entry in entries %} | ||
<li> | ||
{{ entry.key }} | ||
: | ||
{{ entry.invalid_attribute }} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
{% else %} | ||
<p>No entries are available.</p> | ||
{% endif %} |
6 changes: 6 additions & 0 deletions
6
...ndored/pydevd/tests_python/my_django_proj_17/my_app/templates/my_app/template_error2.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<body> | ||
{% doesnotexist %} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...sd/_vendored/pydevd/tests_python/my_django_proj_21/my_app/templates/my_app/inherited.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{% if chat_mode %} | ||
"chat_mode=True" | ||
{% else %} | ||
"chat_mode=False" | ||
{% endif %} |
2 changes: 2 additions & 0 deletions
2
...vsd/_vendored/pydevd/tests_python/my_django_proj_21/my_app/templates/my_app/inherits.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{% include 'my_app/inherited.html' with chat_mode=True %} | ||
{% include 'my_app/inherited.html' with chat_mode=False %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters