File tree 4 files changed +10
-4
lines changed
4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 0.2.3] - 2025-02-19
10
+
11
+ ### Fixed
12
+
13
+ - ` __exit__ ` to re-raise the exception by returning ` False ` (reverted v0.2.2)
14
+
9
15
## [ 0.2.2] - 2025-02-19
10
16
11
17
### Fixed
12
18
13
- - ` __exit__ ` to suppress any exception by returning `True
19
+ - ` __exit__ ` to suppress any exception by returning ` True `
14
20
15
21
## [ 0.2.1] - 2025-02-11
16
22
Original file line number Diff line number Diff line change 1
- __version__ = "0.2.2 "
1
+ __version__ = "0.2.3 "
2
2
3
3
from os import name as _os_name
4
4
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ def __enter__(self):
113
113
114
114
def __exit__ (self , * _ ):
115
115
self .close ()
116
- return True
116
+ return False
117
117
118
118
def readable (self )-> bool :
119
119
"""True if pipe's stream is readable"""
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ def __enter__(self):
165
165
166
166
def __exit__ (self , * _ ):
167
167
self .close ()
168
- return True
168
+ return False
169
169
170
170
def readable (self ) -> bool :
171
171
"""True if pipe's stream is readable"""
You can’t perform that action at this time.
0 commit comments