Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion doc/source/development/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ Development
code_style
maintaining
internals
test_writing
extending
developer
policies
Expand Down
147 changes: 0 additions & 147 deletions doc/source/development/test_writing.rst

This file was deleted.

5 changes: 0 additions & 5 deletions pandas/tests/series/methods/test_item.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
"""
Series.item method, mainly testing that we get python scalars as opposed to
numpy scalars.
"""
import pytest

from pandas import Series, Timedelta, Timestamp, date_range


class TestItem:
def test_item(self):
# We are testing that we get python scalars as opposed to numpy scalars
ser = Series([1])
result = ser.item()
assert result == 1
Expand Down