File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,13 @@ General
1515* References should be parsed 'manually' to get around command invocation, but
1616 be sure to be able to read packed refs.
1717
18+ Config
19+ ------
20+ * Expand .get* methods of GitConfigParser to support default value. If it is not None,
21+ it will be returned instead of raising. This way the class will be much more usable,
22+ and ... I truly hate this config reader as it is so 'old' style. Its not even a new-style
23+ class yet showing that it must be ten years old.
24+
1825Docs
1926----
2027Overhaul docs - check examples, check looks, improve existing docs
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ class Repo(object):
4242 the log.
4343 """
4444 DAEMON_EXPORT_FILE = 'git-daemon-export-ok'
45+ __slots__ = ( "wd" , "path" , "_bare" , "git" )
4546
4647 # precompiled regex
4748 re_whitespace = re .compile (r'\s+' )
You can’t perform that action at this time.
0 commit comments