Skip to content

Commit

Permalink
Update cython, debug adapter protocol, pydevd tests with django 4.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Jan 20, 2022
1 parent be8dd60 commit 5adc45e
Show file tree
Hide file tree
Showing 8 changed files with 1,256 additions and 136 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,10 @@ def update_class_to_generate_enums(class_to_generate):
def update_class_to_generate_objects(classes_to_generate, class_to_generate):
properties = class_to_generate['properties']
for key, val in properties.items():
if 'type' not in val:
val['type'] = 'TypeNA'
continue

if val['type'] == 'object':
create_new = val.copy()
create_new.update({
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

154 changes: 131 additions & 23 deletions src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5adc45e

Please sign in to comment.