mirror of
				https://github.com/msgpack/msgpack-python.git
				synced 2025-11-04 03:20:56 +00:00 
			
		
		
		
	Stop using const_void_ptr typedef.
New Cython supports const natively.
This commit is contained in:
		
							parent
							
								
									bbe86e7a92
								
							
						
					
					
						commit
						956f55ecdf
					
				
					 1 changed files with 2 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -3,9 +3,8 @@
 | 
			
		|||
 | 
			
		||||
from cpython cimport *
 | 
			
		||||
cdef extern from "Python.h":
 | 
			
		||||
    ctypedef char* const_void_ptr "const void*"
 | 
			
		||||
    ctypedef struct PyObject
 | 
			
		||||
    cdef int PyObject_AsReadBuffer(object o, const_void_ptr* buff, Py_ssize_t* buf_len) except -1
 | 
			
		||||
    cdef int PyObject_AsReadBuffer(object o, const void* buff, Py_ssize_t* buf_len) except -1
 | 
			
		||||
 | 
			
		||||
from libc.stdlib cimport *
 | 
			
		||||
from libc.string cimport *
 | 
			
		||||
| 
						 | 
				
			
			@ -96,7 +95,7 @@ def unpackb(object packed, object object_hook=None, object list_hook=None,
 | 
			
		|||
    cdef char* cenc = NULL
 | 
			
		||||
    cdef char* cerr = NULL
 | 
			
		||||
 | 
			
		||||
    PyObject_AsReadBuffer(packed, <const_void_ptr*>&buf, &buf_len)
 | 
			
		||||
    PyObject_AsReadBuffer(packed, <const void*>&buf, &buf_len)
 | 
			
		||||
 | 
			
		||||
    if encoding is not None:
 | 
			
		||||
        if isinstance(encoding, unicode):
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue