From: <jd...@us...> - 2008-05-17 21:20:17
|
Revision: 5177 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5177&view=rev Author: jdh2358 Date: 2008-05-17 14:20:15 -0700 (Sat, 17 May 2008) Log Message: ----------- Merged revisions 5172 via svnmerge from https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_91_maint ........ r5172 | jdh2358 | 2008-05-17 16:06:05 -0500 (Sat, 17 May 2008) | 1 line added a doc string to the branch -- just experimenting with svn merge here ........ Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/cbook.py Property Changed: ---------------- trunk/matplotlib/ Property changes on: trunk/matplotlib ___________________________________________________________________ Name: svnmerge-integrated - /branches/v0_91_maint:1-4816 + /branches/v0_91_maint:1-4816,5172 Modified: trunk/matplotlib/lib/matplotlib/cbook.py =================================================================== --- trunk/matplotlib/lib/matplotlib/cbook.py 2008-05-17 21:19:10 UTC (rev 5176) +++ trunk/matplotlib/lib/matplotlib/cbook.py 2008-05-17 21:20:15 UTC (rev 5177) @@ -216,6 +216,7 @@ return is_string_like(obj) or not iterable(obj) def is_numlike(obj): + 'return true if obj looks like a number' try: obj+1 except TypeError: return False else: return True This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |