mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
fix patch file
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
diff --git a/pipenv/patched/prettytoml/tokens/py2toml.py b/pipenv/patched/prettytoml/tokens/py2toml.py
|
||||
index 82991958..2decd021 100644
|
||||
index 8299195..2decd02 100644
|
||||
--- a/pipenv/patched/prettytoml/tokens/py2toml.py
|
||||
+++ b/pipenv/patched/prettytoml/tokens/py2toml.py
|
||||
@@ -2,6 +2,7 @@
|
||||
@@ -11,8 +11,8 @@ index 82991958..2decd021 100644
|
||||
import datetime
|
||||
import six
|
||||
@@ -81,10 +82,30 @@ def create_string_token(text, bare_string_allowed=False, multiline_strings_allow
|
||||
|
||||
|
||||
|
||||
|
||||
def _escape_single_line_quoted_string(text):
|
||||
- if six.PY2:
|
||||
- return text.encode('unicode-escape').encode('string-escape').replace('"', '\\"').replace("\\'", "'")
|
||||
@@ -42,11 +42,11 @@ index 82991958..2decd021 100644
|
||||
+
|
||||
+ flush()
|
||||
+ return ''.join(res)
|
||||
|
||||
|
||||
|
||||
|
||||
def _create_multiline_string_token(text):
|
||||
diff --git a/pipenv/patched/prettytoml/tokens/toml2py.py b/pipenv/patched/prettytoml/tokens/toml2py.py
|
||||
index 2bf9c1c2..56804437 100644
|
||||
index 2bf9c1c..5680443 100644
|
||||
--- a/pipenv/patched/prettytoml/tokens/toml2py.py
|
||||
+++ b/pipenv/patched/prettytoml/tokens/toml2py.py
|
||||
@@ -1,3 +1,4 @@
|
||||
@@ -55,10 +55,10 @@ index 2bf9c1c2..56804437 100644
|
||||
import string
|
||||
import iso8601
|
||||
@@ -19,7 +20,7 @@ def deserialize(token):
|
||||
|
||||
|
||||
Raises DeserializationError when appropriate.
|
||||
"""
|
||||
-
|
||||
-
|
||||
+
|
||||
if token.type == TYPE_BOOLEAN:
|
||||
return _to_boolean(token)
|
||||
@@ -136,6 +136,6 @@ index 2bf9c1c2..56804437 100644
|
||||
+ tokens.append(escapes[text[i]])
|
||||
+ i += 1
|
||||
+ return ''.join(tokens)
|
||||
|
||||
|
||||
|
||||
|
||||
def _to_string(token):
|
||||
|
||||
Reference in New Issue
Block a user