index
:
delta/python-packages/astroid-git.git
1.6
2.0
2.0.experimental
2.2
2.3
2.4
2.5
2.9
add-dateutil-to-requirements
add-flake8-in-pre-commit-configuration
add-flake8-typing-import
add-github-actions
add-isort-pylint-autoflake-to-pre-commit
add-pydocstring-formatter-remaining-issues
add-typing-in-tests
bug_666
builtin-simplified
catch-attribute-inference-error-in-safe-infer
dependabot/pip/sphinx-approx-eq-7.0
deprecate-is-sys-guard
fix-4623-generator-raised-stop-iteration
fix-crash-in-dunder-inference
fix-flake8-f403-in-astroid-__init__.py
fix-pylint-legacy-warnings
fix-pylint-warning-from-master-branch
fix-self-inflicted-circular-import
fix_851
import-from-astroid-nodes-in-test-directory
main
maintenance/2.15.x
master
performance-regression
pre-commit-ci-update-config
remove-lazy-import-use-specific-imports
revert-1366-postinit-property
revert-perf-affecting-changes-2
simplification-for-python3.6-code
sum_and_multiply
support-python-3.10
upgrade-packaging-to-setuptools
upgrade-pylint-to-2.12.2
upgrade-to-pylint-2.10
use-scm-setuptools
zipper
github.com: PyCQA/astroid.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
rebuilder.py
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
cleanup: move some rebuilder stuff to builder; fix _delayed_assattr cache
Emile Anclin
2010-12-01
1
-70
/
+13
*
cleanup: just define "extra_decorators" in Function constructor
Emile Anclin
2010-12-01
1
-4
/
+1
*
move stuff around and make method _set_infos to function
Emile Anclin
2010-11-30
1
-71
/
+57
*
move some methods around and merge others
Emile Anclin
2010-11-30
1
-100
/
+85
*
cleanup: merge _nodes_ast into rebuilder
Emile Anclin
2010-11-30
1
-0
/
+685
*
cleanup: remove single used function; prepare rebuilder / _nodes_ast merge
Emile Anclin
2010-11-30
1
-30
/
+16
*
cleanup: remove useless redirections and aliased imports
Emile Anclin
2010-11-23
1
-21
/
+0
*
cleanup: remove python < 2.5 support
Emile Anclin
2010-11-10
1
-9
/
+3
*
py3k: keyword "cmp" for list sorting is removed in 3.x
Emile Anclin
2010-10-07
1
-3
/
+12
*
py2.3 compat : syntax, set; _nodes_compiler.py : fix visit_discard
Emile Anclin
2010-09-22
1
-2
/
+2
*
fix astng building bug: we've to set module.package flag at the node creation...
Sylvain Thénault
2010-09-10
1
-2
/
+2
*
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault
2010-04-28
1
-5
/
+19
*
more license updates
Sylvain Thénault
2010-04-26
1
-3
/
+3
*
nodes redirection cleanup possible since refactoring
Sylvain Thénault
2010-04-16
1
-1
/
+37
*
prepare 0.20.0 release
Emile Anclin
2010-03-22
1
-2
/
+2
*
improve Module node initialisation
Emile Anclin
2010-03-22
1
-2
/
+3
*
make pylint happier : mention node attributes
Emile Anclin
2010-03-22
1
-3
/
+1
*
fix the order of the nodes in locals.
Emile Anclin
2010-03-18
1
-4
/
+11
*
delay adding the imported names to the locals if the source module is not in ...
Emile Anclin
2010-03-18
1
-3
/
+15
*
remove two useless function calls on tree rebuilding.
Emile Anclin
2010-03-18
1
-20
/
+16
*
refactor cache handling to avoid infinite recursion error while infering assi...
Emile Anclin
2010-03-17
1
-2
/
+8
*
some cleanup using pylint
Emile Anclin
2010-03-17
1
-1
/
+2
*
move all infutils stuff to bases.py
Emile Anclin
2010-03-04
1
-1
/
+1
*
we don't need to pass ast_mode to Treebuilder
Emile Anclin
2010-02-25
1
-1
/
+1
*
We need to set lineno at the beginning of the visit
Emile Anclin
2010-02-25
1
-7
/
+0
*
checking classmethod / staticmethod must be done after the __new__ test
Emile Anclin
2010-02-22
1
-11
/
+5
*
move _check_children to utils; don't call it
Emile Anclin
2010-02-17
1
-25
/
+0
*
remove RebuidlVisitor.set_infos; set infos in different _set_infos methods
Emile Anclin
2010-02-03
1
-35
/
+3
*
factorize Break node visit
Emile Anclin
2010-02-03
1
-0
/
+7
*
remove _assignment: call set_local directly
Emile Anclin
2010-02-02
1
-15
/
+7
*
remove all unnecessary delayed methods
Emile Anclin
2010-02-02
1
-32
/
+21
*
pass new parent to visit (step 2); set some infos
Emile Anclin
2010-02-02
1
-17
/
+21
*
CONST_NAME_TRANSFORMS are only for compiler
Emile Anclin
2010-02-02
1
-12
/
+0
*
wip : trying to fix AugAssign etc. for compiler
Emile Anclin
2010-02-02
1
-1
/
+0
*
pass parent to concrete visit methods (step 1: change signature)
Emile Anclin
2010-02-02
1
-22
/
+18
*
we don't need any NodeRemoved exception anymore
Emile Anclin
2010-02-01
1
-5
/
+2
*
fix: delayed AssAttr must be after setting locals
Emile Anclin
2010-02-01
1
-3
/
+4
*
compiler: save argument names into locals dictionary
Emile Anclin
2010-01-26
1
-1
/
+1
*
delayed_assattr should be done at last; there are no more leave_ methods
Emile Anclin
2010-01-26
1
-8
/
+10
*
fix visit_class and visit_boolop; more explicit comment
Emile Anclin
2010-01-26
1
-7
/
+12
*
fix Discard-Yield combination and some more obvious bugs
Emile Anclin
2010-01-25
1
-3
/
+12
*
first sketch for handling remaining visits, delays, set_locals etc.
Emile Anclin
2010-01-25
1
-35
/
+35
*
fix some further bugs
Emile Anclin
2010-01-21
1
-1
/
+0
*
fix some more infos
Emile Anclin
2010-01-21
1
-3
/
+10
*
fix parent for some nodes; add a _check_children helper function
Emile Anclin
2010-01-21
1
-9
/
+24
*
save assignement nodes and call set_local after walking the tree
Emile Anclin
2010-01-21
1
-8
/
+16
*
factorize, fix some bugs
Emile Anclin
2010-01-21
1
-15
/
+16
*
factorize and remove dead code
Emile Anclin
2010-01-21
1
-0
/
+10
*
compiler: handle Slice(obj), Subscript, ExtSlice, Index
Emile Anclin
2010-01-21
1
-3
/
+0
*
disable assignement context for subscript nodes
Emile Anclin
2010-01-20
1
-13
/
+0
[prev]
[next]