summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-17 16:27:25 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-17 16:27:25 (GMT)
commitb4e7e25fe6f7e2c075f463b58ebdcfe21dedaf06 (patch)
tree484e6d4b235dd257ea9c94867864e03e7a3f2481 /Python/ceval.c
parentcd938fc5a1ba4a61959460787eb549ff989ca6b0 (diff)
downloadcpython-b4e7e25fe6f7e2c075f463b58ebdcfe21dedaf06.zip
cpython-b4e7e25fe6f7e2c075f463b58ebdcfe21dedaf06.tar.gz
cpython-b4e7e25fe6f7e2c075f463b58ebdcfe21dedaf06.tar.bz2
different init for __builtins__
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 2d16ef8..08758eb 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -737,8 +737,8 @@ eval_code(co, globals, locals, owner, arg)
!suppress_print) {
flushline();
x = sysget("stdout");
- softspace(x, 1);
err = writeobject(v, x, 0);
+ softspace(x, 1);
flushline();
}
DECREF(v);
@@ -1692,7 +1692,7 @@ object *
getbuiltins()
{
if (current_frame == NULL)
- return getbuiltindict();
+ return getbuiltinmod();
else
return current_frame->f_builtins;
}
n value='bug_3610383'>bug_3610383 Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
path: root/library/tzdata/America/Argentina/Jujuy
Commit message (Expand)AuthorAgeFilesLines
* Fix tzdata line terminatorsKevin B Kenny2009-04-091-67/+67
* Olson's tzdata2009eKevin B Kenny2009-04-091-67/+67
* library/tzdata/*: Update from Olson's tzdata2008i.Kevin B Kenny2008-12-101-183/+1
* Changes up to and including Olson's tzdata2008bKevin B Kenny2008-03-271-0/+185
* Olson's tzdata2006mKevin B Kenny2006-10-041-1/+1
* TIP #173 and #209 implementation - see ChangeLog for detailsKevin B Kenny2004-08-18