Skip to content

Commit

Permalink
TST: more escaping in com.pprint_thing()
Browse files Browse the repository at this point in the history
  • Loading branch information
y-p committed Dec 11, 2012
1 parent 74ab638 commit 06a31ba
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pandas/tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,9 @@ def test_pprint_thing():
# GH #2038
assert not "\t" in pp_t("a\tb")

assert not "\n" in pp_t("a\nb")
assert "\n" in pp_t("a\nb",escape_chars=("\t",))

class TestTake(unittest.TestCase):

_multiprocess_can_split_ = True
Expand Down

0 comments on commit 06a31ba

Please sign in to comment.