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: sharedctypes.RawArray initialization
Type: behavior Stage:
Components: Versions: Python 3.6, Python 3.5
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: meetaig
Priority: normal Keywords:

Created on 2017-10-24 12:13 by meetaig, last changed 2022-04-11 14:58 by admin.

Messages (1)
msg304902 - (view) Author: Tim (meetaig) Date: 2017-10-24 12:13
In the initialization of a new `RawArray` the `size_or_initializer` parameter is tested for being an instance of `int`. When passing something like numpy.int64 here, the code crashes, because it does not recognize this as an integer. The workaround is to cast to int(). Wouldn't it be nicer to compare to types.IntType to allow for custom integer types?

def RawArray(typecode_or_type, size_or_initializer):
    '''
    Returns a ctypes array allocated from shared memory
    '''
    type_ = typecode_to_type.get(typecode_or_type, typecode_or_type)
-    if isinstance(size_or_initializer, int):
+    if size_or_initializer is IntType:
History
Date User Action Args
2022-04-11 14:58:53adminsetgithub: 76040
2017-10-24 12:13:37meetaigcreate