Commit c850f20 1 parent a1b2c1a commit c850f20 Copy full SHA for c850f20
File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 22
22
# Operating systems.
23
23
WINDOWS = sys .platform == "win32"
24
24
LINUX = sys .platform .startswith ("linux" )
25
- OSX = sys .platform == "darwin"
25
+ MACOS = sys .platform == "darwin"
26
26
27
27
# Python implementations.
28
28
CPYTHON = (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:
1905
1905
# I don't understand why it failed, I don't understand why it passed,
1906
1906
# so just skip the whole thing.
1907
1907
skip_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 ,
1909
1909
reason = "Avoid an eventlet bug on Mac 3.9: eventlet#670" ,
1910
1910
# https://github.com/eventlet/eventlet/issues/670
1911
1911
)
You can’t perform that action at this time.
0 commit comments