This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
| Author | vinay.sajip |
|---|---|
| Recipients | loewis, r.david.murray, vinay.sajip |
| Date | 2012年03月01日.17:21:38 |
| SpamBayes Score | 0.06874089 |
| Marked as misclassified | No |
| Message-id | <1330622499.39.0.488658908154.issue14168@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
The following script, minidom_test.py, from xml.dom import minidom data = b''' <rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"> <channel> <link>https://example.com/blog/</link> <atom:link href="https://example.com/rss2/" rel="self"></atom:link> <item> <link>https://example.com/blog/1/</link> </item> </channel> </rss>''' doc = minidom.parseString(data) for link in doc.getElementsByTagName('link'): print(link._attrs) produces different results in Python 3.2 and 3.3: vinay@eta-oneiric64:~/projects/scratch$ python3.2 minidom_test.py {} {} vinay@eta-oneiric64:~/projects/scratch$ python3.3 minidom_test.py None None |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2012年03月01日 17:21:39 | vinay.sajip | set | recipients: + vinay.sajip, loewis, r.david.murray |
| 2012年03月01日 17:21:39 | vinay.sajip | set | messageid: <1330622499.39.0.488658908154.issue14168@psf.upfronthosting.co.za> |
| 2012年03月01日 17:21:38 | vinay.sajip | link | issue14168 messages |
| 2012年03月01日 17:21:38 | vinay.sajip | create | |