Show More
@@ -74,6 +74,7 At your system command line, type 'ipython -h' to see the command line | |||
|
74 | 74 | options available. This document only describes interactive features. |
|
75 | 75 | |
|
76 | 76 | MAIN FEATURES |
|
77 | ------------- | |
|
77 | 78 | |
|
78 | 79 | * Access to the standard Python help. As of Python 2.1, a help system is |
|
79 | 80 | available with access to object docstrings and the Python manuals. Simply |
@@ -190,50 +191,66 MAIN FEATURES | |||
|
190 | 191 | * Auto-parentheses and auto-quotes (adapted from Nathan Gray's LazyPython) |
|
191 | 192 | |
|
192 | 193 |
|
|
194 | ||
|
193 | 195 |
|
|
194 |
|
|
|
196 | this (notice the commas between the arguments):: | |
|
197 | ||
|
195 | 198 |
|
|
196 | and the input will be translated to this: | |
|
197 | ------> callable_ob(arg1, arg2, arg3) | |
|
199 | ||
|
200 | and the input will be translated to this:: | |
|
201 | ||
|
202 | callable_ob(arg1, arg2, arg3) | |
|
203 | ||
|
198 | 204 |
|
|
199 | 205 |
|
|
200 | 206 |
|
|
201 | 207 |
|
|
202 | 208 | |
|
203 | 209 |
|
|
204 |
|
|
|
210 | of a line. For example:: | |
|
211 | ||
|
205 | 212 |
|
|
213 | ||
|
206 | 214 |
|
|
207 |
|
|
|
215 | won't work:: | |
|
216 | ||
|
208 | 217 |
|
|
209 | 218 | |
|
210 | 219 |
|
|
211 | 220 |
|
|
212 | 221 |
|
|
213 |
|
|
|
222 | parenthesis will confuse IPython):: | |
|
223 | ||
|
214 | 224 |
|
|
215 | but this will work: | |
|
225 | ||
|
226 | but this will work:: | |
|
227 | ||
|
216 | 228 |
|
|
217 | 229 |
|
|
218 | 230 |
|
|
219 | 231 | |
|
220 | 232 |
|
|
221 |
|
|
|
233 | displaying the new command line preceded by -->. e.g.:: | |
|
234 | ||
|
222 | 235 |
|
|
223 | 236 |
|
|
224 | 237 | |
|
225 | 238 |
|
|
239 | ||
|
226 | 240 |
|
|
227 |
|
|
|
241 | the first character of a line. For example:: | |
|
242 | ||
|
228 | 243 |
|
|
229 | 244 | |
|
230 | 245 |
|
|
231 |
|
|
|
246 | string (while ',' splits on whitespace):: | |
|
247 | ||
|
232 | 248 |
|
|
233 | 249 |
|
|
234 | 250 | |
|
235 | 251 |
|
|
236 |
|
|
|
252 | won't work:: | |
|
253 | ||
|
237 | 254 |
|
|
238 | 255 | """ |
|
239 | 256 |
General Comments 0
You need to be logged in to leave comments.
Login now