diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-09 16:03:23 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-09 16:03:23 +0300 |
commit | 6426ccd1891ad4b69b60ef185d8fdfee1e63ba0a (patch) | |
tree | e9cab63af0c51148e88dcb92638976b6e00eaefb /Lib/distutils/command/sdist.py | |
parent | 7b8126c1c27b49a88e7ed1a40df39e51a4e87b40 (diff) | |
parent | 756c4a7107e1a3ef7afc95fe3a55b04105cbb172 (diff) | |
download | cpython-6426ccd1891ad4b69b60ef185d8fdfee1e63ba0a.tar.gz |
Issue #26305: Argument Clinic now escapes braces. No need to double them.
Diffstat (limited to 'Lib/distutils/command/sdist.py')
-rw-r--r-- | Lib/distutils/command/sdist.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index 7ea3d5fa27..35a06eb09b 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -3,7 +3,6 @@ Implements the Distutils 'sdist' command (create a source distribution).""" import os -import string import sys from types import * from glob import glob |