summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-04-18 20:45:33 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-04-18 20:45:33 (GMT)
commit858a77099e094ce4ef57778d38230ec36db2e805 (patch)
treeef32406e6ee64f3cf98d8474bc8f19d120d542e5 /Python
parentb131f0468f9ecdddcbf1a932cdffc275c81d676a (diff)
downloadcpython-858a77099e094ce4ef57778d38230ec36db2e805.zip
cpython-858a77099e094ce4ef57778d38230ec36db2e805.tar.gz
cpython-858a77099e094ce4ef57778d38230ec36db2e805.tar.bz2
Fix indentation in sysmodule.c
Diffstat (limited to 'Python')
-rw-r--r--Python/sysmodule.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 5293c97..8c82d45 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1299,9 +1299,9 @@ _PySys_Init(void)
PyDict_SetItemString(sysdict, "__stdout__", sysout);
PyDict_SetItemString(sysdict, "__stderr__", syserr);
PyDict_SetItemString(sysdict, "__displayhook__",
- PyDict_GetItemString(sysdict, "displayhook"));
+ PyDict_GetItemString(sysdict, "displayhook"));
PyDict_SetItemString(sysdict, "__excepthook__",
- PyDict_GetItemString(sysdict, "excepthook"));
+ PyDict_GetItemString(sysdict, "excepthook"));
Py_XDECREF(sysin);
Py_XDECREF(sysout);
Py_XDECREF(syserr);
@@ -1312,10 +1312,10 @@ _PySys_Init(void)
PyInt_FromLong(PY_VERSION_HEX));
svnversion_init();
SET_SYS_FROM_STRING("subversion",
- Py_BuildValue("(ssz)", "CPython", branch,
+ Py_BuildValue("(ssz)", "CPython", branch,
svn_revision));
SET_SYS_FROM_STRING("dont_write_bytecode",
- PyBool_FromLong(Py_DontWriteBytecodeFlag));
+ PyBool_FromLong(Py_DontWriteBytecodeFlag));
/*
* These release level checks are mutually exclusive and cover
* the field, so don't get too fancy with the pre-processor!