Jeffrey Lai

Results 3 comments of Jeffrey Lai

Would love if https://github.com/dropbox/sqlalchemy-stubs/pull/149 could make it into a release - this solves many long-standing annoyances we have at my org!

The `Dataframe.__init__` codepath explicitly supports it: https://github.com/pandas-dev/pandas/blob/v2.2.2/pandas/core/frame.py#L836 ``` # For data is list-like, or Iterable (will consume into list) elif is_list_like(data): ``` And the codepath for `is_list_like`: https://github.com/pandas-dev/pandas/blob/v2.2.2/pandas/_libs/lib.pyx#L1201 ``` Check...

Ah, I see what you mean - people should be using [from_records](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.from_records.html) instead. I think I agree.