ANN: pyfaq 1.0b1 is now available

F

Fredrik Lundh

After incorporating more than 60 comments, adding a bunch of new
articles, and having made a ludicrous amount of minor edits and
tweaks, I'm happy to announce a first "beta" release of the new
Python FAQ:

http://effbot.org/pyfaq/

Many thanks to everyone who's contributed this far!

</F>
 
J

John Machin

Fredrik said:
After incorporating more than 60 comments, adding a bunch of new
articles, and having made a ludicrous amount of minor edits and
tweaks, I'm happy to announce a first "beta" release of the new
Python FAQ:

http://effbot.org/pyfaq/

Many thanks to everyone who's contributed this far!

UnicodeDecodeError, UnicodeEncodeError:

I was about to ask mildly the other day whether a c.l.py poster had
RTFFAQ when I thought "Hmmm long while since I'd RTFFAQ myself, better
have a peep". Shock/horror; couldn't find "UnicodeEncodeError" -- why
not? See below:

FAQ: What does 'UnicodeError: ASCII [decoding,encoding] error: ordinal
not in range(128)' mean?

Python:

Python 2.2.3 (#42, May 30 2003, 18:12:08) [MSC 32 bit (Intel)] on win32
| >>> str(u'\xff')
UnicodeError: ASCII encoding error: ordinal not in range(128)

Python 2.3.5 (#62, Feb 8 2005, 16:23:02) [MSC v.1200 32 bit (Intel)]
on win32
| >>> str(u'\xff')
UnicodeEncodeError: 'ascii' codec can't encode character u'\xff' in
position 0:
ordinal not in range(128)

=======

P.S. Great job on the wiki, and yes a search facility a tad smarter
than browser Ctrl-F would be a very good idea!

Cheers,
John
 
F

Fredrik Lundh

John said:
P.S. Great job on the wiki, and yes a search facility a tad smarter
than browser Ctrl-F would be a very good idea!

the "effbot.org" version of the PyFAQ is basically just an editing and
staging area; when everyone involved gets enough spare cycles, the plan
is (or at least was) that it's going to be republished here:

http://www.python.org/doc/faq/

and thus be covered by python.org's search engine, like everything else
on that site.

(but maybe one could use google's new community search, or whatever it's
called, to set up a local search engine for the pyfaq/pyref/pytut zones.
hmm. that's one more thing on my todo list...)

</F>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,776
Messages
2,569,602
Members
45,184
Latest member
ZNOChrista

Latest Threads

Top