summaryrefslogtreecommitdiff
path: root/astroid/builder.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix bug/crash when confronted with an invalid \x escape (ex: '\x1').Daniel Balparda2015-03-161-1/+1
|
* Don't use the deprecated 'U' mode for opening files on Python 3, but ↵Torsten Marek2014-11-201-1/+1
| | | | newline=None.
* Fail gracefully when the string contains null bytes.Claudiu Popa2014-11-181-1/+4
|
* Close the file opened by open_source_file, to prevent ResourceWarnings.Claudiu Popa2014-11-171-10/+11
|
* Assign module path in TreeRebuilder.visit_module, as otherwise transformersAlexander Presnyakov2014-11-131-2/+1
| | | | which are run by it won't get module path (it's needed to determine if transformer has to activate)
* Move all astroid modules into a its own directory, which is now the package.Torsten Marek2014-11-081-0/+237
python setup.py develop now works.