##// END OF EJS Templates
Merge pull request #4469 from takluyver/py3-getcwdu...
Merge pull request #4469 from takluyver/py3-getcwdu Python 3 & getcwdu We were using the os.getcwdu() function in several places. That doesn't exist on Python 3, but the path.py module was masking that by setting os.getcwdu = os.getcwd. As described in #4462, however, that didn't always work. This adds a reference in py3compat which points to getcwd on Python 3 and getcwdu in Python 2.

File last commit:

r5390:c82649ea
r13456:5bf4949f merge
Show More
test_page.py
20 lines | 772 B | text/x-python | PythonLexer
#-----------------------------------------------------------------------------
# Copyright (C) 2010-2011 The IPython Development Team.
#
# Distributed under the terms of the BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
import io
# N.B. For the test suite, page.page is overridden (see IPython.testing.globalipapp)
from IPython.core import page
def test_detect_screen_size():
"""Simple smoketest for page._detect_screen_size."""
try:
page._detect_screen_size(True, 25)
except (TypeError, io.UnsupportedOperation):
# This can happen in the test suite, because stdout may not have a
# fileno.
pass