swig/Source
Vadim Zeitlin 9a511f1a33 Remove long line wrapping from Python parameter list generation code.
This doesn't play well with PEP8 checks which imposes very strict continuation
line indentation rules which need to be _visually_ aligned, i.e. the subsequent
lines must be indented by the position of the opening bracket in the function
declaration line, but the code generating the parameter lists doesn't have
this information and so it's impossible to do it while avoiding either E128 or
E123 ("continuation line {under,over}-indented for visual indent" respectively)
error from pep8.

Moreover, the wrapping code didn't work correctly anyhow as it only took into
account the length of the parameter list itself and not the total line length,
which should include the function name as well.

So just disable wrapping entirely, long lines shouldn't be a problem anyhow in
auto-generated code.
2014-08-22 17:45:23 +02:00
..
CParse Merge latest master into doxygen branch again. 2014-08-13 16:11:21 +02:00
DOH Fix bug in DohNewStringWithSize(): guarantee string is nul-terminated 2014-06-01 15:33:26 +02:00
DoxygenTranslator/src Translate Doxygen code blocks to Sphinx code blocks. 2014-08-22 17:45:23 +02:00
Include Merge branch 'master' into doxygen 2014-04-30 18:37:57 +02:00
Modules Remove long line wrapping from Python parameter list generation code. 2014-08-22 17:45:23 +02:00
Preprocessor Remove cvs/svn Id strings 2013-01-12 01:21:16 +00:00
Swig Merge latest master into doxygen branch again. 2014-08-13 16:11:21 +02:00
Makefile.am Merge latest master into doxygen branch again. 2014-08-13 16:11:21 +02:00
README update this README 2008-11-03 13:32:33 +00:00

SWIG Source directory

 Source/DOH          -  A core set of basic datatypes including
                        strings, lists, hashes, and files.  Used
                        extensively by the rest of SWIG.

 Source/Swig         -  Swig core. Type-system, utility functions.

 Source/Preprocessor -  SWIG C Preprocessor

 Source/CParse       -  SWIG C Parser (still messy)

 Source/Modules      -  Language modules.

 Source/Include      -  Include files.

Historic directories which may be in CVS, but have been removed:

 Source/Modules1.1   -  Old SWIG-1.1 modules. Empty.

 Source/LParse       -  Experimental parser.  Officially dead
                        as CParse is more capable.

 Source/SWIG1.1      -  Old SWIG1.1 core. Completely empty now.