summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Andrew Udvare2014-01-31 15:25:33 -0800
committerGravatar Nikias Bassen2014-02-11 17:27:12 +0100
commit29672075fde96c132d685fad86efafecd0cc5444 (patch)
treee0795a72cabc9d828b86fac9e0579bde7b12550c
parentf3857e207b5339a70b834d0575021f57432e272d (diff)
downloadlibplist-29672075fde96c132d685fad86efafecd0cc5444.tar.gz
libplist-29672075fde96c132d685fad86efafecd0cc5444.tar.bz2
Add URL for credit
-rw-r--r--cython/plist.pyx1
1 files changed, 1 insertions, 0 deletions
diff --git a/cython/plist.pyx b/cython/plist.pyx
index 95f9be7..e08d76a 100644
--- a/cython/plist.pyx
+++ b/cython/plist.pyx
@@ -2,6 +2,7 @@ cimport cpython
cimport libc.stdlib
from libc.stdint cimport *
+# https://groups.google.com/forum/#!topic/cython-users/xoKNFTRagvk
cdef _from_string_and_size(char *s, size_t length):
if PY_MAJOR_VERSION < 3 or s == NULL:
return s[:length]