Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## <0.11.0.1>.dev0

- *Replace this line with new entries*
- Alwyays hide gdb console window on Windows.

## 0.11.0.0

Expand Down
1 change: 1 addition & 0 deletions pygdbmi/gdbcontroller.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ def spawn_new_gdb_subprocess(self) -> int:
self.gdb_process = subprocess.Popen(
self.command,
shell=False,
creationflags=subprocess.CREATE_NO_WINDOW,
stdout=subprocess.PIPE,
stdin=subprocess.PIPE,
stderr=subprocess.PIPE,
Expand Down