File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,11 @@ if [ "$LINT" ]; then
49
49
if [ $? -ne " 0" ]; then
50
50
RET=1
51
51
fi
52
+
53
+ if [[ -n $( find ** /* .pyx -type f -exec egrep -l " +$" {} \; ) ]]
54
+ then
55
+ RET=1
56
+ fi
52
57
echo " Linting *.pyx DONE"
53
58
54
59
echo " Linting *.pxi.in"
@@ -173,7 +178,7 @@ if [ "$LINT" ]; then
173
178
RET=1
174
179
fi
175
180
echo " Check for old-style classes DONE"
176
-
181
+
177
182
echo " Check for backticks incorrectly rendering because of missing spaces"
178
183
grep -R --include=" *.rst" -E " [a-zA-Z0-9]\`\` ?[a-zA-Z0-9]" doc/source/
179
184
Original file line number Diff line number Diff line change @@ -1538,7 +1538,7 @@ cdef class _Period(object):
1538
1538
See Also
1539
1539
--------
1540
1540
Period.year : Return the calendar year of the period.
1541
-
1541
+
1542
1542
Examples
1543
1543
--------
1544
1544
If the natural and fiscal year are the same, `qyear` and `year` will
You can’t perform that action at this time.
0 commit comments