- 13 Ock, 2005 4 kayıt (commit)
-
-
Tim Peters yazdı
-
Andrew McNamara yazdı
this allows for better handling of newline characters in quoted fields (and hopefully resolves Bug 967934).
-
Vinay Sajip yazdı
-
Skip Montanaro yazdı
the changes.
-
- 12 Ock, 2005 12 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Andrew McNamara yazdı
-
Andrew McNamara yazdı
-
Andrew McNamara yazdı
user error messages (otherwise difficult to do without instrumenting the source).
-
Andrew McNamara yazdı
to floats.
-
Andrew McNamara yazdı
-
Andrew McNamara yazdı
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 yazdı
gets).
-
Andrew McNamara yazdı
-
Andrew McNamara yazdı
-
Andrew McNamara yazdı
-
- 11 Ock, 2005 10 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
Clarified that the returned object is file-like rather than an actual file.
-
Andrew McNamara yazdı
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 yazdı
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 yazdı
-
Andrew McNamara yazdı
dialect type (which has a better idea of what is and isn't valid).
-
Andrew McNamara yazdı
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 yazdı
record objects of internal dialect type, rather than instances of python objects.
-
Andrew McNamara yazdı
-
- 10 Ock, 2005 8 kayıt (commit)
-
-
Andrew McNamara yazdı
it for all failures, potentially masking other exceptions).
-
Tim Peters yazdı
-
Andrew McNamara yazdı
same as None.
-
Andrew McNamara yazdı
rather than using PyString_Check/PyUnicode_Check.
-
Walter Dörwald yazdı
-
Johannes Gijsbers yazdı
profile.help() point at the library reference instead of profile.doc.
-
Andrew McNamara yazdı
writer objects (other GC infrastructure already in place).
-
Andrew McNamara yazdı
left in stream).
-
- 09 Ock, 2005 5 kayıt (commit)
-
-
http://www.example.com?query=spamJohannes Gijsbers yazdı
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 yazdı
removing some duplication and gaining some flexibility in the process.
-
Johannes Gijsbers yazdı
there's no need to subclass OptionParser.
-
Johannes Gijsbers yazdı
* 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 yazdı
-
- 08 Ock, 2005 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-