# HG changeset patch # User paulb # Date 1138658947 0 # Node ID 57d7c99df1da3f8269658d06eec90942e9cbeeb6 # Parent 6a1296cdb05a236b767a52880c2a3559bcd7bb89 [project @ 2006-01-30 22:09:05 by paulb] Introduced explicit filesystem encoding. diff -r 6a1296cdb05a -r 57d7c99df1da examples/BaseHTTPRequestHandler/CandidateApp.py --- a/examples/BaseHTTPRequestHandler/CandidateApp.py Sat Jan 28 01:25:22 2006 +0000 +++ b/examples/BaseHTTPRequestHandler/CandidateApp.py Mon Jan 30 22:09:07 2006 +0000 @@ -4,8 +4,9 @@ import Candidate # Get a simple Web site. +# NOTE: Change the filesystem encoding if appropriate. -resource = Candidate.get_site() +resource = Candidate.get_site("iso-8859-15") # Special magic incantation. diff -r 6a1296cdb05a -r 57d7c99df1da examples/CGI/CandidateApp.py --- a/examples/CGI/CandidateApp.py Sat Jan 28 01:25:22 2006 +0000 +++ b/examples/CGI/CandidateApp.py Mon Jan 30 22:09:07 2006 +0000 @@ -12,8 +12,9 @@ import Candidate # Get a simple Web site. +# NOTE: Change the filesystem encoding if appropriate. -resource = Candidate.get_site() +resource = Candidate.get_site("iso-8859-15") # Special magic incantation.