Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 287465 Details for
Bug 321075
dev-python/pyxml causes failure of test___all__ of >=dev-lang/python-2.6.5-r2
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Fixes a syntax error in xslt/Stylesheet.py
fix-syntax-error.patch (text/plain), 688 bytes, created by
Jonathan Lovelace
on 2011-09-23 01:10:06 UTC
(
hide
)
Description:
Fixes a syntax error in xslt/Stylesheet.py
Filename:
MIME Type:
Creator:
Jonathan Lovelace
Created:
2011-09-23 01:10:06 UTC
Size:
688 bytes
patch
obsolete
>diff -ru xml.old//xslt/Stylesheet.py xml/xslt/Stylesheet.py >--- xml.old//xslt/Stylesheet.py 2011-09-22 20:25:57.000000000 -0400 >+++ xml/xslt/Stylesheet.py 2011-09-22 20:26:19.000000000 -0400 >@@ -373,8 +373,8 @@ > > #Attribute sets > attribute_sets = filter(lambda x: x.nodeType == Node.ELEMENT_NODE and (x.namespaceURI, x.localName) == (XSL_NAMESPACE, 'attribute-set'), self.childNodes) >- for as in attribute_sets: >- as.instantiate(context, processor) >+ for aset in attribute_sets: >+ aset.instantiate(context, processor) > overridden_params = {} > for k in topLevelParams.keys(): > if type(k) != types.TupleType:
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 321075
:
232489
|
287463
| 287465 |
292645
|
292647