Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
b82c795a
Commit
b82c795a
authored
Mar 19, 1997
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added note about adding \n to source for exec and compile.
parent
e5700f3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
Misc/FAQ
Misc/FAQ
+7
-0
No files found.
Misc/FAQ
View file @
b82c795a
...
...
@@ -181,6 +181,7 @@ Here's an overview of the questions per chapter:
4.40. Q. I try to use __spam and I get an error about _SomeClassName__spam.
4.41. Q. How do I delete a file? And other file questions.
4.42. Q. How to modify urllib or httplib to support HTTP/1.1?
4.43. Q. Unexplicable syntax errors in compile() or exec.
5. Extending Python
5.1. Q. Can I create my own functions in C?
...
...
@@ -1700,6 +1701,12 @@ A. Apply the following patch to httplib.py:
---
> replypat = regsub.gsub('\\.', '\\\\.', 'HTTP/1.[0-9]+') + \
4.43. Q. Unexplicable syntax errors in compile() or exec.
A. When a statement suite (as opposed to an expression) is compiled by
compile(), exec or execfile(), it *must* end in a newline. In some
cases, when the source ends in an indented block it appears that at
least two newlines are required.
5. Extending Python
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment