417 @type bytes, bytearray, QByteArray or QIODevice |
417 @type bytes, bytearray, QByteArray or QIODevice |
418 @return flag indicating success |
418 @return flag indicating success |
419 @rtype bool |
419 @rtype bool |
420 @exception TypeError raised to indicate a wrong parameter type |
420 @exception TypeError raised to indicate a wrong parameter type |
421 """ |
421 """ |
422 if not isinstance(dataOrDevice, (bytes, bytearray, QByteArray, |
422 if not isinstance(dataOrDevice, (bytes, bytearray, QByteArray, |
423 QIODevice)): |
423 QIODevice)): |
424 raise TypeError( |
424 raise TypeError( |
425 "setData: parameter must be bytes, bytearray, " |
425 "setData: parameter must be bytes, bytearray, " |
426 "QByteArray or QIODevice") |
426 "QByteArray or QIODevice") |
427 |
427 |