[Python-3000-checkins] r52875 - python/branches/p3yk/Misc/cheatsheet

2006-11-30 Thread jack.diederich
Author: jack.diederich Date: Thu Nov 30 21:50:23 2006 New Revision: 52875 Modified: python/branches/p3yk/Misc/cheatsheet Log: replace references to __nonzero__ with __bool__ Modified: python/branches/p3yk/Misc/cheatsheet =

[Python-3000-checkins] r52877 - python/branches/p3yk/Python/bltinmodule.c

2006-11-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Nov 30 23:13:52 2006 New Revision: 52877 Modified: python/branches/p3yk/Python/bltinmodule.c Log: Add built-in Print() function. This is PEP 3105 except for the name; I'll rename it to print() later. Now I can start working on the refactoring tool for print

[Python-3000-checkins] r52878 - python/branches/p3yk/Python/bltinmodule.c

2006-11-30 Thread georg.brandl
Author: georg.brandl Date: Thu Nov 30 23:46:03 2006 New Revision: 52878 Modified: python/branches/p3yk/Python/bltinmodule.c Log: Check "sep" and "end" for stringness in Print(). Modified: python/branches/p3yk/Python/bltinmodule.c ==