You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, we're overloading __dir__ and __attr__ in order to return python objects that allow tab completion. Unfortunately, this causes issues when the s3 object name created starts with a number. (Python only allows object names to begin with a letter or an underscore, and we need to create objects to browse).
At the moment, we will avoid the problem by pre-pending NUM_. The full actual s3 object name is always accessible under _fullpath in a browser object.
At the moment, we're overloading
__dir__
and__attr__
in order to return python objects that allow tab completion. Unfortunately, this causes issues when the s3 object name created starts with a number. (Python only allows object names to begin with a letter or an underscore, and we need to create objects to browse).At the moment, we will avoid the problem by pre-pending
NUM_
. The full actual s3 object name is always accessible under_fullpath
in a browser object.In the future, we should use this: https://github.com/h5py/h5py/blob/master/h5py/ipy_completer.py
The text was updated successfully, but these errors were encountered: