summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Scanner/RC.py
Commit message (Collapse)AuthorAgeFilesLines
* PY2/3 For msvc resource scanning, ensure we don't try to scan .tlb files ↵William Deegan2017-05-261-6/+17
| | | | which are binary. This worked fine on py2 because all strings are bytes, but failed on py3 because it wasn't valid unicode. Also fixed issue where the Classic scanner was hardcoding recursive to be 1 and not propagating any such parameter passed to its constructor. Added test for changes to Classic Scanner
* removed several pre-2.7 methods and imports, including some basic refactoringsDirk Baechle2015-12-101-1/+1
|
* Handle DOS line endings in RC scanner. Fixes #2747.Gary Oberbrunner2011-05-301-1/+1
|
* Add emacs and vim editing settings to the bottom of *.py files.Steven Knight2009-02-091-0/+6
|
* Updated fix for bug 2082 adding support for D3DFX keyword and fixing python ↵William Deegan2008-09-261-2/+2
| | | | 1.5.2 issue
* Fix for bugs 402 and 2082 - implement scanner for windows resource files.William Deegan2008-09-251-0/+49
Basic unittest included