Skip to content

Commit

Permalink
Renaming after review (PY-23587)
Browse files Browse the repository at this point in the history
(cherry picked from commit 0497d56)
  • Loading branch information
Elizaveta239 committed Apr 18, 2017
1 parent ddaa458 commit b06a3de
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pydevd.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
bufferStdOutToServer = False
bufferStdErrToServer = False
remote = False
inside_fork = False
forked = False

file_system_encoding = getfilesystemencoding()

Expand Down Expand Up @@ -1233,8 +1233,8 @@ def _locked_settrace(
while not debugger.ready_to_run:
time.sleep(0.1) # busy wait until we receive run command

global inside_fork
if frame_eval_func is not None and not inside_fork:
global forked
if frame_eval_func is not None and not forked:
# Disable frame evaluation for Remote Debug Server
debugger.frame_eval_func = None

Expand Down Expand Up @@ -1377,8 +1377,8 @@ def settrace_forked():
if port is not None:
global connected
connected = False
global inside_fork
inside_fork = True
global forked
forked = True

custom_frames_container_init()

Expand Down

0 comments on commit b06a3de

Please sign in to comment.