apostofes added the comment:
plus I would want it to have some more methods,
```
l = [1, 2, 3]
```
using enhanced dir should give,
```
{'list': {'__add__', '__contains__', '__delitem__', '__eq__', '__ge__',
'
apostofes added the comment:
would adding an argument to dir be a possible solution,
like,
```
l = [1, 2, 3]
dir(l, categorize=True)
```
--
___
Python tracker
<https://bugs.python.org/issue47
Change by apostofes :
--
keywords: +patch
pull_requests: +30433
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/32408
___
Python tracker
<https://bugs.python.org/issu
New submission from apostofes :
current dir gives output like this,
```
from collection import OrderedDict
od = OrderedDict({'a': 1, 'b': 2, 'c': 3})
print(dir(od))
```
```
['__class__', '__contains__', '__delattr__', '__del
New submission from apostofes :
arrow should be after `a`
--
components: Library (Lib)
files: Screenshot (1044).png
messages: 416663
nosy: apostofes
priority: normal
severity: normal
status: open
title: arrow at wrong place
type: enhancement
versions: Python 3.7
Added file: https