File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 2222# Operating systems.
2323WINDOWS = sys .platform == "win32"
2424LINUX = sys .platform .startswith ("linux" )
25- OSX = sys .platform == "darwin"
25+ MACOS = sys .platform == "darwin"
2626
2727# Python implementations.
2828CPYTHON = (platform .python_implementation () == "CPython" )
Original file line number Diff line number Diff line change @@ -1905,7 +1905,7 @@ def test_lambda_in_dict(self) -> None:
19051905# I don't understand why it failed, I don't understand why it passed,
19061906# so just skip the whole thing.
19071907skip_eventlet_670 = pytest .mark .skipif (
1908- env .PYVERSION [:2 ] == (3 , 9 ) and env .CPYTHON and env .OSX ,
1908+ env .PYVERSION [:2 ] == (3 , 9 ) and env .CPYTHON and env .MACOS ,
19091909 reason = "Avoid an eventlet bug on Mac 3.9: eventlet#670" ,
19101910 # https://github.com/eventlet/eventlet/issues/670
19111911)
You can’t perform that action at this time.
0 commit comments