Browse Source

PyBuffer_FromMemory should be a static function

Jonas Borgström 11 years ago
parent
commit
1e4fd4e18a
1 changed files with 1 additions and 1 deletions
  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;