~ubuntu-branches/ubuntu/saucy/python2.7/saucy-updates

« back to all changes in this revision

Viewing changes to Doc/library/idle.rst

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-03-23 19:56:03 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20130323195603-ftu05fam0tvkpkro
Tags: 2.7.4~rc1-0ubuntu1
* Python 2.7.4 release candidate 1.
  - Issue #10211: Buffer objects expose the new buffer interface internally.
  - Issue #10212: cStringIO and struct.unpack support new buffer objects.
  - Issue #12098: multiprocessing on Windows now starts child processes
    using the same sys.flags as the current process.
  - Issue #8862: Fixed curses cleanup when getkey is interrputed by a signal.
  - Issue #9090: When a socket with a timeout fails with EWOULDBLOCK or
    EAGAIN, retry the select() loop instead of bailing out.
  - Issue #1285086: Get rid of the refcounting hack and speed up
    urllib.unquote().
  - Issue #17368: Fix an off-by-one error in the Python JSON decoder
    that caused a failure while decoding empty object literals when
    object_pairs_hook was specified.
  - Issue #17477: Update the bsddb module to pybsddb 5.3.0, supporting
    db-5.x, and dropping support for db-4.1 and db-4.2.
  - Issue #17192: Update the ctypes module's libffi to v3.0.13.  This
    specifically addresses a stack misalignment issue on x86 and issues on
    some more recent platforms.
  - Issue #11420: make test suite pass with -B/DONTWRITEBYTECODE set.
  - Issue #17299: Add test coverage for cPickle with file objects
    and general IO objects.
  - Issue #11963: remove human verification from test_parser and
    test_subprocess.
  - Issue #16004: Add `make touch`.
  - Issue #17047: remove doubled words in docs and docstrings
* Rework the sysconfigdata patch into something upstreamable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
154
154
it to the foreground (deiconifying it if necessary).
155
155
 
156
156
 
157
 
Debug menu (in the Python Shell window only)
158
 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
157
Debug menu
 
158
^^^^^^^^^^
 
159
 
 
160
* in the Python Shell window only
159
161
 
160
162
Go to file/line
161
 
   look around the insert point for a filename and linenumber, open the file, and
162
 
   show the line.
163
 
 
164
 
Open stack viewer
165
 
   show the stack traceback of the last exception
166
 
 
167
 
Debugger toggle
168
 
   Run commands in the shell under the debugger
169
 
 
170
 
JIT Stack viewer toggle
171
 
   Open stack viewer on traceback
 
163
   Look around the insert point for a filename and line number, open the file,
 
164
   and show the line.  Useful to view the source lines referenced in an
 
165
   exception traceback.
 
166
 
 
167
Debugger
 
168
   Run commands in the shell under the debugger.
 
169
 
 
170
Stack viewer
 
171
   Show the stack traceback of the last exception.
 
172
 
 
173
Auto-open Stack Viewer
 
174
   Open stack viewer on traceback.
172
175
 
173
176
.. index::
174
177
   single: stack viewer
175
178
   single: debugger
176
179
 
177
180
 
 
181
Edit context menu
 
182
^^^^^^^^^^^^^^^^^
 
183
 
 
184
* Right-click in Edit window (Control-click on OS X)
 
185
 
 
186
Cut
 
187
   Copy selection into system-wide clipboard; then delete selection
 
188
 
 
189
Copy
 
190
   Copy selection into system-wide clipboard
 
191
 
 
192
Paste
 
193
   Insert system-wide clipboard into window
 
194
 
 
195
Set Breakpoint
 
196
   Sets a breakpoint.  Breakpoints are only enabled when the debugger is open.
 
197
 
 
198
Clear Breakpoint
 
199
   Clears the breakpoint on that line.
 
200
 
 
201
.. index::
 
202
   single: Cut
 
203
   single: Copy
 
204
   single: Paste
 
205
   single: Set Breakpoint
 
206
   single: Clear Breakpoint
 
207
   single: breakpoints
 
208
 
 
209
 
 
210
Shell context menu
 
211
^^^^^^^^^^^^^^^^^^
 
212
 
 
213
* Right-click in Python Shell window (Control-click on OS X)
 
214
 
 
215
Cut
 
216
   Copy selection into system-wide clipboard; then delete selection
 
217
 
 
218
Copy
 
219
   Copy selection into system-wide clipboard
 
220
 
 
221
Paste
 
222
   Insert system-wide clipboard into window
 
223
 
 
224
Go to file/line
 
225
   Same as in Debug menu.
 
226
 
 
227
 
178
228
Basic editing and navigation
179
229
----------------------------
180
230