File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -6741,19 +6741,23 @@ PyUnstable_Long_CompactValue(const PyLongObject* op) {
67416741}
67426742
67436743
6744- PyObject *  PyLong_FromInt32 (int32_t  value ) {
6744+ PyObject *  PyLong_FromInt32 (int32_t  value )
6745+ {
67456746    PYLONG_FROM_INT (uint32_t , int32_t , value );
67466747}
67476748
6748- PyObject *  PyLong_FromUInt32 (uint32_t  value ) {
6749+ PyObject *  PyLong_FromUInt32 (uint32_t  value )
6750+ {
67496751    PYLONG_FROM_UINT (uint32_t , value );
67506752}
67516753
6752- PyObject *  PyLong_FromInt64 (int64_t  value ) {
6754+ PyObject *  PyLong_FromInt64 (int64_t  value )
6755+ {
67536756    PYLONG_FROM_INT (uint64_t , int64_t , value );
67546757}
67556758
6756- PyObject *  PyLong_FromUInt64 (uint64_t  value ) {
6759+ PyObject *  PyLong_FromUInt64 (uint64_t  value )
6760+ {
67576761    PYLONG_FROM_UINT (uint64_t , value );
67586762}
67596763
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments