This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: ctypes Fundamental data types
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: theller Nosy List: hg6980, kbriggs, loewis, theller
Priority: normal Keywords:

Created on 2007-04-14 03:16 by hg6980, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg31782 - (view) Author: hg6980 (hg6980) Date: 2007-04-14 03:16
I think the sentence:-



The current memory block contents can be accessed (or changed) with the raw property, if you want to access it as NUL terminated string, use the string property


should be
The current memory block contents can be accessed (or changed) with the raw property, if you want to access it as NUL terminated string, use the value property
msg31783 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2007-04-14 19:06
Thomas, can you take a look?
msg31784 - (view) Author: Keith Briggs (kbriggs) Date: 2007-04-16 12:15
That may be technical correct, but such punctuation cannot be right.  It should be...

The current memory block contents can be accessed (or changed) with the raw
property; if you want to access it as NUL terminated string, use the value
property.
msg31785 - (view) Author: Thomas Heller (theller) * (Python committer) Date: 2007-06-08 19:34
Fixed now in trunk (rev 55833) and release25-maint (rev 55835).

Thanks for the patch.
History
Date User Action Args
2022-04-11 14:56:23adminsetgithub: 44844
2007-04-14 03:16:14hg6980create