diff python/pydc/README.txt @ 61:c5a69c454963 default tip

- allow use of 'None' with 'Z' - bumped version to 1.4 (be in sync current dyncall version)
author Tassilo Philipp
date Mon, 03 Apr 2023 19:06:07 +0200
parents 8e905c0798c7
children
line wrap: on
line diff
--- a/python/pydc/README.txt	Wed Aug 03 15:38:07 2022 +0200
+++ b/python/pydc/README.txt	Mon Apr 03 19:06:07 2023 +0200
@@ -1,6 +1,6 @@
 dyncall python bindings
 Copyright 2007-2016 Daniel Adler
-          2018-2022 Tassilo Philipp
+          2018-2023 Tassilo Philipp
 
 Dec  4, 2007: initial
 Mar 22, 2016: update to dyncall 0.9, includes breaking sig char changes
@@ -21,9 +21,9 @@
 Aug  3, 2022: added p2Z() helper function (e.g. helpful when working with
 			  string 'p'ointers that eventually need to be free()'d, as no
 			  implicit 'Z' conversion is taking place)
-              
-              
-              
+Apr  3, 2023: allowing 'None' for 'Z' params
+
+
 
 
 BUILD/INSTALLATION
@@ -103,6 +103,7 @@
       | unicode (PyUnicode)           ! | -                               | const char* (UTF-8 for unicode) | str (PyString)                       | str (PyUnicode)
       | -                               | bytes (PyBytes)               ! | const char* (UTF-8 for unicode) | str (PyString)                       | str (PyUnicode)
       | bytearray (PyByteArray)       ! | bytearray (PyByteArray)       ! | const char* (UTF-8 for unicode) | str (PyString)                       | str (PyUnicode)
+      | None (Py_None)                  | None (Py_None)                  | const char* (always NULL)       | None (Py_None)                       | None (Py_None)
 
   Annotations:
   # converted to 1 if True and 0 otherwise