File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -256,6 +256,7 @@ Ondřej Súkup
256
256
Oscar Benjamin
257
257
Parth Patel
258
258
Patrick Hayes
259
+ Paul Müller
259
260
Pauli Virtanen
260
261
Pavel Karateev
261
262
Paweł Adamczak
Original file line number Diff line number Diff line change
1
+ Fix a bizarre (and fortunately rare) bug where the `temp_path ` fixture could raise
2
+ an internal error while attempting to get the current user's username.
Original file line number Diff line number Diff line change @@ -158,9 +158,10 @@ def getbasetemp(self) -> Path:
158
158
def get_user () -> Optional [str ]:
159
159
"""Return the current user name, or None if getuser() does not work
160
160
in the current environment (see #1010)."""
161
- import getpass
162
-
163
161
try :
162
+ # In some exotic environments, getpass may not be importable.
163
+ import getpass
164
+
164
165
return getpass .getuser ()
165
166
except (ImportError , KeyError ):
166
167
return None
You can’t perform that action at this time.
0 commit comments