Skip to content
Merged
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
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Internal
* Make CI names and properties more consistent.
* Enable typechecking for several files.
* CI: turn off fail-fast matrix strategy.
* Remove unused Python 2 compatibility code.


1.36.0 (2025/07/19)
Expand Down
6 changes: 1 addition & 5 deletions test/features/steps/wrappers.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
# type: ignore

from io import StringIO
import re
import sys
import textwrap

import pexpect

try:
from StringIO import StringIO
except ImportError:
from io import StringIO


def expect_exact(context, expected, timeout):
timedout = False
Expand Down