@@ -187,7 +187,7 @@ def test_iteritems(self):
187
187
assert isinstance (v , self .klass ._constructor_sliced )
188
188
189
189
def test_items (self ):
190
- # issue # 17213, # 13918
190
+ # GH 17213, GH 13918
191
191
cols = ['a' , 'b' , 'c' ]
192
192
df = DataFrame ([[1 , 2 , 3 ], [4 , 5 , 6 ]], columns = cols )
193
193
for c , (k , v ) in zip (cols , df .items ()):
@@ -208,7 +208,7 @@ def test_iterrows(self, float_frame, float_string_frame):
208
208
self ._assert_series_equal (v , exp )
209
209
210
210
def test_iterrows_iso8601 (self ):
211
- # GH19671
211
+ # GH 19671
212
212
if self .klass == SparseDataFrame :
213
213
pytest .xfail (reason = 'SparseBlock datetime type not implemented.' )
214
214
@@ -349,7 +349,7 @@ def test_axis_aliases(self, float_frame):
349
349
tm .assert_series_equal (result , expected )
350
350
351
351
def test_class_axis (self ):
352
- # https://github.com/pandas-dev/pandas/issues/ 18147
352
+ # GH 18147
353
353
# no exception and no empty docstring
354
354
assert pydoc .getdoc (DataFrame .index )
355
355
assert pydoc .getdoc (DataFrame .columns )
@@ -413,7 +413,7 @@ def test_values(self, float_frame):
413
413
assert (float_frame .values [:, 0 ] == 5 ).all ()
414
414
415
415
def test_as_matrix_deprecated (self , float_frame ):
416
- # GH18458
416
+ # GH 18458
417
417
with tm .assert_produces_warning (FutureWarning ):
418
418
cols = float_frame .columns .tolist ()
419
419
result = float_frame .as_matrix (columns = cols )
@@ -434,7 +434,7 @@ def test_transpose_get_view(self, float_frame):
434
434
assert (float_frame .values [5 :10 ] == 5 ).all ()
435
435
436
436
def test_inplace_return_self (self ):
437
- # re # 1893
437
+ # GH 1893
438
438
439
439
data = DataFrame ({'a' : ['foo' , 'bar' , 'baz' , 'qux' ],
440
440
'b' : [0 , 0 , 1 , 1 ],
@@ -498,7 +498,7 @@ def _check_f(base, f):
498
498
_check_f (d .copy (), f )
499
499
500
500
def test_tab_complete_warning (self , ip ):
501
- # https://github.com/pandas-dev/pandas/issues/ 16409
501
+ # GH 16409
502
502
pytest .importorskip ('IPython' , minversion = "6.0.0" )
503
503
from IPython .core .completer import provisionalcompleter
504
504
0 commit comments