@@ -16,7 +16,7 @@ msgid ""
16
16
msgstr ""
17
17
"Project-Id-Version : Python 3.7\n "
18
18
"Report-Msgid-Bugs-To : \n "
19
- "POT-Creation-Date : 2019-06-19 11:40 +0900\n "
19
+ "POT-Creation-Date : 2019-07-07 11:52 +0900\n "
20
20
"PO-Revision-Date : 2017-02-16 23:14+0000\n "
21
21
"Last-Translator : tomo, 2018\n "
22
22
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -1354,22 +1354,30 @@ msgstr ""
1354
1354
1355
1355
#: ../../library/idle.rst:716
1356
1356
msgid ""
1357
+ "The IDLE code running in the execution process adds frames to the call stack"
1358
+ " that would not be there otherwise. IDLE wraps ``sys.getrecursionlimit`` "
1359
+ "and ``sys.setrecursionlimit`` to reduce the effect of the additional stack "
1360
+ "frames."
1361
+ msgstr ""
1362
+
1363
+ #: ../../library/idle.rst:720
1364
+ msgid ""
1357
1365
"If ``sys`` is reset by user code, such as with ``importlib.reload(sys)``, "
1358
1366
"IDLE's changes are lost and input from the keyboard and output to the screen"
1359
1367
" will not work correctly."
1360
1368
msgstr ""
1361
1369
1362
- #: ../../library/idle.rst:720
1370
+ #: ../../library/idle.rst:724
1363
1371
msgid ""
1364
1372
"When user code raises SystemExit either directly or by calling sys.exit, "
1365
1373
"IDLE returns to a Shell prompt instead of exiting."
1366
1374
msgstr ""
1367
1375
1368
- #: ../../library/idle.rst:724
1376
+ #: ../../library/idle.rst:728
1369
1377
msgid "User output in Shell"
1370
1378
msgstr ""
1371
1379
1372
- #: ../../library/idle.rst:726
1380
+ #: ../../library/idle.rst:730
1373
1381
msgid ""
1374
1382
"When a program outputs text, the result is determined by the corresponding "
1375
1383
"output device. When IDLE executes user code, ``sys.stdout`` and "
@@ -1379,7 +1387,7 @@ msgid ""
1379
1387
"rather than production runs."
1380
1388
msgstr ""
1381
1389
1382
- #: ../../library/idle.rst:733
1390
+ #: ../../library/idle.rst:737
1383
1391
msgid ""
1384
1392
"For instance, Shell never throws away output. A program that sends "
1385
1393
"unlimited output to Shell will eventually fill memory, resulting in a memory"
@@ -1388,7 +1396,7 @@ msgid ""
1388
1396
"lines, with 300 the default."
1389
1397
msgstr ""
1390
1398
1391
- #: ../../library/idle.rst:739
1399
+ #: ../../library/idle.rst:743
1392
1400
msgid ""
1393
1401
"A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) "
1394
1402
"in the BMP (Basic Multilingual Plane) subset of Unicode. Which characters "
@@ -1402,7 +1410,7 @@ msgid ""
1402
1410
"spacing behavior.) ::"
1403
1411
msgstr ""
1404
1412
1405
- #: ../../library/idle.rst:757
1413
+ #: ../../library/idle.rst:761
1406
1414
msgid ""
1407
1415
"The ``repr`` function is used for interactive echo of expression values. It"
1408
1416
" returns an altered version of the input string in which control codes, some"
@@ -1411,13 +1419,13 @@ msgid ""
1411
1419
" regardless of how they are displayed."
1412
1420
msgstr ""
1413
1421
1414
- #: ../../library/idle.rst:763
1422
+ #: ../../library/idle.rst:767
1415
1423
msgid ""
1416
1424
"Normal and error output are generally kept separate (on separate lines) from"
1417
1425
" code input and each other. They each get different highlight colors."
1418
1426
msgstr ""
1419
1427
1420
- #: ../../library/idle.rst:766
1428
+ #: ../../library/idle.rst:770
1421
1429
msgid ""
1422
1430
"For SyntaxError tracebacks, the normal '^' marking where the error was "
1423
1431
"detected is replaced by coloring the text with an error highlight. When code"
@@ -1426,7 +1434,7 @@ msgid ""
1426
1434
"opened if necessary."
1427
1435
msgstr ""
1428
1436
1429
- #: ../../library/idle.rst:772
1437
+ #: ../../library/idle.rst:776
1430
1438
msgid ""
1431
1439
"Shell has a special facility for squeezing output lines down to a 'Squeezed "
1432
1440
"text' label. This is done automatically for output over N lines (N = 50 by "
@@ -1436,18 +1444,18 @@ msgid ""
1436
1444
"scrolling."
1437
1445
msgstr ""
1438
1446
1439
- #: ../../library/idle.rst:780
1447
+ #: ../../library/idle.rst:784
1440
1448
msgid ""
1441
1449
"Squeezed output is expanded in place by double-clicking the label. It can "
1442
1450
"also be sent to the clipboard or a separate view window by right-clicking "
1443
1451
"the label."
1444
1452
msgstr ""
1445
1453
1446
- #: ../../library/idle.rst:785
1454
+ #: ../../library/idle.rst:789
1447
1455
msgid "Developing tkinter applications"
1448
1456
msgstr ""
1449
1457
1450
- #: ../../library/idle.rst:787
1458
+ #: ../../library/idle.rst:791
1451
1459
msgid ""
1452
1460
"IDLE is intentionally different from standard Python in order to facilitate "
1453
1461
"development of tkinter programs. Enter ``import tkinter as tk; root = "
@@ -1459,7 +1467,7 @@ msgid ""
1459
1467
" visibly changes in standard Python until one enters ``root.update()``."
1460
1468
msgstr ""
1461
1469
1462
- #: ../../library/idle.rst:796
1470
+ #: ../../library/idle.rst:800
1463
1471
msgid ""
1464
1472
"Most tkinter programs run ``root.mainloop()``, which usually does not return"
1465
1473
" until the tk app is destroyed. If the program is run with ``python -i`` or"
@@ -1468,19 +1476,19 @@ msgid ""
1468
1476
"with."
1469
1477
msgstr ""
1470
1478
1471
- #: ../../library/idle.rst:802
1479
+ #: ../../library/idle.rst:806
1472
1480
msgid ""
1473
1481
"When running a tkinter program from an IDLE editor, one can comment out the "
1474
1482
"mainloop call. One then gets a shell prompt immediately and can interact "
1475
1483
"with the live application. One just has to remember to re-enable the "
1476
1484
"mainloop call when running in standard Python."
1477
1485
msgstr ""
1478
1486
1479
- #: ../../library/idle.rst:808
1487
+ #: ../../library/idle.rst:812
1480
1488
msgid "Running without a subprocess"
1481
1489
msgstr "サブプロセスを起こさずに起動する"
1482
1490
1483
- #: ../../library/idle.rst:810
1491
+ #: ../../library/idle.rst:814
1484
1492
msgid ""
1485
1493
"By default, IDLE executes user code in a separate subprocess via a socket, "
1486
1494
"which uses the internal loopback interface. This connection is not "
@@ -1490,7 +1498,7 @@ msgstr ""
1490
1498
"デフォルトでは、IDLE "
1491
1499
"でのユーザコードの実行は、内部的なループバックインターフェイスを使用する、ソケット経由の分離されたサブプロセスで行われます。この接続は外部からは見えませんし、インターネットとのデータの送受信は行われません。ファイアウォールソフトウェアの警告が発生しても、無視して構いません。"
1492
1500
1493
- #: ../../library/idle.rst:815
1501
+ #: ../../library/idle.rst:819
1494
1502
msgid ""
1495
1503
"If the attempt to make the socket connection fails, Idle will notify you. "
1496
1504
"Such failures are sometimes transient, but if persistent, the problem may be"
@@ -1499,7 +1507,7 @@ msgid ""
1499
1507
" command line switch."
1500
1508
msgstr ""
1501
1509
1502
- #: ../../library/idle.rst:821
1510
+ #: ../../library/idle.rst:825
1503
1511
msgid ""
1504
1512
"If IDLE is started with the -n command line switch it will run in a single "
1505
1513
"process and will not create the subprocess which runs the RPC Python "
@@ -1519,15 +1527,15 @@ msgstr ""
1519
1527
"しないといけませんし、変更を反映するには、すべての特定の項目 (``from foo import baz`` など) "
1520
1528
"を再インポートしないといけません。これらの理由から、可能なら常にデフォルトのサブプロセスを起こすモードで IDLE を起動するのが吉です。"
1521
1529
1522
- #: ../../library/idle.rst:836
1530
+ #: ../../library/idle.rst:840
1523
1531
msgid "Help and preferences"
1524
1532
msgstr "ヘルプとお好み設定"
1525
1533
1526
- #: ../../library/idle.rst:841
1534
+ #: ../../library/idle.rst:845
1527
1535
msgid "Help sources"
1528
1536
msgstr ""
1529
1537
1530
- #: ../../library/idle.rst:843
1538
+ #: ../../library/idle.rst:847
1531
1539
msgid ""
1532
1540
"Help menu entry \" IDLE Help\" displays a formatted html version of the IDLE "
1533
1541
"chapter of the Library Reference. The result, in a read-only tkinter text "
@@ -1537,25 +1545,25 @@ msgid ""
1537
1545
"the opened box."
1538
1546
msgstr ""
1539
1547
1540
- #: ../../library/idle.rst:851
1548
+ #: ../../library/idle.rst:855
1541
1549
msgid ""
1542
1550
"Help menu entry \" Python Docs\" opens the extensive sources of help, "
1543
1551
"including tutorials, available at docs.python.org/x.y, where 'x.y' is the "
1544
1552
"currently running Python version. If your system has an off-line copy of "
1545
1553
"the docs (this may be an installation option), that will be opened instead."
1546
1554
msgstr ""
1547
1555
1548
- #: ../../library/idle.rst:857
1556
+ #: ../../library/idle.rst:861
1549
1557
msgid ""
1550
1558
"Selected URLs can be added or removed from the help menu at any time using "
1551
1559
"the General tab of the Configure IDLE dialog ."
1552
1560
msgstr ""
1553
1561
1554
- #: ../../library/idle.rst:863
1562
+ #: ../../library/idle.rst:867
1555
1563
msgid "Setting preferences"
1556
1564
msgstr "Setting preferences [お好み設定]"
1557
1565
1558
- #: ../../library/idle.rst:865
1566
+ #: ../../library/idle.rst:869
1559
1567
msgid ""
1560
1568
"The font preferences, highlighting, keys, and general preferences can be "
1561
1569
"changed via Configure IDLE on the Option menu. Non-default user settings are"
@@ -1564,7 +1572,7 @@ msgid ""
1564
1572
"more of the files in .idlerc."
1565
1573
msgstr ""
1566
1574
1567
- #: ../../library/idle.rst:871
1575
+ #: ../../library/idle.rst:875
1568
1576
msgid ""
1569
1577
"On the Font tab, see the text sample for the effect of font face and size on"
1570
1578
" multiple characters in multiple languages. Edit the sample to add other "
@@ -1573,30 +1581,30 @@ msgid ""
1573
1581
"the top of the sample and try changing first size and then font."
1574
1582
msgstr ""
1575
1583
1576
- #: ../../library/idle.rst:878
1584
+ #: ../../library/idle.rst:882
1577
1585
msgid ""
1578
1586
"On the Highlights and Keys tab, select a built-in or custom color theme and "
1579
1587
"key set. To use a newer built-in color theme or key set with older IDLEs, "
1580
1588
"save it as a new custom theme or key set and it well be accessible to older "
1581
1589
"IDLEs."
1582
1590
msgstr ""
1583
1591
1584
- #: ../../library/idle.rst:884
1592
+ #: ../../library/idle.rst:888
1585
1593
msgid "IDLE on macOS"
1586
1594
msgstr ""
1587
1595
1588
- #: ../../library/idle.rst:886
1596
+ #: ../../library/idle.rst:890
1589
1597
msgid ""
1590
1598
"Under System Preferences: Dock, one can set \" Prefer tabs when opening "
1591
1599
"documents\" to \" Always\" . This setting is not compatible with the "
1592
1600
"tk/tkinter GUI framework used by IDLE, and it breaks a few IDLE features."
1593
1601
msgstr ""
1594
1602
1595
- #: ../../library/idle.rst:891
1603
+ #: ../../library/idle.rst:895
1596
1604
msgid "Extensions"
1597
1605
msgstr "Extensions [拡張]"
1598
1606
1599
- #: ../../library/idle.rst:893
1607
+ #: ../../library/idle.rst:897
1600
1608
msgid ""
1601
1609
"IDLE contains an extension facility. Preferences for extensions can be "
1602
1610
"changed with the Extensions tab of the preferences dialog. See the beginning"
0 commit comments