question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Clarifying comment

See original GitHub issue

You wrote in the code:

# pyarrow only supports 64-bit ints right now, so turn everything into int64's
# This is obviously inefficient across a number of dimensions...
# TODO: PR to pyarrow to support narrower ints

Could you clarify what you mean?

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:6

github_iconTop GitHub Comments

1reaction
wesmcommented, Sep 30, 2017

This works in master now:

In [1]: import pyarrow as pa

In [2]: paste
ints = [1,2,3,4]

In [3]: pa.array(ints, type='int16')
Out[3]: 
<pyarrow.lib.Int16Array object at 0x7f80e284f1d8>
[
  1,
  2,
  3,
  4
]
0reactions
c-nicholscommented, Sep 30, 2017

Awesome! Thanks for taking a look, Wes.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Clarifying with Comments | Writing clean code | Intro to JS
Clarifying with Comments ... Pamela encourages you to use comments to make your code clearer and easier to understand. Created by pamela ❤....
Read more >
clarifying comment | English examples in context - Ludwig
If someone does write about you and you don't like what they say, deal with it by sending an email or leaving a...
Read more >
Clarify a remark definition and meaning - Collins Dictionary
Clarify a remark definition: To clarify something means to make it easier to understand, usually by explaining it in... | Meaning, pronunciation ...
Read more >
Clarification - Communication Skills | SkillsYouNeed
In communication, clarification involves offering back to the speaker the essential meaning, as understood by the listener, of what they have just said....
Read more >
Clarifying Comments | Learn to Program - InformIT
These lines start with either a slash and asterisk (/*) or two consecutive slashes (//) and are known as comments. You may be...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found