tartley / colorama

Simple cross-platform colored terminal text in Python
BSD 3-Clause "New" or "Revised" License
3.56k stars 252 forks source link

Use built-in unittest.mock when available #260

Closed mgorny closed 4 years ago

mgorny commented 4 years ago

Python has a built-in mocking support since 3.3. Use the built-in module to avoid the dependency on external mock whenever possible, and fall back to it on older versions of Python.

wiggin15 commented 4 years ago

Looks good! Thanks.