Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | On second thought: "Errors should never pass silently", so barf when a | Just van Rossum | 2004-11-12 | 1 | -3/+6 |
| | | | | string contains control chars that are illegal for XML | ||||
* | - \f is not a valid XML character | Just van Rossum | 2004-11-12 | 1 | -3/+4 |
| | | | | - reformatted regex pattern, use r"" consistently | ||||
* | reordered a couple of things | Just van Rossum | 2004-11-12 | 1 | -5/+6 |
| | |||||
* | Made <data> output match Apple's exactly. To do that I had to add a custom | Just van Rossum | 2004-10-26 | 1 | -6/+21 |
| | | | | | version of base64.encodestring() so I could control the line length of the base64 output. | ||||
* | also escape '>', to closer match Apple's plist output | Just van Rossum | 2004-10-26 | 1 | -0/+1 |
| | |||||
* | Deprecating Dict class; going through a few hoops to get the warnings right. | Just van Rossum | 2004-10-26 | 1 | -20/+29 |
| | |||||
* | - Removed Date class. We don't really need it for b/w compatibility since | Just van Rossum | 2004-10-26 | 1 | -52/+25 |
| | | | | | | a) the functionality depended on PyXML before and b) hardly worked to begin with. - Instead, output and require upon input datetime.datetime objects. | ||||
* | - added two more convenience functions: readPlistFromString() and | Just van Rossum | 2004-10-26 | 1 | -15/+30 |
| | | | | | | writePlistToString() - use these two in the resource functions. - Tweaked module doc string. | ||||
* | Updated doc strings. | Just van Rossum | 2004-10-25 | 1 | -3/+2 |
| | |||||
* | Deprecate Plist class | Just van Rossum | 2004-10-25 | 1 | -2/+8 |
| | |||||
* | Removed superfluous **kwargs constructor cruft: this class predates | Just van Rossum | 2004-10-25 | 1 | -8/+0 |
| | | | | the dict(**kwargs) feature. | ||||
* | Patch from Bob Ippolito, slighly edited: | Just van Rossum | 2004-10-25 | 1 | -16/+77 |
| | | | | [ 1052399 ] plistlib: add plst resource functionality, fix bugs | ||||
* | removed 2.2 support | Just van Rossum | 2004-10-02 | 1 | -74/+3 |
| | |||||
* | Which reminds me, I've had a much improved plistlib.py lying around for | Just van Rossum | 2004-10-02 | 1 | -85/+113 |
| | | | | | | ages. The main improvements are: - a much more convenient API: readPlist() and writePlist() - support non-dict top-level objects | ||||
* | don't optimize empty strings | Just van Rossum | 2003-07-10 | 1 | -1/+1 |
| | |||||
* | - replaced a couple of asserts with proper exceptions | Just van Rossum | 2003-07-01 | 1 | -4/+5 |
| | | | | - use isinstance instead of flaky file-detection code | ||||
* | Detabbed. | Jack Jansen | 2003-04-09 | 1 | -324/+324 |
| | |||||
* | Moved most of Mac/Lib hierarchy to Lib/plat-mac: it can be used both | Jack Jansen | 2002-12-30 | 1 | -0/+436 |
in MacPython-OS9 and MacPython-OSX (or the equivalent unix Python on Mac OS X). The only items remaining in Mac/Lib are modules that are meaningful only for MacPython-OS9 (CFM stuff, MacPython preferences in resources, etc). |