@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version :Python 3.8\n "
13
13
"Report-Msgid-Bugs-To :\n "
14
- "POT-Creation-Date :2021-02-21 16:31 +0000\n "
14
+ "POT-Creation-Date :2021-02-24 16:36 +0000\n "
15
15
"PO-Revision-Date :2020-05-30 12:04+0000\n "
16
16
"Last-Translator :tomo, 2020\n "
17
17
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -1322,6 +1322,18 @@ msgstr ""
1322
1322
1323
1323
#: ../../library/idle.rst:729
1324
1324
msgid ""
1325
+ "Sending print output from one process to a text widget in another is slower "
1326
+ "than printing to a system terminal in the same process. This has the most "
1327
+ "effect when printing multiple arguments, as the string for each argument, "
1328
+ "each separator, the newline are sent separately. For development, this is "
1329
+ "usually not a problem, but if one wants to print faster in IDLE, format and "
1330
+ "join together everything one wants displayed together and then print a "
1331
+ "single string. Both format strings and :meth:`str.join` can help combine "
1332
+ "fields and lines."
1333
+ msgstr ""
1334
+
1335
+ #: ../../library/idle.rst:738
1336
+ msgid ""
1325
1337
"IDLE's standard stream replacements are not inherited by subprocesses "
1326
1338
"created in the execution process, whether directly by user code or by "
1327
1339
"modules such as multiprocessing. If such subprocess use ``input`` from "
@@ -1330,40 +1342,40 @@ msgid ""
1330
1342
" attached to that window for input and output."
1331
1343
msgstr ""
1332
1344
1333
- #: ../../library/idle.rst:736
1345
+ #: ../../library/idle.rst:745
1334
1346
msgid ""
1335
1347
"If ``sys`` is reset by user code, such as with ``importlib.reload(sys)``, "
1336
1348
"IDLE's changes are lost and input from the keyboard and output to the screen"
1337
1349
" will not work correctly."
1338
1350
msgstr ""
1339
1351
1340
- #: ../../library/idle.rst:740
1352
+ #: ../../library/idle.rst:749
1341
1353
msgid ""
1342
1354
"When Shell has the focus, it controls the keyboard and screen. This is "
1343
1355
"normally transparent, but functions that directly access the keyboard and "
1344
1356
"screen will not work. These include system-specific functions that "
1345
1357
"determine whether a key has been pressed and if so, which."
1346
1358
msgstr ""
1347
1359
1348
- #: ../../library/idle.rst:745
1360
+ #: ../../library/idle.rst:754
1349
1361
msgid ""
1350
1362
"The IDLE code running in the execution process adds frames to the call stack"
1351
1363
" that would not be there otherwise. IDLE wraps ``sys.getrecursionlimit`` "
1352
1364
"and ``sys.setrecursionlimit`` to reduce the effect of the additional stack "
1353
1365
"frames."
1354
1366
msgstr ""
1355
1367
1356
- #: ../../library/idle.rst:750
1368
+ #: ../../library/idle.rst:759
1357
1369
msgid ""
1358
1370
"When user code raises SystemExit either directly or by calling sys.exit, "
1359
1371
"IDLE returns to a Shell prompt instead of exiting."
1360
1372
msgstr ""
1361
1373
1362
- #: ../../library/idle.rst:754
1374
+ #: ../../library/idle.rst:763
1363
1375
msgid "User output in Shell"
1364
1376
msgstr ""
1365
1377
1366
- #: ../../library/idle.rst:756
1378
+ #: ../../library/idle.rst:765
1367
1379
msgid ""
1368
1380
"When a program outputs text, the result is determined by the corresponding "
1369
1381
"output device. When IDLE executes user code, ``sys.stdout`` and "
@@ -1373,7 +1385,7 @@ msgid ""
1373
1385
"rather than production runs."
1374
1386
msgstr ""
1375
1387
1376
- #: ../../library/idle.rst:763
1388
+ #: ../../library/idle.rst:772
1377
1389
msgid ""
1378
1390
"For instance, Shell never throws away output. A program that sends "
1379
1391
"unlimited output to Shell will eventually fill memory, resulting in a memory"
@@ -1382,7 +1394,7 @@ msgid ""
1382
1394
"lines, with 300 the default."
1383
1395
msgstr ""
1384
1396
1385
- #: ../../library/idle.rst:769
1397
+ #: ../../library/idle.rst:778
1386
1398
msgid ""
1387
1399
"A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) "
1388
1400
"in the BMP (Basic Multilingual Plane) subset of Unicode. Which characters "
@@ -1396,7 +1408,7 @@ msgid ""
1396
1408
"spacing behavior.) ::"
1397
1409
msgstr ""
1398
1410
1399
- #: ../../library/idle.rst:787
1411
+ #: ../../library/idle.rst:796
1400
1412
msgid ""
1401
1413
"The ``repr`` function is used for interactive echo of expression values. It"
1402
1414
" returns an altered version of the input string in which control codes, some"
@@ -1405,13 +1417,13 @@ msgid ""
1405
1417
" regardless of how they are displayed."
1406
1418
msgstr ""
1407
1419
1408
- #: ../../library/idle.rst:793
1420
+ #: ../../library/idle.rst:802
1409
1421
msgid ""
1410
1422
"Normal and error output are generally kept separate (on separate lines) from"
1411
1423
" code input and each other. They each get different highlight colors."
1412
1424
msgstr ""
1413
1425
1414
- #: ../../library/idle.rst:796
1426
+ #: ../../library/idle.rst:805
1415
1427
msgid ""
1416
1428
"For SyntaxError tracebacks, the normal '^' marking where the error was "
1417
1429
"detected is replaced by coloring the text with an error highlight. When code"
@@ -1420,7 +1432,7 @@ msgid ""
1420
1432
"opened if necessary."
1421
1433
msgstr ""
1422
1434
1423
- #: ../../library/idle.rst:802
1435
+ #: ../../library/idle.rst:811
1424
1436
msgid ""
1425
1437
"Shell has a special facility for squeezing output lines down to a 'Squeezed "
1426
1438
"text' label. This is done automatically for output over N lines (N = 50 by "
@@ -1430,18 +1442,18 @@ msgid ""
1430
1442
"scrolling."
1431
1443
msgstr ""
1432
1444
1433
- #: ../../library/idle.rst:810
1445
+ #: ../../library/idle.rst:819
1434
1446
msgid ""
1435
1447
"Squeezed output is expanded in place by double-clicking the label. It can "
1436
1448
"also be sent to the clipboard or a separate view window by right-clicking "
1437
1449
"the label."
1438
1450
msgstr ""
1439
1451
1440
- #: ../../library/idle.rst:815
1452
+ #: ../../library/idle.rst:824
1441
1453
msgid "Developing tkinter applications"
1442
1454
msgstr ""
1443
1455
1444
- #: ../../library/idle.rst:817
1456
+ #: ../../library/idle.rst:826
1445
1457
msgid ""
1446
1458
"IDLE is intentionally different from standard Python in order to facilitate "
1447
1459
"development of tkinter programs. Enter ``import tkinter as tk; root = "
@@ -1453,7 +1465,7 @@ msgid ""
1453
1465
" visibly changes in standard Python until one enters ``root.update()``."
1454
1466
msgstr ""
1455
1467
1456
- #: ../../library/idle.rst:826
1468
+ #: ../../library/idle.rst:835
1457
1469
msgid ""
1458
1470
"Most tkinter programs run ``root.mainloop()``, which usually does not return"
1459
1471
" until the tk app is destroyed. If the program is run with ``python -i`` or"
@@ -1462,19 +1474,19 @@ msgid ""
1462
1474
"with."
1463
1475
msgstr ""
1464
1476
1465
- #: ../../library/idle.rst:832
1477
+ #: ../../library/idle.rst:841
1466
1478
msgid ""
1467
1479
"When running a tkinter program from an IDLE editor, one can comment out the "
1468
1480
"mainloop call. One then gets a shell prompt immediately and can interact "
1469
1481
"with the live application. One just has to remember to re-enable the "
1470
1482
"mainloop call when running in standard Python."
1471
1483
msgstr ""
1472
1484
1473
- #: ../../library/idle.rst:838
1485
+ #: ../../library/idle.rst:847
1474
1486
msgid "Running without a subprocess"
1475
1487
msgstr "サブプロセスを起こさずに起動する"
1476
1488
1477
- #: ../../library/idle.rst:840
1489
+ #: ../../library/idle.rst:849
1478
1490
msgid ""
1479
1491
"By default, IDLE executes user code in a separate subprocess via a socket, "
1480
1492
"which uses the internal loopback interface. This connection is not "
@@ -1484,7 +1496,7 @@ msgstr ""
1484
1496
"デフォルトでは、IDLE "
1485
1497
"でのユーザコードの実行は、内部的なループバックインターフェイスを使用する、ソケット経由の分離されたサブプロセスで行われます。この接続は外部からは見えませんし、インターネットとのデータの送受信は行われません。ファイアウォールソフトウェアの警告が発生しても、無視して構いません。"
1486
1498
1487
- #: ../../library/idle.rst:845
1499
+ #: ../../library/idle.rst:854
1488
1500
msgid ""
1489
1501
"If the attempt to make the socket connection fails, Idle will notify you. "
1490
1502
"Such failures are sometimes transient, but if persistent, the problem may be"
@@ -1493,7 +1505,7 @@ msgid ""
1493
1505
" command line switch."
1494
1506
msgstr ""
1495
1507
1496
- #: ../../library/idle.rst:851
1508
+ #: ../../library/idle.rst:860
1497
1509
msgid ""
1498
1510
"If IDLE is started with the -n command line switch it will run in a single "
1499
1511
"process and will not create the subprocess which runs the RPC Python "
@@ -1513,15 +1525,15 @@ msgstr ""
1513
1525
"しないといけませんし、変更を反映するには、すべての特定の項目 (``from foo import baz`` など) "
1514
1526
"を再インポートしないといけません。これらの理由から、可能なら常にデフォルトのサブプロセスを起こすモードで IDLE を起動するのが吉です。"
1515
1527
1516
- #: ../../library/idle.rst:866
1528
+ #: ../../library/idle.rst:875
1517
1529
msgid "Help and preferences"
1518
1530
msgstr "ヘルプとお好み設定"
1519
1531
1520
- #: ../../library/idle.rst:871
1532
+ #: ../../library/idle.rst:880
1521
1533
msgid "Help sources"
1522
1534
msgstr ""
1523
1535
1524
- #: ../../library/idle.rst:873
1536
+ #: ../../library/idle.rst:882
1525
1537
msgid ""
1526
1538
"Help menu entry\" IDLE Help\" displays a formatted html version of the IDLE "
1527
1539
"chapter of the Library Reference. The result, in a read-only tkinter text "
@@ -1531,7 +1543,7 @@ msgid ""
1531
1543
"the opened box."
1532
1544
msgstr ""
1533
1545
1534
- #: ../../library/idle.rst:881
1546
+ #: ../../library/idle.rst:890
1535
1547
msgid ""
1536
1548
"Help menu entry\" Python Docs\" opens the extensive sources of help, "
1537
1549
"including tutorials, available at ``docs.python.org/x.y``, where 'x.y' is "
@@ -1540,17 +1552,17 @@ msgid ""
1540
1552
"instead."
1541
1553
msgstr ""
1542
1554
1543
- #: ../../library/idle.rst:887
1555
+ #: ../../library/idle.rst:896
1544
1556
msgid ""
1545
1557
"Selected URLs can be added or removed from the help menu at any time using "
1546
1558
"the General tab of the Configure IDLE dialog."
1547
1559
msgstr ""
1548
1560
1549
- #: ../../library/idle.rst:893
1561
+ #: ../../library/idle.rst:902
1550
1562
msgid "Setting preferences"
1551
1563
msgstr "Setting preferences [お好み設定]"
1552
1564
1553
- #: ../../library/idle.rst:895
1565
+ #: ../../library/idle.rst:904
1554
1566
msgid ""
1555
1567
"The font preferences, highlighting, keys, and general preferences can be "
1556
1568
"changed via Configure IDLE on the Option menu. Non-default user settings are"
@@ -1559,7 +1571,7 @@ msgid ""
1559
1571
" or more of the files in ``.idlerc``."
1560
1572
msgstr ""
1561
1573
1562
- #: ../../library/idle.rst:901
1574
+ #: ../../library/idle.rst:910
1563
1575
msgid ""
1564
1576
"On the Font tab, see the text sample for the effect of font face and size on"
1565
1577
" multiple characters in multiple languages. Edit the sample to add other "
@@ -1568,30 +1580,30 @@ msgid ""
1568
1580
"the top of the sample and try changing first size and then font."
1569
1581
msgstr ""
1570
1582
1571
- #: ../../library/idle.rst:908
1583
+ #: ../../library/idle.rst:917
1572
1584
msgid ""
1573
1585
"On the Highlights and Keys tab, select a built-in or custom color theme and "
1574
1586
"key set. To use a newer built-in color theme or key set with older IDLEs, "
1575
1587
"save it as a new custom theme or key set and it well be accessible to older "
1576
1588
"IDLEs."
1577
1589
msgstr ""
1578
1590
1579
- #: ../../library/idle.rst:914
1591
+ #: ../../library/idle.rst:923
1580
1592
msgid "IDLE on macOS"
1581
1593
msgstr ""
1582
1594
1583
- #: ../../library/idle.rst:916
1595
+ #: ../../library/idle.rst:925
1584
1596
msgid ""
1585
1597
"Under System Preferences: Dock, one can set\" Prefer tabs when opening "
1586
1598
"documents\" to\" Always\" . This setting is not compatible with the "
1587
1599
"tk/tkinter GUI framework used by IDLE, and it breaks a few IDLE features."
1588
1600
msgstr ""
1589
1601
1590
- #: ../../library/idle.rst:921
1602
+ #: ../../library/idle.rst:930
1591
1603
msgid "Extensions"
1592
1604
msgstr "Extensions [拡張]"
1593
1605
1594
- #: ../../library/idle.rst:923
1606
+ #: ../../library/idle.rst:932
1595
1607
msgid ""
1596
1608
"IDLE contains an extension facility. Preferences for extensions can be "
1597
1609
"changed with the Extensions tab of the preferences dialog. See the beginning"