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 | 147c3562631c64066a2da964522a66fb369841c4 (patch) | |
| tree | d346f6567216c2c864aea1a39f637a6ee89110f9 /tests/modules/pkg1 | |
| parent | 503cdc25c6e5410e920053e3c4a819e962c4f6e8 (diff) | |
| download | python-coveragepy-147c3562631c64066a2da964522a66fb369841c4.tar.gz | |
Avoid a bunch of deprecated functions.
Diffstat (limited to 'tests/modules/pkg1')
| -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 be5fcdd..337add4 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() |
