- 12 Jan, 2005 12 commits
-
-
Fred Drake authored
-
Fred Drake authored
-
Andrew McNamara authored
-
Andrew McNamara authored
-
Andrew McNamara authored
user error messages (otherwise difficult to do without instrumenting the source).
-
Andrew McNamara authored
to floats.
-
Andrew McNamara authored
-
Andrew McNamara authored
PyNumber_Check, rather than trying to convert to a float. Reimplemented writer - now raises exceptions when it sees a quotechar but neither doublequote or escapechar are set. Doublequote results are now more consistent (eg, single quote should generate """", rather than "", which is ambiguous).
-
Andrew McNamara authored
gets).
-
Andrew McNamara authored
-
Andrew McNamara authored
-
Andrew McNamara authored
-
- 11 Jan, 2005 10 commits
-
-
Kurt B. Kaiser authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
Clarified that the returned object is file-like rather than an actual file.
-
Andrew McNamara authored
when this limit is reached. Limit defaults to 128k, and is changed by module set_field_limit() method. Previously, an unmatched quote character could result in the entire file being read into the field buffer, potentially exhausting virtual memory.
-
Andrew McNamara authored
only contains instances of the dialect type, we can refer directly to the dialect instances rather than creating new ones. In other words, if the dialect comes from the registry, and we apply no further modifications, the reader/writer can use the dialect object directly.
-
Raymond Hettinger authored
-
Andrew McNamara authored
dialect type (which has a better idea of what is and isn't valid).
-
Andrew McNamara authored
was done because we were previously performing validation of the dialect from python, but this is now down within the C module. Also, the method we were using to detect classes did not work with new-style classes.
-
Andrew McNamara authored
record objects of internal dialect type, rather than instances of python objects.
-
Andrew McNamara authored
-
- 10 Jan, 2005 8 commits
-
-
Andrew McNamara authored
it for all failures, potentially masking other exceptions).
-
Tim Peters authored
-
Andrew McNamara authored
same as None.
-
Andrew McNamara authored
rather than using PyString_Check/PyUnicode_Check.
-
Walter Dörwald authored
-
Johannes Gijsbers authored
profile.help() point at the library reference instead of profile.doc.
-
Andrew McNamara authored
writer objects (other GC infrastructure already in place).
-
Andrew McNamara authored
left in stream).
-
- 09 Jan, 2005 5 commits
-
-
http://www.example.com?query=spamJohannes Gijsbers authored
a delimiter. Previously, the 'network location' (<authority> in RFC 2396) would become 'www.example.com?query=spam', while RFC 2396 does not allow a '?' in <authority>. See bug #548176 for further discussion.
-
Johannes Gijsbers authored
removing some duplication and gaining some flexibility in the process.
-
Johannes Gijsbers authored
there's no need to subclass OptionParser.
-
Johannes Gijsbers authored
* Document hasFeature(), createDocument(), CreateDocumentType(), hasAttribute(), hasAttributeNS(). * In the documentation for createDocument(), it is now stated that the Python DOM API allows implementations to forego creation of the document element child node, if no namespace and local name arguments are given. (This possibility is left open and unaddressed in the W3C spec). * Addition by me: use 'name' rather than 'attname', for consistency with the DOM specification and the Python DOM API implementation.
-
Johannes Gijsbers authored
-
- 08 Jan, 2005 5 commits
-
-
Skip Montanaro authored
-
Skip Montanaro authored
Python file/line when the current C execution frame is inside PyEval_EvalFrame. These are commented out by default because GDB sometimes crashes as a result (seems like a GDB bug). Add a pyframe command that displays the current Python stack frame. If the marked lines are uncommented, it will also cause Emacs/XEmacs to display the current file/line.
-
Johannes Gijsbers authored
properties, and custom descriptors. * removed special handling of properties * added special handling of data descriptors - All data descriptors are grouped together in a section. For each item, the attribute name and doc string, if present, is displayed. * disabled display of __slots__ attribute - since slots are descriptors, they are listed in the section described above Thanks to John Belmonte for the patch!
-
Johannes Gijsbers authored
still the same, so there should be no backwards-compatibility problems.
-
Johannes Gijsbers authored
modules, replacing with email. Thanks to Josh Hoyt for the patch!
-