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
*
Move all astroid modules into a its own directory, which is now the package.
Torsten Marek
2014-11-08
1
-905
/
+0
*
Various speed improvements.
Claudiu Popa
2014-10-20
1
-67
/
+11
|
\
|
*
merged with default
Eevee (Alex Munroe)
2014-07-31
1
-17
/
+42
|
|
\
|
|
/
|
/
|
|
*
Miscellaneous node rebuilder microoptimizations.
Eevee (Alex Munroe)
2014-07-01
1
-1
/
+2
|
*
Speed up rebuilder considerably by computing line numbers lazily.
Eevee (Alex Munroe)
2014-07-01
1
-65
/
+9
*
|
pylint source code
Sylvain Thénault
2014-07-25
1
-13
/
+18
*
|
Cleanup.
Claudiu Popa
2014-07-13
1
-10
/
+9
*
|
Expose function annotation to astroid. `Arguments` node exposes 'varargannota...
Claudiu Popa
2014-07-13
1
-4
/
+25
|
/
*
Handle __metaclass__ defined at the module level
Julien Cristau
2014-06-10
1
-19
/
+1
*
Function nodes can detect if they are decorated with subclasses of builtin de...
Claudiu Popa
2014-05-07
1
-4
/
+4
*
call transformation for builtin modules as well (though not yet for their chi...
Sylvain Thénault
2014-03-19
1
-19
/
+1
*
Drop yield_from API, add a new YieldFrom node instead.
Claudiu Popa
2014-03-04
1
-10
/
+10
*
Add yield_from property for Yield nodes.
Claudiu Popa
2014-03-02
1
-1
/
+3
*
null commit
Claudiu Popa
2014-01-29
1
-1
/
+1
*
Proper handle args for Python 3.4 when adding to locals. Remove trailing whit...
Claudiu Popa
2014-01-27
1
-18
/
+18
*
vararg and kwarg are instances of _arg.arg for Python 3.4, not strings.
Claudiu Popa
2014-01-27
1
-0
/
+8
*
Merge with default.
Claudiu Popa
2014-01-26
1
-7
/
+23
|
\
|
*
Simplify check, make sure that _newstyle is always checked for Python 3.
Claudiu Popa
2014-01-22
1
-6
/
+6
|
*
Make the compare only once.
Claudiu Popa
2014-01-16
1
-1
/
+2
|
*
All class nodes are marked as new style classes for Py3k, closes #12.
Claudiu Popa
2014-01-16
1
-1
/
+4
|
*
Proper metaclass discovery when encountering __metaclass__.
Claudiu Popa
2013-08-14
1
-4
/
+8
|
*
Change metaclass discovery.
Claudiu Popa
2013-08-13
1
-10
/
+4
|
*
Revert change.
Claudiu Popa
2013-07-24
1
-1
/
+1
|
*
Proper metaclass handling.
Claudiu Popa
2013-07-24
1
-4
/
+3
|
*
Add support for metaclass for Python 3.
Claudiu Popa
2013-07-24
1
-1
/
+16
*
|
Revert change.
Claudiu Popa
2013-12-16
1
-0
/
+1
*
|
Add support for ast NameConstant, added in Python 3.4.
Claudiu Popa
2013-12-16
1
-1
/
+6
|
/
*
Update some function definitions in py2stdlib's hashlib stub module
Torsten Marek
2013-07-24
1
-1
/
+1
*
Add support for py3k's keyword only arguments
Julien Cristau
2013-07-18
1
-0
/
+10
*
Handle python3.3's With nodes
Julien Cristau
2013-06-20
1
-4
/
+28
*
rebuilder: fix handling of python3.3's Try ast nodes
Julien Cristau
2013-06-19
1
-4
/
+4
*
[transforms] allow transformation functions on any nodes, not only modules
Sylvain Thénault
2013-06-18
1
-4
/
+25
*
[rebuilder] visit_module is a particular visit function (main entry point), m...
Sylvain Thénault
2013-06-18
1
-10
/
+10
*
work on thread safety
Sylvain Thénault
2013-06-18
1
-4
/
+1
*
rebuilder: set tolineno for 'except' blocks on python 3.3
Julien Cristau
2013-06-17
1
-0
/
+1
*
rename the project astroid
David Douard
2013-06-17
1
-12
/
+12
*
import cleanups
Sylvain Thénault
2013-03-29
1
-1
/
+0
*
[py3.3] don't crash on 'yield from' nodes. Closes #124360
Sylvain Thénault
2013-03-27
1
-0
/
+2
*
Set literals should be treated as inference leaves. Closes #47957
Torsten Marek
2013-03-27
1
-1
/
+1
*
fixes for python 3.3 ast nodes changes. Closes #120646
Sylvain Thénault
2013-02-22
1
-7
/
+29
*
test and fix absolute import handling. Closes #106191
Sylvain Thénault
2012-10-05
1
-1
/
+1
*
closes #77188: support lgc.decorators.classproperty
Sylvain Thénault
2011-09-27
1
-3
/
+7
*
cosmetic changes: update/fix copyright and comments, d-t-w
Sylvain Thénault
2011-09-27
1
-12
/
+0
*
closes #69217: please add column offset to the astng node
Sylvain Thénault
2011-06-16
1
-0
/
+4
*
performance : a little cash for visit methods
Emile Anclin
2010-12-14
1
-4
/
+12
*
fix #52006: "True" and "False" can be assigned
Emile Anclin
2010-12-09
1
-5
/
+8
*
refactoring for tree rebuilding
Emile Anclin
2010-12-09
1
-33
/
+3
*
py3k: fix some obvious stuff
Emile Anclin
2010-12-02
1
-1
/
+2
*
reduce circular imports I: import exceptions directly
Emile Anclin
2010-12-02
1
-1
/
+1
*
cleanup: rebuilder: test None values only in known cases
Emile Anclin
2010-12-01
1
-25
/
+40
[next]