Coerce elements to strings as fallback #264
No reviewers
Labels
No labels
Bug
Enhancement
Feature Suggestion
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: code/twython#264
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "str_fallback"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Returned objects from the APIs come back as
ints in some cases. For example:One workaround is to map these ahead of time:
This pull request just bakes it right in. We could coerce by default (which wouldn't affect strings).
Why is that resulting in a type error? I'm not understanding?
A list of integers can't be joined directly into a string.
Ohhhh, understood! Wasn't seeing that's what was happening at first! Thanks!