Static HTML documentation from docstrings

2012-02-07 Thread Florian Weimer
I'm slightly confused about docstrings and HTML documentation. I used to think that the library reference was (in part) generated from the source code, but this does not seem to be the case. Is there any tool support for keeping documentation and code in sync? -- http://mail.python.org/mailman/l

Reversible malformed UTF-8 to malformed UTF-16 encoding

2019-03-19 Thread Florian Weimer
I've seen occasional proposals like this one coming up: | I therefore suggested 1999-11-02 on the unic...@unicode.org mailing | list the following approach. Instead of using U+FFFD, simply encode | malformed UTF-8 sequences as malformed UTF-16 sequences. Malformed | UTF-8 sequences consist excludi

Re: Reversible malformed UTF-8 to malformed UTF-16 encoding

2019-03-19 Thread Florian Weimer
* MRAB: > On 2019-03-19 20:32, Florian Weimer wrote: >> I've seen occasional proposals like this one coming up: >> >> | I therefore suggested 1999-11-02 on the unic...@unicode.org mailing >> | list the following approach. Instead of using U+FFFD, simply encode &

Compression module APIs

2010-05-06 Thread Florian Weimer
As far as I can see, the compression-related APIs (gzip, zlib, bzip2) in Python 2.5 have three distinct APIs. Is there really no unified interface, or am I missing something? -- http://mail.python.org/mailman/listinfo/python-list

Re: Compression module APIs

2010-05-06 Thread Florian Weimer
* Chris Rebert: > On Thu, May 6, 2010 at 4:09 AM, Florian Weimer wrote: >> As far as I can see, the compression-related APIs (gzip, zlib, bzip2) >> in Python 2.5 have three distinct APIs.  Is there really no unified >> interface, or am I missing something? > > bz2.BZ2

Re: SQLite is quite SQL compliant

2010-10-03 Thread Florian Weimer
* Ravi: > The documentation of the sqlite module at > http://docs.python.org/library/sqlite3.html > says: > > "...allows accessing the database using a nonstandard variant of the > SQL..." > > But if you see SQLite website they clearly say at > http://sqlite.org/omitted.html that only very few of

Spreadsheet-style dependency tracking

2010-10-16 Thread Florian Weimer
Are there libraries which implement some form of spreadsheet-style dependency tracking? The idea is to enable incremental updates to some fairly convoluted computation. I hope that a general dependency tracking framework would avoid making the computation even more convoluted and difficult to cha

Re: Spreadsheet-style dependency tracking

2010-10-17 Thread Florian Weimer
* Chris Torek: > In article <87y69xbz6h@mid.deneb.enyo.de> > Florian Weimer wrote: >>Are there libraries which implement some form of spreadsheet-style >>dependency tracking? The idea is to enable incremental updates to >>some fairly convoluted compu