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
| #! /bin/bash | |
| # Project - Simple project management for Linux developers. | |
| # Use: | |
| # IMPLEMENTED | |
| # project start: start a new project in the project management system. | |
| # project pickup: show the log file up to this point | |
| # project list: show current projects and last log entries. | |
| # project checkpoint: create a new log entry and commit to git. | |
| # project import: add an existing project to the database. |
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
| # TODO parser part 2 | |
| def get_todos(files): | |
| """Create a list of TODO information based on the given files. | |
| @param files: List of paths to Python source files. | |
| @return: List of (person, date, file, line, text) tuples corresponding to | |
| TODO comments in the given sources. | |
| """ | |
| comments = [] |
NewerOlder