summaryrefslogtreecommitdiffstats
path: root/Objects/bytesobject.c
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-10-02 19:56:01 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-10-02 19:56:01 (GMT)
commit1a8501c64837368a6973ff3f9850b652888c281a (patch)
tree0884a11d8b60a9d6db6262ab91b5e70e00934368 /Objects/bytesobject.c
parentc472532c0cd056a23f4d50bd9a03d0fdea856a0a (diff)
downloadcpython-1a8501c64837368a6973ff3f9850b652888c281a.zip
cpython-1a8501c64837368a6973ff3f9850b652888c281a.tar.gz
cpython-1a8501c64837368a6973ff3f9850b652888c281a.tar.bz2
Merged revisions 66748 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66748 | christian.heimes | 2008-10-02 21:47:50 +0200 (Thu, 02 Oct 2008) | 1 line Fixed a couple more C99 comments and one occurence of inline. ........ + another // comment in bytesobject
Diffstat (limited to 'Objects/bytesobject.c')
-rw-r--r--Objects/bytesobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c
index e924e8d..0d0efc9 100644
--- a/Objects/bytesobject.c
+++ b/Objects/bytesobject.c
@@ -2965,7 +2965,7 @@ PyBytes_FromObject(PyObject *x)
new = PyBytes_FromStringAndSize(NULL, view.len);
if (!new)
goto fail;
- // XXX(brett.cannon): Better way to get to internal buffer?
+ /* XXX(brett.cannon): Better way to get to internal buffer? */
if (PyBuffer_ToContiguous(((PyBytesObject *)new)->ob_sval,
&view, view.len, 'C') < 0)
goto fail;