Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master-1, master-0, and 0.9.4

Fix PEP8 compatibility of setup.py.

Changeset a186cc52e3fe

Parent dda8ad53c101

by Jelmer Vernooij

Changes to 2 files · Browse files at a186cc52e3fe Showing diff from parent dda8ad53c101 Diff from another changeset...

Change 1 of 3 Show Entire File dulwich/​config.py Stacked
 
38
39
40
41
 
42
43
44
 
67
68
69
70
 
71
72
73
 
94
95
96
97
 
98
99
100
 
101
102
103
 
38
39
40
 
41
42
43
44
 
67
68
69
 
70
71
72
73
 
94
95
96
 
97
98
99
 
100
101
102
103
@@ -38,7 +38,7 @@
    def get(self, section, name):   """Retrieve the contents of a configuration setting. - +   :param section: Tuple with section name and optional subsection namee   :param subsection: Subsection name   :return: Contents of the setting @@ -67,7 +67,7 @@
    def set(self, section, name, value):   """Set a configuration value. - +   :param name: Name of the configuration value, including section   and optional subsection   :param: Value of the setting @@ -94,10 +94,10 @@
    def __getitem__(self, key):   return self._values[key] - +   def __setitem__(self, key, value):   self._values[key] = value - +   def keys(self):   return self._values.keys()  
Change 1 of 4 Show Entire File setup.py Stacked
 
30
31
32
33
34
 
 
35
36
37
 
45
46
47
48
49
 
50
51
52
 
59
60
61
62
 
 
63
64
65
 
73
74
75
76
 
77
78
79
80
81
82
83
 
84
85
86
 
30
31
32
 
 
33
34
35
36
37
 
45
46
47
 
 
48
49
50
51
 
58
59
60
 
61
62
63
64
65
 
73
74
75
 
76
77
78
79
80
81
82
 
83
84
85
86
@@ -30,8 +30,8 @@
  return not self.pure and not '__pypy__' in sys.modules     global_options = Distribution.global_options + [ - ('pure', None, - "use pure Python code instead of C extensions (slower on CPython)")] + ('pure', None, "use pure Python code instead of C " + "extensions (slower on CPython)")]     pure = False   @@ -45,8 +45,7 @@
  out, err = p.communicate()   for l in out.splitlines():   # Also parse only first digit, because 3.2.1 can't be parsed nicely - if (l.startswith('Xcode') and - int(l.split()[1].split('.')[0]) >= 4): + if l.startswith('Xcode') and int(l.split()[1].split('.')[0]) >= 4:   os.environ['ARCHFLAGS'] = ''    setup_kwargs = {} @@ -59,7 +58,8 @@
  keywords='git',   version=dulwich_version_string,   url='http://samba.org/~jelmer/dulwich', - download_url='http://samba.org/~jelmer/dulwich/dulwich-%s.tar.gz' % dulwich_version_string, + download_url='http://samba.org/~jelmer/dulwich/' + 'dulwich-%s.tar.gz' % dulwich_version_string,   license='GPLv2 or later',   author='Jelmer Vernooij',   author_email='jelmer@samba.org', @@ -73,14 +73,14 @@
  """,   packages=['dulwich', 'dulwich.tests'],   scripts=['bin/dulwich', 'bin/dul-daemon', 'bin/dul-web'], - ext_modules = [ + ext_modules=[   Extension('dulwich._objects', ['dulwich/_objects.c'],   include_dirs=include_dirs),   Extension('dulwich._pack', ['dulwich/_pack.c'],   include_dirs=include_dirs),   Extension('dulwich._diff_tree', ['dulwich/_diff_tree.c'],   include_dirs=include_dirs), - ], + ],   distclass=DulwichDistribution,   **setup_kwargs   )