summaryrefslogtreecommitdiff
path: root/tox
diff options
context:
space:
mode:
Diffstat (limited to 'tox')
-rw-r--r--tox/__init__.py2
-rw-r--r--tox/config.py4
2 files changed, 1 insertions, 5 deletions
diff --git a/tox/__init__.py b/tox/__init__.py
index f69bc2d..837768c 100644
--- a/tox/__init__.py
+++ b/tox/__init__.py
@@ -1,5 +1,5 @@
#
-__version__ = '2.2.2.dev1'
+__version__ = '2.3.0.dev1'
from .hookspecs import hookspec, hookimpl # noqa
diff --git a/tox/config.py b/tox/config.py
index 7a500f0..480704b 100644
--- a/tox/config.py
+++ b/tox/config.py
@@ -1040,9 +1040,6 @@ class _ArgvlistReader:
current_command = ""
for line in value.splitlines():
line = line.rstrip()
- i = line.find("#")
- if i != -1:
- line = line[:i].rstrip()
if not line:
continue
if line.endswith("\\"):
@@ -1094,7 +1091,6 @@ class _ArgvlistReader:
shlexer = shlex.shlex(newcommand, posix=True)
shlexer.whitespace_split = True
shlexer.escape = ''
- shlexer.commenters = ''
argv = list(shlexer)
return argv