diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-11-21 18:36:08 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-12-02 03:41:37 -0500 |
commit | beed7c3e7c0703089a9ba4321bd3a2e442213fad (patch) | |
tree | b8bc1a9e0f4b2926fd29becf4985eb9cff556e3c /typing_stubs.py | |
parent | 2b113fc957a3fb6eafd10ad41a7caf11009ef4eb (diff) | |
download | haskell-beed7c3e7c0703089a9ba4321bd3a2e442213fad.tar.gz |
testsuite: Fix location of typing_stubs module
This should fix the build on Debian 8.
Diffstat (limited to 'typing_stubs.py')
-rw-r--r-- | typing_stubs.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/typing_stubs.py b/typing_stubs.py deleted file mode 100644 index b2e3948043..0000000000 --- a/typing_stubs.py +++ /dev/null @@ -1,13 +0,0 @@ -# Stub definitions for things provided by the typing package -# for use by older Python versions. - -class Dummy: - def __index__(self, *args): - return None - -List = Dummy() -Tuple = Dummy() -Set = Dummy() -TextIO = Dummy() -Iterator = Dummy() -Newtype = lambda name, ty: ty |