This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
=============== | |
pep8_tonizer.py | |
=============== | |
This script can be used to make python code, that is being edited on Notepad++, \ | |
to comply with infamous PEP8 coding style [http://bit.ly/pep8] | |
By default, autopep8 only makes whitespace changes. So does this script. | |
However, this script depends on following: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Copyright 2011 Martin Hawksey | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@rem Do not use "echo off" to not affect any child calls. | |
@SETLOCAL | |
@SETLOCAL ENABLEEXTENSIONS | |
:: Figure out where msys's root folder. If you want, you could just add the folder in the line | |
:: below. | |
@set MSYSROOT= | |
@if "x%MSYSROOT%"=="x" @if exist "%~dp0msys.bat" @set MSYSROOT=%~dp0 | |
@if "x%MSYSROOT%"=="x" @if exist "%~dp0.msys-root" @set /P MSYSROOT=<%~dp0.msys-root | |
@if "x%MSYSROOT%"=="x" ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Makefile for Project | |
# | |
# | |
# Tags: | |
# ===== | |
# | |
# Certain tags are used in comments to assist in indexing common issues: | |
# - TODO to indicate planned enhancements. | |
# - FIXME to mark potential problematic code that requires special |