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
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 @@
 		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;