We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i.e. <command>? translates to help <command> like what IPython does:
<command>?
help <command>
In [1]: import os In [2]: os.mkdir? Signature: os.mkdir(path, mode=511, *, dir_fd=None) Docstring: Create a directory. If dir_fd is not None, it should be a file descriptor open to a directory, and path should be relative; path will then be relative to that directory. dir_fd may not be implemented on your platform. If it is unavailable, using it will raise a NotImplementedError. The mode argument is ignored on Windows. Type: builtin_function_or_method
The text was updated successfully, but these errors were encountered:
make sense, since the iredis and ipython shares the same "project name" pattern.
I will give it a try.
Sorry, something went wrong.
No branches or pull requests
i.e.
<command>?
translates tohelp <command>
like what IPython does:The text was updated successfully, but these errors were encountered: