Skip to content
This repository was archived by the owner on Jan 31, 2023. It is now read-only.

Commit 5388162

Browse files
committed
fix rst and codespell
1 parent 4e17c6e commit 5388162

File tree

3 files changed

+18
-16
lines changed

3 files changed

+18
-16
lines changed

sage_patchbot/http_post_file.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@ def by(utf_string: str) -> bytes:
4242

4343

4444
def encode_multipart_formdata(fields, files):
45-
"""
46-
fields is a sequence of (name, value) elements for regular form
47-
fields. files is a sequence of (name, filename, value) elements
45+
r"""
46+
fields is a sequence of (name, value) elements for regular form fields.
47+
48+
files is a sequence of (name, filename, value) elements
4849
for data to be uploaded as files
4950
5051
Return (content_type, body) ready for httplib.HTTP instance
@@ -54,7 +55,7 @@ def encode_multipart_formdata(fields, files):
5455
In [2]: encode_multipart_formdata([],[])
5556
Out[2]:
5657
('multipart/form-data; boundary=JPS2ZAVEEIQZW6K5JVQB1IJE2W',
57-
'--JPS2ZAVEEIQZW6K5JVQB1IJE2W--\r\n')
58+
'--JPS2ZAVEEIQZW6K5JVQB1IJE2W--\r\n')
5859
"""
5960
# BOUNDARY = mimetools.choose_boundary()
6061
UTF_BOUNDARY = id_generator()
@@ -71,7 +72,8 @@ def encode_multipart_formdata(fields, files):
7172
L.append(by(value))
7273
for (key, filename, value) in files:
7374
L.append(dd + BOUNDARY)
74-
cont = f'Content-Disposition: form-data; name="{key}"; filename="{filename}"'
75+
cont = 'Content-Disposition: form-data; '
76+
cont += f'name="{key}"; filename="{filename}"'
7577
L.append(by(cont))
7678
L.append(by(f'Content-Type: {get_content_type(filename)}'))
7779
L.append(by(''))

sage_patchbot/patchbot.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -809,8 +809,8 @@ def rate_ticket(self, ticket, verbose=False):
809809
self.write_log('#{}: no git branch'.format(ticket['id']), logfile)
810810
return
811811

812-
if not(ticket['status'] in ('needs_review', 'positive_review',
813-
'needs_info', 'needs_work')):
812+
if ticket['status'] not in ('needs_review', 'positive_review',
813+
'needs_info', 'needs_work'):
814814
msg = '#{}: bad status (={})'
815815
self.write_log(msg.format(ticket['id'],
816816
ticket['status']), logfile)
@@ -996,7 +996,7 @@ def test_a_ticket(self, ticket=None):
996996
self.write_log("warning: rating is None, testing #{} at your own risk".format(ticket['id']),
997997
LOG_MAIN)
998998

999-
if not(ticket.get('git_branch') or ticket['id'] == 0):
999+
if not (ticket.get('git_branch') or ticket['id'] == 0):
10001000
self.write_log("no git branch for #{}, hence no testing".format(ticket['id']),
10011001
LOG_MAIN)
10021002
return
@@ -1044,7 +1044,7 @@ def test_a_ticket(self, ticket=None):
10441044
self.to_skip[ticket['id']] = time.time() + 240 * 60 * 60
10451045

10461046
is_ci_only = False # branch_updates_only_ci()
1047-
# desactivated for now
1047+
# not activated for now
10481048

10491049
if not is_spkg and not is_ci_only:
10501050
# ------------- make -------------

sage_patchbot/plugins.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -587,19 +587,19 @@ def doctest_continuation(ticket, **kwds):
587587

588588
def blocks(ticket, **kwds):
589589
"""
590-
some check for the blocks
590+
some check for the blocks:
591591
592-
1) correct syntax is .. SEEALSO::
592+
1) correct syntax is ``.. SEEALSO::``
593593
594-
2) TESTS and EXAMPLES should be plural, NOTE singular
594+
2) ``TESTS`` and ``EXAMPLES`` should be plural, ``NOTE`` singular
595595
596-
3) no :: after INPUT and OUTPUT blocks
596+
3) no ``::`` after ``INPUT`` and ``OUTPUT`` blocks
597597
598-
4) no :: after REFERENCE blocks
598+
4) no ``::`` after ``REFERENCE`` blocks
599599
600-
5) no " :" at the end of lines
600+
5) no `` :`` at the end of lines
601601
602-
6) no "Returns" at the start of lines
602+
6) no ``Returns`` at the start of lines
603603
"""
604604
regexps = [r'\.\.SEE|SEE ALSO|SEEALSO:($|[^:])',
605605
r'^\s*TEST:', r'^\s*EXAMPLE:', r'^\s*NOTES:',

0 commit comments

Comments
 (0)