new not_files support.

This commit is contained in:
Kenneth Reitz
2011-03-20 15:38:56 -04:00
parent 82f40e06f9
commit ae955083e2
3 changed files with 5 additions and 2 deletions
-1
View File
@@ -127,7 +127,6 @@ sure you add yourself to AUTHORS_.
Roadmap
-------
- Indent ``\n`` injection
- args.not_files support
- Unittests
- Sphinx Documentation
- Python 2.5, 3.1, 3.2 Support
+2 -1
View File
@@ -11,8 +11,9 @@ from clint.textui import puts, colored, indent
with indent(4, quote='>>>'):
puts(colored.red('Aruments passed in: ') + str(args.all))
puts(colored.red('Flags detected: ') + str(args.only_flags))
puts(colored.red('Flags detected: ') + str(args.flags))
puts(colored.red('Files detected: ') + str(args.files))
puts(colored.red('NOT Files detected: ') + str(args.not_files))
puts(colored.red('Grouped Arguments: ') + str(dict(args.grouped)))
print
+3
View File
@@ -10,3 +10,6 @@ python args.py *.py
echo 'A few non-expanded file arguments:'
python args.py '*.py'
echo 'A few mixed files/flags/arguments:'
python args.py '*.py' --test test face book -s ~/.ssh