aboutsummaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-21 14:54:59 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-21 14:54:59 +0200
commitacb0fa8b94ef421ad60c8507b634759a472cd56c (patch)
tree0ad47c627f30b1c9f3e262ee0da51249bdc9f2ba /TODO
parenta2ec078f25eb357edd1912ca3dbd578979a51226 (diff)
downloadGitPython-acb0fa8b94ef421ad60c8507b634759a472cd56c.tar.gz
GitPython-acb0fa8b94ef421ad60c8507b634759a472cd56c.zip
Fixed utils.touch which did not work as the 'time' arg was missing, and even if added the method fails if the file does not exist ( at least on linux )
repo.daemon_export: fixed test for it which still used the daemon_serve property that does not exist
Diffstat (limited to 'TODO')
-rw-r--r--TODO3
1 files changed, 2 insertions, 1 deletions
diff --git a/TODO b/TODO
index df8925b4..cd50e387 100644
--- a/TODO
+++ b/TODO
@@ -13,7 +13,8 @@ General
from a common base. This allows to easily add __eq__, __ne__, __hash__ method
to make their use more comfortable and reduces code duplication.
* References like Tag(Reference), Heads and Remotes should have an own Base class
-* Optimize type size by adding __slots__ ( at least )
+* Optimize type size by adding __slots__ ( at least ), which would also make sure
+ no one accidentally adds attributes to classes.
* Add more performance tests, see branch "performance_testing"
Configuration