]> granicus.if.org Git - python/commitdiff
Merged revisions 66748 via svnmerge from
authorChristian Heimes <christian@cheimes.de>
Thu, 2 Oct 2008 19:56:01 +0000 (19:56 +0000)
committerChristian Heimes <christian@cheimes.de>
Thu, 2 Oct 2008 19:56:01 +0000 (19:56 +0000)
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

Modules/_ctypes/libffi/src/x86/ffi.c
Modules/signalmodule.c
Modules/tkappinit.c
Objects/bytesobject.c
Objects/unicodeobject.c
Python/_warnings.c

index 767effb8380a709c95ef69321eacdda4b5678c3f..60d7f470307f460a25b8954fe12b8bc492fb70f9 100644 (file)
@@ -388,10 +388,10 @@ ffi_prep_raw_closure_loc (ffi_raw_closure* closure,
     return FFI_BAD_ABI;
   }
 
-  // we currently don't support certain kinds of arguments for raw
+  /* we currently don't support certain kinds of arguments for raw
   // closures.  This should be implemented by a separate assembly language
   // routine, since it would require argument processing, something we
-  // don't do now for performance.
+  // don't do now for performance. */
 
   for (i = cif->nargs-1; i >= 0; i--)
     {
index 8860b3951e401a4cdf6773392c81a87a2c1f03a2..7464eae1dc500dcf296a76e81cae43994a95d88e 100644 (file)
@@ -107,7 +107,7 @@ timeval_from_double(double d, struct timeval *tv)
     tv->tv_usec = fmod(d, 1.0) * 1000000.0;
 }
 
-static inline double
+Py_LOCAL_INLINE(double)
 double_from_timeval(struct timeval *tv)
 {
     return tv->tv_sec + (double)(tv->tv_usec / 1000000.0);
index 1c676325ecedee9dda40a5b10dddd45a4b676903..de04b0dfb6e48df47fcdd0fb91ff282fbc780daa 100644 (file)
@@ -71,7 +71,7 @@ Tcl_AppInit(Tcl_Interp *interp)
 #endif
 
 #ifdef WITH_XXX
-               // Initialize modules that don't require Tk
+               /* Initialize modules that don't require Tk */
 #endif
 
        _tkinter_skip_tk_init = Tcl_GetVar(interp, "_tkinter_skip_tk_init", TCL_GLOBAL_ONLY);
index e924e8d5a3ebf48093f31a1319f6fbaca58312e1..0d0efc9689e93f117b3e660c42968de2b2fedd8f 100644 (file)
@@ -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;
index 60cd9578040058c8c3d26ca28c7e9b0ea098cb07..0c5c6ef7539570fd6d39ee5ec6559f2b7f7932e7 100644 (file)
@@ -126,19 +126,19 @@ static const char unicode_default_encoding[] = "utf-8";
 /* Fast detection of the most frequent whitespace characters */
 const unsigned char _Py_ascii_whitespace[] = {
        0, 0, 0, 0, 0, 0, 0, 0,
-//     case 0x0009: /* HORIZONTAL TABULATION */
-//     case 0x000A: /* LINE FEED */
-//     case 0x000B: /* VERTICAL TABULATION */
-//     case 0x000C: /* FORM FEED */
-//     case 0x000D: /* CARRIAGE RETURN */
+/*     case 0x0009: * HORIZONTAL TABULATION */
+/*     case 0x000A: * LINE FEED */
+/*     case 0x000B: * VERTICAL TABULATION */
+/*     case 0x000C: * FORM FEED */
+/*     case 0x000D: * CARRIAGE RETURN */
        0, 1, 1, 1, 1, 1, 0, 0,
        0, 0, 0, 0, 0, 0, 0, 0,
-//     case 0x001C: /* FILE SEPARATOR */
-//     case 0x001D: /* GROUP SEPARATOR */
-//     case 0x001E: /* RECORD SEPARATOR */
-//     case 0x001F: /* UNIT SEPARATOR */
+/*     case 0x001C: * FILE SEPARATOR */
+/*     case 0x001D: * GROUP SEPARATOR */
+/*     case 0x001E: * RECORD SEPARATOR */
+/*     case 0x001F: * UNIT SEPARATOR */
        0, 0, 0, 0, 1, 1, 1, 1,
-//     case 0x0020: /* SPACE */
+/*     case 0x0020: * SPACE */
        1, 0, 0, 0, 0, 0, 0, 0,
        0, 0, 0, 0, 0, 0, 0, 0,
        0, 0, 0, 0, 0, 0, 0, 0,
@@ -157,13 +157,13 @@ const unsigned char _Py_ascii_whitespace[] = {
 /* Same for linebreaks */
 static unsigned char ascii_linebreak[] = {
        0, 0, 0, 0, 0, 0, 0, 0,
-//         0x000A, /* LINE FEED */
-//         0x000D, /* CARRIAGE RETURN */
+/*         0x000A, * LINE FEED */
+/*         0x000D, * CARRIAGE RETURN */
        0, 0, 1, 0, 0, 1, 0, 0,
        0, 0, 0, 0, 0, 0, 0, 0,
-//         0x001C, /* FILE SEPARATOR */
-//         0x001D, /* GROUP SEPARATOR */
-//         0x001E, /* RECORD SEPARATOR */
+/*         0x001C, * FILE SEPARATOR */
+/*         0x001D, * GROUP SEPARATOR */
+/*         0x001E, * RECORD SEPARATOR */
        0, 0, 0, 0, 1, 1, 1, 0,
        0, 0, 0, 0, 0, 0, 0, 0,
        0, 0, 0, 0, 0, 0, 0, 0,
index 84558d1d2763a1c68a7f18d25891ce22e5f1f3d7..43e6b802bffdaaa371b32923ee102f4494351a80 100644 (file)
@@ -382,7 +382,7 @@ warn_explicit(PyObject *category, PyObject *message,
         }
     }
 
-    if (rc == 1)  // Already warned for this module. */
+    if (rc == 1)  /* Already warned for this module. */
         goto return_none;
     if (rc == 0) {
         PyObject *show_fxn = get_warnings_attr("showwarning");
@@ -776,8 +776,8 @@ static PyMethodDef warnings_functions[] = {
         warn_doc},
     {"warn_explicit", (PyCFunction)warnings_warn_explicit,
         METH_VARARGS | METH_KEYWORDS, warn_explicit_doc},
-    // XXX(brett.cannon): add showwarning?
-    // XXX(brett.cannon): Reasonable to add formatwarning?
+    /* XXX(brett.cannon): add showwarning? */
+    /* XXX(brett.cannon): Reasonable to add formatwarning? */
     {NULL, NULL}               /* sentinel */
 };