diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2014-05-17 14:56:40 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-05-17 14:56:40 -0400 |
| commit | f5c6fd96beb04ccd7a86817ad5be1163f8409420 (patch) | |
| tree | 063c9c92cc1ec679c323b310e8e2379fed34e469 /tests/modules | |
| parent | b52c96fe479e4b30d19dd6be62a032791ac20ba3 (diff) | |
| download | python-coveragepy-git-f5c6fd96beb04ccd7a86817ad5be1163f8409420.tar.gz | |
Avoid a bunch of deprecated functions.
Diffstat (limited to 'tests/modules')
| -rw-r--r-- | tests/modules/pkg1/p1a.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modules/pkg1/p1a.py b/tests/modules/pkg1/p1a.py index be5fcdd3..337add49 100644 --- a/tests/modules/pkg1/p1a.py +++ b/tests/modules/pkg1/p1a.py @@ -1,5 +1,5 @@ import os, sys # Invoke functions in os and sys so we can see if we measure code there. -x = sys.getcheckinterval() +x = sys.getfilesystemencoding() y = os.getcwd() |
