Searched refs:otherBytes (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsdata.py9 otherBytes = array.array('c') variable
10 otherBytes.fromstring('12345678901234567890' * 5)
93 mutableBytes[i] = otherBytes[i]
94 mutableBytes[1:8] = otherBytes[1:8]
97 mutableBytes[2:10] = otherBytes[1:5]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_nsdata.py32 otherBytes = array.array('B') variable
33 array_frombytes(otherBytes, b'12345678901234567890' * 5)
147 mutableBytes[i] = array_tobytes(otherBytes[i:i+1])[0]
149 mutableBytes[i] = array_tobytes(otherBytes[i:i+1])
150 mutableBytes[1:8] = array_tobytes(otherBytes[1:8])
153 mutableBytes[2:10] = array_tobytes(otherBytes[1:5])
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsdata.py10 otherBytes = array.array('b') variable
11 otherBytes.fromstring('12345678901234567890' * 5)
123 mutableBytes[i] = otherBytes[i:i+1].tostring()
124 mutableBytes[1:8] = otherBytes[1:8].tostring()
127 mutableBytes[2:10] = otherBytes[1:5].tostring()

Completed in 201 milliseconds