]>
git.madduck.net Git - etc/vim.git/commitdiff
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
6b5753a )
Fixes #1595
transformers = [
string_merge,
string_paren_strip,
transformers = [
string_merge,
string_paren_strip,
delimiter_split,
standalone_comment_split,
delimiter_split,
standalone_comment_split,
string_paren_wrap,
rhs,
]
string_paren_wrap,
rhs,
]
if symbol in inverse:
raise ValueError(
"rule %s is ambiguous; %s is in the first sets of %s as well"
if symbol in inverse:
raise ValueError(
"rule %s is ambiguous; %s is in the first sets of %s as well"
- " as %s"
- % (name, symbol, label, inverse[symbol])
+ " as %s" % (name, symbol, label, inverse[symbol])
)
inverse[symbol] = label
self.first[name] = totalset
)
inverse[symbol] = label
self.first[name] = totalset
old_fmt_string1 = (
"While we are on the topic of %s, we should also note that old-style formatting"
old_fmt_string1 = (
"While we are on the topic of %s, we should also note that old-style formatting"
- " must also be preserved, since some %s still uses it."
- % ("formatting", "code")
+ " must also be preserved, since some %s still uses it." % ("formatting", "code")
)
old_fmt_string2 = "This is a %s %s %s %s" % (
)
old_fmt_string2 = "This is a %s %s %s %s" % (
assert some_type_of_boolean_expression, (
"Followed by a really really really long string that is used to provide context to"
assert some_type_of_boolean_expression, (
"Followed by a really really really long string that is used to provide context to"
- " the AssertionError exception, which uses dynamic string %s."
- % "formatting"
+ " the AssertionError exception, which uses dynamic string %s." % "formatting"
)
assert some_type_of_boolean_expression, (
)
assert some_type_of_boolean_expression, (
passenger_association=passenger_association,
)
passenger_association=passenger_association,
)
+if __name__ == "__main__":
+ for i in range(4, 8):
+ cmd = (
+ r"for pid in $(ps aux | grep paster | grep -v grep | grep '\-%d' | awk '{print $2}'); do kill $pid; done"
+ % (i)
+ )
+
func_call_where_string_arg_has_old_fmt_and_bad_parens(
"A long string with {}. This string is so long that it is ridiculous. It can't fit"
func_call_where_string_arg_has_old_fmt_and_bad_parens(
"A long string with {}. This string is so long that it is ridiculous. It can't fit"
- " on one line at alllll."
- % "formatting",
+ " on one line at alllll." % "formatting",
)
func_call_where_string_arg_has_old_fmt_and_bad_parens(
"A long string with {}. This {} is so long that it is ridiculous. It can't fit on"
)
func_call_where_string_arg_has_old_fmt_and_bad_parens(
"A long string with {}. This {} is so long that it is ridiculous. It can't fit on"
- " one line at alllll."
- % ("formatting", "string"),
+ " one line at alllll." % ("formatting", "string"),
passenger_association=passenger_association,
)
)
passenger_association=passenger_association,
)
)
+
+
+if __name__ == "__main__":
+ for i in range(4, 8):
+ cmd = (
+ r"for pid in $(ps aux | grep paster | grep -v grep | grep '\-%d' | awk"
+ r" '{print $2}'); do kill $pid; done" % (i)
+ )