pitrou commented on code in PR #41904:
URL: https://github.com/apache/arrow/pull/41904#discussion_r1704177760
##########
python/pyarrow/tests/util.py:
##########
@@ -110,27 +109,16 @@ def randdecimal(precision, scale):
def random_ascii(length):
+ import numpy as np
return bytes(np.random.randint(65, 123, size=length, dtype='i1'))
Review Comment:
Perhaps this can be fixed to not require NumPy?
```suggestion
return bytes([random.randint(65, 122) for i in range(length)])
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]