Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c17f540b
Commit
c17f540b
authored
Sep 29, 2011
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Oops, fix my previous commit: unicode => to
parent
b15d4d89
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Objects/unicodeobject.c
Objects/unicodeobject.c
+2
-2
No files found.
Objects/unicodeobject.c
View file @
c17f540b
...
...
@@ -642,7 +642,7 @@ PyUnicode_CopyCharacters(PyObject *to, Py_ssize_t to_start,
"Cannot modify a string having more than 1 reference"
);
return
-
1
;
}
_PyUnicode_DIRTY
(
unicode
);
_PyUnicode_DIRTY
(
to
);
from_kind
=
PyUnicode_KIND
(
from
);
to_kind
=
PyUnicode_KIND
(
to
);
...
...
@@ -4881,7 +4881,7 @@ static _PyUnicode_Name_CAPI *ucnhash_CAPI = NULL;
PyObject
*
PyUnicode_DecodeUnicodeEscape
(
const
char
*
s
,
Py_ssize_t
size
,
const
char
*
errors
)
const
char
*
errors
)
{
const
char
*
starts
=
s
;
Py_ssize_t
startinpos
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment