diff options
Diffstat (limited to 'Lib/subprocess.py')
| -rw-r--r-- | Lib/subprocess.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 2aa02ae..363c827 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -541,7 +541,7 @@ class Popen(object):          _cleanup()          self._child_created = False -        if not isinstance(bufsize, (int, int)): +        if not isinstance(bufsize, int):              raise TypeError("bufsize must be an integer")          if mswindows:  | 
