Explorar el Código

PyBuffer_FromMemory should be a static function

Jonas Borgström hace 11 años
padre
commit
1e4fd4e18a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      attic/_chunker.c

+ 1 - 1
attic/_chunker.c

@@ -141,7 +141,7 @@ chunker_fill(Chunker *c)
     return 1;
 }
 
-PyObject *
+static PyObject *
 PyBuffer_FromMemory(void *data, Py_ssize_t len)
 {
     Py_buffer buffer;