@@ -192,7 +192,7 @@ def test_iteritems(self):
192
192
assert isinstance (v , self .klass ._constructor_sliced )
193
193
194
194
def test_items (self ):
195
- # issue # 17213, # 13918
195
+ # GH 17213, GH 13918
196
196
cols = ['a' , 'b' , 'c' ]
197
197
df = DataFrame ([[1 , 2 , 3 ], [4 , 5 , 6 ]], columns = cols )
198
198
for c , (k , v ) in zip (cols , df .items ()):
@@ -213,7 +213,7 @@ def test_iterrows(self, float_frame, float_string_frame):
213
213
self ._assert_series_equal (v , exp )
214
214
215
215
def test_iterrows_iso8601 (self ):
216
- # GH19671
216
+ # GH 19671
217
217
if self .klass == SparseDataFrame :
218
218
pytest .xfail (reason = 'SparseBlock datetime type not implemented.' )
219
219
@@ -354,7 +354,7 @@ def test_axis_aliases(self, float_frame):
354
354
assert_series_equal (result , expected )
355
355
356
356
def test_class_axis (self ):
357
- # https://github.com/pandas-dev/pandas/issues/ 18147
357
+ # GH 18147
358
358
# no exception and no empty docstring
359
359
assert pydoc .getdoc (DataFrame .index )
360
360
assert pydoc .getdoc (DataFrame .columns )
@@ -418,7 +418,7 @@ def test_values(self, float_frame):
418
418
assert (float_frame .values [:, 0 ] == 5 ).all ()
419
419
420
420
def test_as_matrix_deprecated (self , float_frame ):
421
- # GH18458
421
+ # GH 18458
422
422
with tm .assert_produces_warning (FutureWarning ):
423
423
cols = float_frame .columns .tolist ()
424
424
result = float_frame .as_matrix (columns = cols )
@@ -439,7 +439,7 @@ def test_transpose_get_view(self, float_frame):
439
439
assert (float_frame .values [5 :10 ] == 5 ).all ()
440
440
441
441
def test_inplace_return_self (self ):
442
- # re # 1893
442
+ # GH 1893
443
443
444
444
data = DataFrame ({'a' : ['foo' , 'bar' , 'baz' , 'qux' ],
445
445
'b' : [0 , 0 , 1 , 1 ],
@@ -503,7 +503,7 @@ def _check_f(base, f):
503
503
_check_f (d .copy (), f )
504
504
505
505
def test_tab_complete_warning (self , ip ):
506
- # https://github.com/pandas-dev/pandas/issues/ 16409
506
+ # GH 16409
507
507
pytest .importorskip ('IPython' , minversion = "6.0.0" )
508
508
from IPython .core .completer import provisionalcompleter
509
509
0 commit comments