| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
Added support for project-relative and absolute path names in the search path entries.
|
|
|
|
|
|
| |
yet only
three modules done (and one doesn't work:-), the rest TBD.
|
| |
|
|
|
|
|
|
| |
Add support for some combining characters.
Remove unnecessary imports and dependencies on PyXML and esistools.
|
|
|
|
|
| |
Remove the SGML aspects; there's too much XML momentum to worry about
the SGML flavor at this point.
|
|
|
|
| |
entirely so that debugging can be performed independently.
|
|
|
|
| |
and one more standard LaTeX macro.
|
| |
|
|
|
|
|
| |
sources more difficult and other tools do not always work well with it.
Since we have better markup for this case, just fix it.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
testAAA(),
testAAB(): Added checks that the results are right.
testTooManyDocumentElements(): Added code to actually test this.
testCloneElementDeep()
testCloneElementShallow(): Filled these in with test code.
_testCloneElementCopiesAttributes(),
_setupCloneElement(): Helper functions used with the other
testCloneElement*() functions.
testCloneElementShallowCopiesAttributes(): No longer a separate test;
_setupCloneElement() uses _testCloneElementCopiesAttributes() to
test that this is always done.
testNormalize(): Added to check Node.normalize().
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
behavior.
Added support for the Attr.ownerElement attribute.
Everywhere: Define constant object attributes in the classes rather than
on the instances during object construction. This reduces the amount of
work needed for object construction and destruction; these need to be
lightweight operations on a DOM.
Node._get_firstChild(),
Node._get_lastChild(): Return None if there are no children (required for
compliance with DOM level 1).
Node.insertBefore(): If refChild is None, append the new node instead of
failing (required for compliance). Also, update the sibling
relationships. Return the inserted node (required for compliance).
Node.appendChild(): Update the parent of the appended node.
Node.replaceChild(): Actually replace the old child! Update the parent
and sibling relationships of both the old and new children. Return
the replaced child (required for compliance).
Node.normalize(): Implemented the normalize() method. Required for
compliance, but missing from the release. Useful for joining
adjacent Text nodes into a single node for easier processing.
Node.cloneNode(): Actually make this work. Don't let the new node share
the instance __dict__ with the original. Do proper recursion if
doing a "deep" clone. Move the attribute cloning out of the base
class, since only Element is supposed to have attributes.
Node.unlink(): Simplify handling of child nodes for efficiency, and
remove the attribute handling since only Element nodes support
attributes.
Attr.cloneNode(): Extend this to clear the ownerElement attribute in
the clone.
AttributeList.items(),
AttributeList.itemsNS(): Slight performance improvement (avoid lambda).
Element.cloneNode(): Extend Node.cloneNode() with support for the
attributes. Clone the Attr objects after creating the underlying
clone.
Element.unlink(): Clean out the attributes here instead of in the base
class, since this is the only class that will have them.
Element.toxml(): Adjust to create only one AttributeList instance; minor
efficiency improvement.
_nssplit(): No need to re-import string.
Document.__init__(): No longer needed once constant attributes are
initialized in the class itself.
Document.createElementNS(),
Document.createAttributeNS(): Use the defined constructors rather than
directly access the classes.
_get_StringIO(): New function. Create an output StringIO using the most
efficient available flavor.
parse(),
parseString(): Import pulldom here instead of in the public namespace of
the module.
|
|
|
|
| |
"package/file.h" works. Moved bits around so now at least Numeric with Distutils builds and instals.
|
|
|
|
| |
doesn't keep all the projects open.
|
| |
|
|
|
|
| |
initialize the terminal without necessarily calling initscr()
|
|
|
|
|
|
|
|
| |
about the interpretation of radix 0 for int(), and added description of
the optional radix argument for long(). Based on comments from Reuben
Sumner <rasumner@users.sourceforge.net>.
This closes bug #121672.
|
|
|
|
| |
breaks things.
|
|
|
|
|
|
|
| |
is encoded in u-LAW format. Based on suggestion from Anthony Baxter
<anthony_baxter@users.sourceforge.net>.
This closes bug #122273.
|
|
|
|
|
|
| |
<gcivario@users.sourceforge.net>.
This closes bug #122562.
|
|
|
|
|
|
| |
<schram@users.sourceforge.net>.
This closes bug #122236.
|
| |
|
| |
|
|
|
|
| |
Started to rename projects to the de-facto standard .mcp extension.
|
| |
|
|
|
|
|
|
| |
the bug report (for details, look at it), but agree there's no need for Python
to declare atof itself: we #include stdlib.h, and ANSI C sez atof is declared
there already.
|
|
|
|
| |
Python installation.
|
| |
|
|
|
|
|
|
| |
documented, and as is reasonable (since it is optional, but there's
another argument following it that may require you to specify a
value). This solves SF bug 121887.
|
|
|
|
|
| |
hack for TELL64()... Sounds like there's something else going on
really. Does anybody have a clue I can buy?
|
|
|
|
| |
still in use, for Apple Mac OSX.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
use it to generate a dialog for users to specify the command-line (because
providing a command-line with MacPython is so awkward).
|
|
|
|
| |
binary in the repository.
|
|
|
|
|
| |
unfortunate consequence of somebody switching from PyArg_Parse to
PyArg_ParseTuple but without changing the argument from a NULL to a tuple.
|
|
|
|
| |
Fred.
|
|
|
|
| |
try/except.
|
|
|
|
|
| |
to call self.close() to reclaim some file descriptors, the reraise the
exception. Closes SF patch #102185 and SF bug #119833.
|
|
|
|
|
|
|
| |
occurs in the Python sources appears to be as text in comments. We do not
want to interfere with C++ keywords!
This closes bug #119851.
|
| |
|
|
|
|
|
|
|
| |
*really* closes bug #121965.
Added three attributes to the xrange object: start, stop, and step. These
are the same as for the slice objects.
|
|
|
|
|
|
| |
where ">=" should have been.
This closes bug #121965.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
- when compiling with GCC on Solaris, use "$(CC) -shared" instead
of "$(CC) -G" to generate .so files
- when compiling with GCC on any platform, add "-fPIC" to OPT
(without this, "$(CC) -shared" dies horribly)
|