mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Merged revisions 85530,85534,85538,85540-85542 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85530 | georg.brandl | 2010-10-15 17:32:05 +0200 (Fr, 15 Okt 2010) | 1 line Refrain from using inline suites. ........ r85534 | georg.brandl | 2010-10-15 18:19:43 +0200 (Fr, 15 Okt 2010) | 1 line #9801: document how list and dict proxies created by Managers behave w.r.t. mutable items. ........ r85538 | georg.brandl | 2010-10-15 18:35:46 +0200 (Fr, 15 Okt 2010) | 1 line #7303: add documentation for useful pkgutil functions and classes. ........ r85540 | georg.brandl | 2010-10-15 18:42:37 +0200 (Fr, 15 Okt 2010) | 1 line #6798: fix wrong docs for the arguments to several trace events. ........ r85541 | georg.brandl | 2010-10-15 18:53:24 +0200 (Fr, 15 Okt 2010) | 1 line #4968: updates to inspect.is* function docs. ........ r85542 | georg.brandl | 2010-10-15 19:01:15 +0200 (Fr, 15 Okt 2010) | 1 line #7790: move table of struct_time members to the actual description of struct_time. ........
This commit is contained in:
parent
d8d884947b
commit
78f11edf3f
7 changed files with 247 additions and 88 deletions
|
|
@ -429,7 +429,8 @@ function like this::
|
|||
def cheeseshop(kind, *arguments, **keywords):
|
||||
print "-- Do you have any", kind, "?"
|
||||
print "-- I'm sorry, we're all out of", kind
|
||||
for arg in arguments: print arg
|
||||
for arg in arguments:
|
||||
print arg
|
||||
print "-" * 40
|
||||
keys = sorted(keywords.keys())
|
||||
for kw in keys:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue