Search:
Help/Guide
About Trac
Preferences
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
Context Navigation
←
Previous Change
Wiki History
Next Change
→
Changes between
Version 16
and
Version 17
of
PyAmazon
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
06/18/06 01:22:23 (
18 years
ago)
Author:
atzm
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
PyAmazon
v16
v17
94
94
if isinstance(authors, list): # リストの場合
95
95
for a in authors:
96
print '
%s' %
a
96
print '
',
a
97
97
#
98
98
elif authors is not None: # リストでも None でもない場合は str と仮定
99
print '
%s' %
authors
99
print '
',
authors
100
100
}}}