1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309
|
Python-mode commands
====================
;;; Commentary:
---------------
;;; Code
--------
;;; Customization
-----------------
py-smart-operator-check
-----------------------
Check, if smart-operator-mode is loaded resp. available.
Give some hints, if not.
py-autopair-check
-----------------
Check, if autopair-mode is available.
Give some hints, if not.
(defun p
--------
;;; Constants
-------------
;;; Macro definitions
---------------------
;;; Toggle
----------
toggle-py-nil-docstring-style
-----------------------------
If nil docstring-style should be on or off.
Returns value of `py-docstring-style' switched to.
To set permanently, customize this variable
py-nil-docstring-style-on
-------------------------
Make sure, nil docstring-style' is on.
Returns value of `py-docstring-style'.
To set permanently, customize this variable
py-nil-docstring-style-off
--------------------------
Make sure, nil docstring-style is off.
Returns value of `py-docstring-style'.
To set permanently, customize this variable
toggle-py-onetwo-docstring-style
--------------------------------
If onetwo docstring-style should be on or off.
Returns value of `py-docstring-style' switched to.
To set permanently, customize this variable
py-onetwo-docstring-style-on
----------------------------
Make sure, onetwo docstring-style' is on.
Returns value of `py-docstring-style'.
To set permanently, customize this variable
py-onetwo-docstring-style-off
-----------------------------
Make sure, onetwo docstring-style is off.
Returns value of `py-docstring-style'.
To set permanently, customize this variable
toggle-py-pep-257-docstring-style
---------------------------------
If pep-257 docstring-style should be on or off.
Returns value of `py-pep-257-docstring-style' switched to.
py-pep-257-docstring-style-on
-----------------------------
Make sure, pep-257 docstring-style' is on.
Returns value of `py-pep-257-docstring-style'.
py-pep-257-docstring-style-off
------------------------------
Make sure, pep-257 docstring-style is off.
Returns value of `py-pep-257-docstring-style'.
toggle-py-pep-257-nn-docstring-style
------------------------------------
If pep-257-nn docstring-style should be on or off.
Returns value of `py-pep-257-nn-docstring-style' switched to.
py-pep-257-nn-docstring-style-on
--------------------------------
Make sure, pep-257-nn docstring-style' is on.
Returns value of `py-docstring-style'.
To set permanently, customize this variable
py-pep-257-nn-docstring-style-off
---------------------------------
Make sure, pep-257-nn docstring-style is off.
Returns value of `py-docstring-style'.
To set permanently, customize this variable
toggle-py-symmetric-docstring-style
-----------------------------------
If symmetric docstring-style should be on or off.
Returns value of `py-docstring-style' switched to.
To set permanently, customize this variable
py-symmetric-docstring-style-on
-------------------------------
Make sure, symmetric docstring-style' is on.
Returns value of `py-docstring-style'.
To set permanently, customize this variable
py-symmetric-docstring-style-off
--------------------------------
Make sure, symmetric docstring-style is off.
Returns value of `py-docstring-style'.
To set permanently, customize this variable
toggle-py-django-docstring-style
--------------------------------
If django docstring-style should be on or off.
Returns value of `py-docstring-style' switched to.
To set permanently, customize this variable
py-django-docstring-style-on
----------------------------
Make sure, django docstring-style' is on.
Returns value of `py-docstring-style'.
To set permanently, customize this variable
py-django-docstring-style-off
-----------------------------
Make sure, django docstring-style is off.
Returns value of `py-docstring-style'.
To set permanently, customize this variable
toggle-py-underscore-word-syntax-p
----------------------------------
If `py-underscore-word-syntax-p' should be on or off.
Returns value of `py-underscore-word-syntax-p' switched to.
py-underscore-word-syntax-p-on
------------------------------
Make sure, py-underscore-word-syntax-p' is on.
Returns value of `py-underscore-word-syntax-p'.
py-underscore-word-syntax-p-off
-------------------------------
Make sure, `py-underscore-word-syntax-p' is off.
Returns value of `py-underscore-word-syntax-p'.
toggle-py-electric-comment-p
----------------------------
If `py-electric-comment-p' should be on or off.
Returns value of `py-electric-comment-p' switched to.
py-electric-comment-p-on
------------------------
Make sure, py-electric-comment-p' is on.
Returns value of `py-electric-comment-p'.
py-electric-comment-p-off
-------------------------
Make sure, `py-electric-comment-p' is off.
Returns value of `py-electric-comment-p'.
toggle-force-local-shell
------------------------
If locally indicated Python shell should be taken and
enforced upon sessions execute commands.
Toggles boolean `py-force-local-shell-p' along with `py-force-py-shell-name-p'
Returns value of `toggle-force-local-shell' switched to.
When on, kind of an option 'follow', local shell sets `py-shell-name', enforces its use afterwards.
See also commands
`py-force-local-shell-on'
`py-force-local-shell-off'
py-force-local-shell-on
-----------------------
Make sure, `py-py-force-local-shell-p' is on.
Returns value of `py-force-local-shell-p'.
Kind of an option 'follow', local shell sets `py-shell-name', enforces its use afterwards
py-force-local-shell-off
------------------------
Restore `py-shell-name' default value and `behaviour'.
toggle-force-py-shell-name-p
----------------------------
If customized default `py-shell-name' should be enforced upon execution.
If `py-force-py-shell-name-p' should be on or off.
Returns value of `py-force-py-shell-name-p' switched to.
See also commands
force-py-shell-name-p-on
force-py-shell-name-p-off
Caveat: Completion might not work that way.
force-py-shell-name-p-on
------------------------
Switches `py-force-py-shell-name-p' on.
Customized default `py-shell-name' will be enforced upon execution.
Returns value of `py-force-py-shell-name-p'.
Caveat: Completion might not work that way.
force-py-shell-name-p-off
-------------------------
Make sure, `py-force-py-shell-name-p' is off.
Function to use by executes will be guessed from environment.
Returns value of `py-force-py-shell-name-p'.
py-toggle-indent-tabs-mode
--------------------------
Toggle `indent-tabs-mode'.
Returns value of `indent-tabs-mode' switched to.
py-indent-tabs-mode-on
----------------------
Switch `indent-tabs-mode' on.
py-indent-tabs-mode-off
-----------------------
Switch `indent-tabs-mode' on.
toggle-py-jump-on-exception
---------------------------
If `py-jump-on-exception' should be on or off.
Returns value of `py-jump-on-exception' switched to.
py-jump-on-exception-on
-----------------------
Make sure, py-jump-on-exception' is on.
Returns value of `py-jump-on-exception'.
py-jump-on-exception-off
------------------------
Make sure, `py-jump-on-exception' is off.
Returns value of `py-jump-on-exception'.
toggle-python-mode-v5-behavior-p
--------------------------------
If `python-mode-v5-behavior-p' should be on or off.
Returns value of `python-mode-v5-behavior-p' switched to.
python-mode-v5-behavior-p-on
----------------------------
Make sure, `python-mode-v5-behavior-p' is on.
Returns value of `python-mode-v5-behavior-p'.
python-mode-v5-behavior-p-off
-----------------------------
Make sure, `python-mode-v5-behavior-p' is off.
Returns value of `python-mode-v5-behavior-p'.
py-toggle-shell-switch-buffers-on-execute
-----------------------------------------
If `py-switch-buffers-on-execute-p' should be on or off.
Returns value of `py-switch-buffers-on-execute-p' switched to.
py-shell-switch-buffers-on-execute-on
-------------------------------------
Make sure, `py-switch-buffers-on-execute-p' is on.
Returns value of `py-switch-buffers-on-execute-p'.
py-shell-switch-buffers-on-execute-off
--------------------------------------
Make sure, `py-switch-buffers-on-execute-p' is off.
Returns value of `py-switch-buffers-on-execute-p'.
py-toggle-split-windows-on-execute
----------------------------------
If `py-split-windows-on-execute-p' should be on or off.
Returns value of `py-split-windows-on-execute-p' switched to.
py-split-windows-on-execute-on
------------------------------
Make sure, `py-split-windows-on-execute-p' is on.
Returns value of `py-split-windows-on-execute-p'.
py-split-windows-on-execute-off
-------------------------------
Make sure, `py-split-windows-on-execute-p' is off.
Returns value of `py-split-windows-on-execute-p'.
py-toggle-highlight-indentation
-------------------------------
If `highlight-indentation-p' should be on or off.
py-highlight-indentation-off
----------------------------
If `highlight-indentation-p' should be on or off.
py-highlight-indentation-on
---------------------------
If `highlight-indentation-p' should be on or off.
py-toggle-smart-indentation
---------------------------
If `py-smart-indentation' should be on or off.
Returns value of `py-smart-indentation' switched to.
py-smart-indentation-on
-----------------------
Make sure, `py-smart-indentation' is on.
Returns value of `py-smart-indentation'.
py-smart-indentation-off
------------------------
Make sure, `py-smart-indentation' is off.
Returns value of `py-smart-indentation'.
toggle-py-smart-operator-mode-p
-------------------------------
If `py-smart-operator-mode-p' should be on or off.
Returns value of `py-smart-operator-mode-p' switched to.
py-smart-operator-mode-p-on
---------------------------
Make sure, py-smart-operator-mode-p' is on.
Returns value of `py-smart-operator-mode-p'.
py-smart-operator-mode-p-off
----------------------------
Make sure, py-smart-operator-mode-p' is off.
Returns value of `py-smart-operator-mode-p'.
toggle-py-use-current-dir-when-execute-p
----------------------------------------
If `py-use-current-dir-when-execute-p' should be on or off.
Returns value of `py-use-current-dir-when-execute-p' switched to.
py-use-current-dir-when-execute-p-on
------------------------------------
Make sure, py-use-current-dir-when-execute-p' is on.
Returns value of `py-use-current-dir-when-execute-p'.
py-use-current-dir-when-execute-p-off
-------------------------------------
Make sure, `py-use-current-dir-when-execute-p' is off.
Returns value of `py-use-current-dir-when-execute-p'.
py-toggle-autopair-mode
-----------------------
If `py-autopair-mode' should be on or off.
Returns value of `py-autopair-mode' switched to.
py-autopair-mode-on
-------------------
Make sure, py-autopair-mode' is on.
Returns value of `py-autopair-mode'.
py-autopair-mode-off
--------------------
Make sure, py-autopair-mode' is off.
Returns value of `py-autopair-mode'.
toggle-py-switch-buffers-on-execute-p
-------------------------------------
If `py-switch-buffers-on-execute-p' should be on or off.
Returns value of `py-switch-buffers-on-execute-p' switched to.
py-switch-buffers-on-execute-p-on
---------------------------------
Make sure, `py-py-switch-buffers-on-execute-p' is on.
Returns value of `py-switch-buffers-on-execute-p'.
py-switch-buffers-on-execute-p-off
----------------------------------
Make sure, `py-switch-buffers-on-execute-p' is off.
Returns value of `py-switch-buffers-on-execute-p'.
toggle-py-split-windows-on-execute-p
------------------------------------
If `py-split-windows-on-execute-p' should be on or off.
Returns value of `py-split-windows-on-execute-p' switched to.
py-split-windows-on-execute-p-on
--------------------------------
Make sure, `py-py-split-windows-on-execute-p' is on.
Returns value of `py-split-windows-on-execute-p'.
py-split-windows-on-execute-p-off
---------------------------------
Make sure, `py-split-windows-on-execute-p' is off.
Returns value of `py-split-windows-on-execute-p'.
py-toggle-sexp-function
-----------------------
Opens customization
py-shell-get-process
--------------------
Get appropriate Python process for current buffer and return it.
py-shell-send-string
--------------------
Send STRING to inferior Python PROCESS.
When `py-verbose-p' and MSG is non-nil messages the first line of STRING.
py-shell-send-file
------------------
Send FILE-NAME to inferior Python PROCESS.
If TEMP-FILE-NAME is passed then that file is used for processing
instead, while internally the shell will continue to use
FILE-NAME.
py-switch-to-shell
------------------
Switch to inferior Python process buffer.
python-shell-completion-complete-or-indent
------------------------------------------
Complete or indent depending on the context.
If content before pointer is all whitespace indent. If not try
to complete.
;;; Helper commands
-------------------
py-guess-pdb-path
-----------------
If py-pdb-path isn't set, find location of pdb.py.
(defun s
--------
py-forward-line
---------------
Goes to end of line after forward move.
Travels right-margin comments.
py-go-to-beginning-of-comment
-----------------------------
Go to the beginning of current line's comment, if any.
From a programm use `py-beginning-of-comment' instead
py-leave-comment-or-string-backward
-----------------------------------
If inside a comment or string, leave it backward.
py-beginning-of-list-pps
------------------------
Go to the beginning of a list.
Optional ARG indicates a start-position for `parse-partial-sexp'.
Return beginning position, nil if not inside.
empty-line-p
------------
Returns t if cursor is at an line with nothing but whitespace-characters, nil otherwise.
py-count-lines
--------------
Count lines in accessible part until current line.
See http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7115
py-send-region
--------------
Send the region to the inferior Python process.
py-send-region-and-go
---------------------
Send the region to the inferior Python process.
Then switch to the process buffer.
python-send-string
------------------
Evaluate STRING in inferior Python process.
py-switch-to-python
-------------------
Switch to the Python process buffer, maybe starting new process.
With prefix arg, position cursor at end of buffer.
py-proc
-------
Return the current Python process.
Start a new process if necessary.
;;; Keymap and syntax
---------------------
py-insert-default-shebang
-------------------------
Insert in buffer shebang of installed default Python.
py-electric-comment
-------------------
Insert a comment. If starting a comment, indent accordingly.
If a numeric argument ARG is provided, that many "#" are inserted
non-electrically.
With C-u "#" electric behavior is inhibited inside a string or comment.
py-electric-colon
-----------------
Insert a colon and indent accordingly.
If a numeric argument ARG is provided, that many colons are inserted
non-electrically.
Electric behavior is inhibited inside a string or
comment or by universal prefix C-u.
Switched by `py-electric-colon-active-p', default is nil
See also `py-electric-colon-greedy-p'
py-empty-out-list-backward
--------------------------
Deletes all elements from list before point.
py-electric-backspace
---------------------
Delete preceding character or level of indentation.
With ARG do that ARG times.
Returns column reached.
py-electric-delete
------------------
Delete following character or levels of whitespace.
With ARG do that ARG times.
py-indent-line-outmost
----------------------
Indent the current line to the outmost reasonable indent.
With optional C-u an indent with length `py-indent-offset' is inserted unconditionally
py-indent-line
--------------
Indent the current line according to Python rules.
When called interactivly with C-u, ignore dedenting rules for block closing statements
(e.g. return, raise, break, continue, pass)
An optional C-u followed by a numeric argument neither 1 nor 4 will switch off `py-smart-indentation' for this execution. This permits to correct allowed but unwanted indents.
Similar to `toggle-py-smart-indentation' resp. `py-smart-indentation-off' followed by TAB.
This function is normally used by `indent-line-function' resp.
TAB.
Returns current indentation
When `py-tab-shifts-region-p' is `t', not just the current line,
but the region is shiftet that way.
If `py-tab-indents-region-p' is `t' and first TAB doesn't shift
--as indent is at outmost reasonable--, indent-region is called.
py-newline-and-indent
---------------------
Add a newline and indent to outmost reasonable indent.
When indent is set back manually, this is honoured in following lines.
py-newline-and-dedent
---------------------
Add a newline and indent to one level below current.
Returns column.
py-indent-tabs-mode
-------------------
With positive ARG switch `indent-tabs-mode' on.
With negative ARG switch `indent-tabs-mode' off.
Returns value of `indent-tabs-mode' switched to.
py-guess-indent-forward
-----------------------
Called when moving to end of a form and `py-smart-indentation' is on.
py-guess-indent-offset
----------------------
Guess `py-indent-offset'.
Set local value of `py-indent-offset', return it
Might change local value of `py-indent-offset' only when called
downwards from beginning of block followed by a statement. Otherwise default-value is returned.
py-narrow-to-defun
------------------
Make text outside current def or class invisible.
The defun visible is the one that contains point or follows point.
;;; Shifting
------------
py-shift-left
-------------
Dedent region according to `py-indent-offset' by COUNT times.
If no region is active, current line is dedented.
Returns indentation reached.
py-shift-right
--------------
Indent region according to `py-indent-offset' by COUNT times.
If no region is active, current line is indented.
Returns indentation reached.
py-shift-paragraph-right
------------------------
Indent paragraph by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-paragraph-left
-----------------------
Dedent paragraph by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-block-right
--------------------
Indent block by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-block-left
-------------------
Dedent block by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-minor-block-left
-------------------------
Dedent minor-block by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
A minor block is started by a `for', `if', `try' or `with'.
py-shift-minor-block-right
--------------------------
Indent minor-block by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
A minor block is started by a `for', `if', `try' or `with'.
py-shift-clause-right
---------------------
Indent clause by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-clause-left
--------------------
Dedent clause by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-block-or-clause-right
------------------------------
Indent block-or-clause by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-block-or-clause-left
-----------------------------
Dedent block-or-clause by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-def-right
------------------
Indent def by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-def-left
-----------------
Dedent def by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-class-right
--------------------
Indent class by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-class-left
-------------------
Dedent class by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-def-or-class-right
---------------------------
Indent def-or-class by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-def-or-class-left
--------------------------
Dedent def-or-class by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-line-right
-------------------
Indent line by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-line-left
------------------
Dedent line by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-statement-right
------------------------
Indent statement by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-shift-statement-left
-----------------------
Dedent statement by COUNT spaces.
COUNT defaults to `py-indent-offset',
use [universal-argument] to specify a different value.
Returns outmost indentation reached.
py-indent-and-forward
---------------------
Indent current line according to mode, move one line forward.
py-indent-region
----------------
Reindent a region of Python code.
With optional INDENT-OFFSET specify a different value than `py-indent-offset' at place.
Guesses the outmost reasonable indent
Returns and keeps relative position
;;; Positions
-------------
py-beginning-of-paragraph-position
----------------------------------
Returns beginning of paragraph position.
py-end-of-paragraph-position
----------------------------
Returns end of paragraph position.
py-beginning-of-block-position
------------------------------
Returns beginning of block position.
py-end-of-block-position
------------------------
Returns end of block position.
py-beginning-of-minor-block-position
------------------------------------
Returns beginning of minor-block position.
py-end-of-minor-block-position
------------------------------
Returns end of minor-block position.
py-beginning-of-clause-position
-------------------------------
Returns beginning of clause position.
py-end-of-clause-position
-------------------------
Returns end of clause position.
py-beginning-of-block-or-clause-position
----------------------------------------
Returns beginning of block-or-clause position.
py-end-of-block-or-clause-position
----------------------------------
Returns end of block-or-clause position.
py-beginning-of-def-position
----------------------------
Returns beginning of def position.
py-end-of-def-position
----------------------
Returns end of def position.
py-beginning-of-class-position
------------------------------
Returns beginning of class position.
py-end-of-class-position
------------------------
Returns end of class position.
py-beginning-of-def-or-class-position
-------------------------------------
Returns beginning of def-or-class position.
py-end-of-def-or-class-position
-------------------------------
Returns end of def-or-class position.
py-beginning-of-line-position
-----------------------------
Returns beginning of line position.
py-end-of-line-position
-----------------------
Returns end of line position.
py-beginning-of-statement-position
----------------------------------
Returns beginning of statement position.
py-end-of-statement-position
----------------------------
Returns end of statement position.
py-beginning-of-comment-position
--------------------------------
Returns beginning of comment position.
py-end-of-comment-position
--------------------------
Returns end of comment position.
py-beginning-of-top-level-position
----------------------------------
Returns beginning of top-level position.
py-end-of-top-level-position
----------------------------
Returns end of top-level position.
py-beginning-of-partial-expression-position
-------------------------------------------
Returns beginning of partial-expression position.
py-end-of-partial-expression-position
-------------------------------------
Returns end of partial-expression position.
py-beginning-of-expression-position
-----------------------------------
Returns beginning of expression position.
py-end-of-expression-position
-----------------------------
Returns end of expression position.
;;; some more Positions not generated by
----------------------------------------
py-list-beginning-position
--------------------------
Return lists beginning position, nil if not inside.
Optional ARG indicates a start-position for `parse-partial-sexp'.
py-end-of-list-position
-----------------------
Return end position, nil if not inside.
Optional ARG indicates a start-position for `parse-partial-sexp'.
py-in-triplequoted-string-p
---------------------------
Returns character address of start tqs-string, nil if not inside.
py-in-string-p
--------------
Returns character address of start of string, nil if not inside.
py-in-statement-p
-----------------
Returns list of beginning and end-position if inside.
Result is useful for booleans too: (when (py-in-statement-p)...)
will work.
;;; Bounds
----------
py-bounds-of-statement
----------------------
Returns bounds of statement at point.
With optional POSITION, a number, report bounds of statement at POSITION.
Returns a list, whose car is beg, cdr - end.
py-bounds-of-statements
-----------------------
Bounds of consecutive multitude of statements around point.
Indented same level, which don't open blocks.
py-bounds-of-block
------------------
Returns bounds of block at point.
With optional POSITION, a number, report bounds of block at POSITION.
Returns a list, whose car is beg, cdr - end.
py-bounds-of-clause
-------------------
Returns bounds of clause at point.
With optional POSITION, a number, report bounds of clause at POSITION.
Returns a list, whose car is beg, cdr - end.
py-bounds-of-block-or-clause
----------------------------
Returns bounds of block-or-clause at point.
With optional POSITION, a number, report bounds of block-or-clause at POSITION.
Returns a list, whose car is beg, cdr - end.
py-bounds-of-def
----------------
Returns bounds of def at point.
With optional POSITION, a number, report bounds of def at POSITION.
Returns a list, whose car is beg, cdr - end.
py-bounds-of-class
------------------
Returns bounds of class at point.
With optional POSITION, a number, report bounds of class at POSITION.
Returns a list, whose car is beg, cdr - end.
py-bounds-of-region
-------------------
Returns bounds of region at point.
Returns a list, whose car is beg, cdr - end.
py-bounds-of-buffer
-------------------
Returns bounds of buffer at point.
With optional POSITION, a number, report bounds of buffer at POSITION.
Returns a list, whose car is beg, cdr - end.
py-bounds-of-expression
-----------------------
Returns bounds of expression at point.
With optional POSITION, a number, report bounds of expression at POSITION.
Returns a list, whose car is beg, cdr - end.
py-bounds-of-partial-expression
-------------------------------
Returns bounds of partial-expression at point.
With optional POSITION, a number, report bounds of partial-expression at POSITION.
Returns a list, whose car is beg, cdr - end.
py-bounds-of-declarations
-------------------------
Bounds of consecutive multitude of assigments resp. statements around point.
Indented same level, which don't open blocks.
Typically declarations resp. initialisations of variables following
a class or function definition.
See also py-bounds-of-statements
;;; Comments, Filling
---------------------
py-beginning-of-comment
-----------------------
Go to the beginning of current line's comment, if any.
Returns position if succesful.
py-end-of-comment
-----------------
Go to the end of comment at point.
Returns position, nil if not in comment.
;;; Comment forms
-----------------
py-comment-region
-----------------
Like `comment-region' but uses double hash (`#') comment starter.
py-comment-block
----------------
Comments block at point.
Uses double hash (`#') comment starter when `py-block-comment-prefix-p' is `t',
the default
py-comment-minor-block
----------------------
Comments minor-block at point.
Uses double hash (`#') comment starter when `py-block-comment-prefix-p' is `t',
the default
py-comment-top-level
--------------------
Comments top-level form at point.
Uses double hash (`#') comment starter when `py-block-comment-prefix-p' is `t',
the default
py-comment-clause
-----------------
Comments clause at point.
Uses double hash (`#') comment starter when `py-block-comment-prefix-p' is `t',
the default
py-comment-block-or-clause
--------------------------
Comments block-or-clause at point.
Uses double hash (`#') comment starter when `py-block-comment-prefix-p' is `t',
the default
py-comment-def
--------------
Comments def at point.
Uses double hash (`#') comment starter when `py-block-comment-prefix-p' is `t',
the default
py-comment-class
----------------
Comments class at point.
Uses double hash (`#') comment starter when `py-block-comment-prefix-p' is `t',
the default
py-comment-def-or-class
-----------------------
Comments def-or-class at point.
Uses double hash (`#') comment starter when `py-block-comment-prefix-p' is `t',
the default
py-comment-statement
--------------------
Comments statement at point.
Uses double hash (`#') comment starter when `py-block-comment-prefix-p' is `t',
the default
py-uncomment
------------
Uncomment commented lines at point.
If region is active, restrict uncommenting at region
py-delete-comments-in-def-or-class
----------------------------------
Delete all commented lines in def-or-class at point
py-delete-comments-in-class
---------------------------
Delete all commented lines in class at point
py-delete-comments-in-block
---------------------------
Delete all commented lines in block at point
py-delete-comments-in-region
----------------------------
Delete all commented lines in region.
py-fill-comment
---------------
Fill the comment paragraph at point
py-end-of-string
----------------
Go to end of string at point, return position.
Takes the result of (syntax-ppss)
py-fill-this-paragraph
----------------------
Fill just the paragraph at point.
py-fill-paragraph
-----------------
`fill-paragraph-function'
If `py-paragraph-fill-docstring-p' and inside a docstring, the whole docstring is formatted.
See also `py-fill-string'
py-fill-labelled-string
-----------------------
Fill string or paragraph containing lines starting with label
See lp:1066489
py-fill-string
--------------
String fill function for `py-fill-paragraph'.
JUSTIFY should be used (if applicable) as in `fill-paragraph'.
DOCSTRING is either a boolean or 'no
If `py-paragraph-fill-docstring-p' is `t', `M-q` fills the
complete docstring according to setting of `py-docstring-style'
py-fill-string-django
---------------------
Fill docstring according to Django's coding standards style.
"""
Process foo, return bar.
"""
"""
Process foo, return bar.
If processing fails throw ProcessingError.
"""
See available styles at `py-fill-paragraph' or var `py-docstring-style'
py-fill-string-onetwo
---------------------
One newline and start and Two at end style.
"""Process foo, return bar."""
"""
Process foo, return bar.
If processing fails throw ProcessingError.
"""
See available styles at `py-fill-paragraph' or var `py-docstring-style'
py-fill-string-pep-257
----------------------
PEP-257 with 2 newlines at end of string.
"""Process foo, return bar."""
"""Process foo, return bar.
If processing fails throw ProcessingError.
"""
See available styles at `py-fill-paragraph' or var `py-docstring-style'
py-fill-string-pep-257-nn
-------------------------
PEP-257 with 1 newline at end of string.
"""Process foo, return bar."""
"""Process foo, return bar.
If processing fails throw ProcessingError.
"""
See available styles at `py-fill-paragraph' or var `py-docstring-style'
py-fill-string-symmetric
------------------------
Symmetric style.
"""Process foo, return bar."""
"""
Process foo, return bar.
If processing fails throw ProcessingError.
"""
See available styles at `py-fill-paragraph' or var `py-docstring-style'
py-beginning-of-top-level-p
---------------------------
Returns position, if cursor is at the beginning of a top-level, nil otherwise.
;;; Opens-p
-----------
py-statement-opens-block-p
--------------------------
Return position if the current statement opens a block
in stricter or wider sense.
For stricter sense specify regexp.
py-statement-opens-clause-p
---------------------------
Return position if the current statement opens block or clause.
py-statement-opens-block-or-clause-p
------------------------------------
Return position if the current statement opens block or clause.
py-statement-opens-class-p
--------------------------
Return `t' if the statement opens a functions or class definition, nil otherwise.
py-statement-opens-def-p
------------------------
Return `t' if the statement opens a functions or class definition, nil otherwise.
py-statement-opens-def-or-class-p
---------------------------------
Return `t' if the statement opens a functions or class definition, nil otherwise.
py-look-downward-for-clause
---------------------------
If beginning of other clause exists downward in current block.
If succesful return position.
py-current-defun
----------------
Go to the outermost method or class definition in current scope.
Python value for `add-log-current-defun-function'.
This tells add-log.el how to find the current function/method/variable.
Returns name of class or methods definition, if found, nil otherwise.
See customizable variables `py-current-defun-show' and `py-current-defun-delay'.
py-sort-imports
---------------
Sort multiline imports.
Put point inside the parentheses of a multiline import and hit
M-x py-sort-imports to sort the imports lexicographically
py-which-def-or-class
---------------------
Returns concatenated `def' and `class' names in hierarchical order, if cursor is inside.
Returns "???" otherwise
Used by variable `which-func-functions'
py-which-function
-----------------
Return the name of the function or class, if curser is in, return nil otherwise.
;;; Beginning/End
-----------------
py-beginning-of-statements
--------------------------
Got to the beginning of statements in current level which don't open blocks.
py-end-of-statements
--------------------
Got to the end of statements in current level which don't open blocks.
py-beginning-of-expression
--------------------------
Go to the beginning of a compound python expression.
With numeric ARG do it that many times.
A a compound python expression might be concatenated by "." operator, thus composed by minor python expressions.
If already at the beginning or before a expression, go to next expression in buffer upwards
Expression here is conceived as the syntactical component of a statement in Python. See http://docs.python.org/reference
Operators however are left aside resp. limit py-expression designed for edit-purposes.
py-end-of-expression
--------------------
Go to the end of a compound python expression.
With numeric ARG do it that many times.
A a compound python expression might be concatenated by "." operator, thus composed by minor python expressions.
Expression here is conceived as the syntactical component of a statement in Python. See http://docs.python.org/reference
Operators however are left aside resp. limit py-expression designed for edit-purposes.
py-beginning-of-partial-expression
----------------------------------
py-end-of-partial-expression
----------------------------
py-beginning-of-line
--------------------
Go to beginning-of-line, return position.
If already at beginning-of-line and not at BOB, go to beginning of previous line.
py-end-of-line
--------------
Go to end-of-line, return position.
If already at end-of-line and not at EOB, go to end of next line.
py-beginning-of-statement
-------------------------
Go to the initial line of a simple statement.
For beginning of compound statement use py-beginning-of-block.
For beginning of clause py-beginning-of-clause.
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-declarations
----------------------------
Got to the beginning of assigments resp. statements in current level which don't open blocks.
py-end-of-declarations
----------------------
Got to the end of assigments resp. statements in current level which don't open blocks.
;;; Beginning of forms
----------------------
py-beginning-of-form-intern
---------------------------
Go to beginning of FORM.
With INDENT, go to beginning one level above.
Whit IACT, print result in message buffer.
Returns beginning of FORM if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-block
---------------------
Go to beginning block, skip whitespace at BOL.
Returns beginning of block if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-clause
----------------------
Go to beginning clause, skip whitespace at BOL.
Returns beginning of clause if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-block-or-clause
-------------------------------
Go to beginning block-or-clause, skip whitespace at BOL.
Returns beginning of block-or-clause if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-def
-------------------
Go to beginning def, skip whitespace at BOL.
Returns beginning of def if successful, nil otherwise
When `py-mark-decorators' is non-nil, decorators are considered too.
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-class
---------------------
Go to beginning class, skip whitespace at BOL.
Returns beginning of class if successful, nil otherwise
When `py-mark-decorators' is non-nil, decorators are considered too.
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-def-or-class
----------------------------
Go to beginning def-or-class, skip whitespace at BOL.
Returns beginning of def-or-class if successful, nil otherwise
When `py-mark-decorators' is non-nil, decorators are considered too.
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-if-block
------------------------
Go to beginning if-block, skip whitespace at BOL.
Returns beginning of if-block if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-try-block
-------------------------
Go to beginning try-block, skip whitespace at BOL.
Returns beginning of try-block if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-minor-block
---------------------------
Go to beginning minor-block, skip whitespace at BOL.
Returns beginning of minor-block if successful, nil otherwise
A minor block is started by a `for', `if', `try' or `with'.
py-beginning-of-block-lc
------------------------
Go to beginning block, go to BOL.
Returns beginning of block if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-clause-lc
-------------------------
Go to beginning clause, go to BOL.
Returns beginning of clause if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-block-or-clause-lc
----------------------------------
Go to beginning block-or-clause, go to BOL.
Returns beginning of block-or-clause if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-def-lc
----------------------
Go to beginning def, go to BOL.
Returns beginning of def if successful, nil otherwise
When `py-mark-decorators' is non-nil, decorators are considered too.
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-class-lc
------------------------
Go to beginning class, go to BOL.
Returns beginning of class if successful, nil otherwise
When `py-mark-decorators' is non-nil, decorators are considered too.
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-def-or-class-lc
-------------------------------
Go to beginning def-or-class, go to BOL.
Returns beginning of def-or-class if successful, nil otherwise
When `py-mark-decorators' is non-nil, decorators are considered too.
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-if-block-lc
---------------------------
Go to beginning if-block, go to BOL.
Returns beginning of if-block if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-try-block-lc
----------------------------
Go to beginning try-block, go to BOL.
Returns beginning of try-block if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-minor-block-lc
------------------------------
Go to beginning minor-block, go to BOL.
Returns beginning of minor-block if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning-of-top-level
-------------------------
Go up to beginning of statments until level of indentation is null.
Returns position if successful, nil otherwise
py-end-of-top-level
-------------------
Go to end of top-level form at point.
Returns position if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-beginning
------------
Go to beginning of compound statement or definition at point.
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-end
------
Go to end of of compound statement or definition at point.
Returns position block if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-up
-----
Go up or to beginning of form if inside.
If inside a delimited form --string or list-- go to it's beginning.
If not at beginning of a statement or block, go to it's beginning.
If at beginning of a statement or block, go to beginning one level above of compound statement or definition at point.
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-down
-------
Go to beginning one level below of compound statement or definition at point.
If no statement or block below, but a delimited form --string or list-- go to it's beginning. Repeated call from there will behave like down-list.
Returns position if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-end-of-block
---------------
Go to end of block.
Returns end of block if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-end-of-clause
----------------
Go to end of clause.
Returns end of clause if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-end-of-block-or-clause
-------------------------
Go to end of block-or-clause.
Returns end of block-or-clause if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-end-of-def
-------------
Go to end of def.
Returns end of def if successful, nil otherwise
With M-x universal argument or `py-mark-decorators' set to `t', decorators are marked too.
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-end-of-class
---------------
Go to end of class.
Returns end of class if successful, nil otherwise
With M-x universal argument or `py-mark-decorators' set to `t', decorators are marked too.
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-end-of-def-or-class
----------------------
Go to end of def-or-class.
Returns end of def-or-class if successful, nil otherwise
With M-x universal argument or `py-mark-decorators' set to `t', decorators are marked too.
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-end-of-if-block
------------------
Go to end of if-block.
Returns end of if-block if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-end-of-try-block
-------------------
Go to end of try-block.
Returns end of try-block if successful, nil otherwise
Referring python program structures see for example:
http://docs.python.org/reference/compound_stmts.html
py-end-of-minor-block
---------------------
Go to end of minor-block.
Returns end of minor-block if successful, nil otherwise
A minor block is started by a `for', `if', `try' or `with'.
;;; Forms
---------
py-declarations
---------------
Copy and mark assigments resp. statements in current level which don't open blocks or start with a keyword.
See also `py-statements', which is more general, taking also simple statements starting with a keyword.
py-statements
-------------
Copy and mark simple statements in current level which don't open blocks.
More general than py-declarations, which would stop at keywords like a print-statement.
py-end-of-statement
-------------------
Go to the last char of current statement.
To go just beyond the final line of the current statement, use `py-down-statement-bol'.
py-goto-statement-below
-----------------------
Goto beginning of next statement.
py-beginning-of-decorator
-------------------------
Go to the beginning of a decorator.
Returns position if succesful
py-end-of-decorator
-------------------
Go to the end of a decorator.
Returns position if succesful
;;; Mark
--------
py-mark-paragraph
-----------------
Mark paragraph at point.
Returns beginning and end positions of marked area, a cons.
py-mark-block
-------------
Mark block at point.
Returns beginning and end positions of marked area, a cons.
py-mark-minor-block
-------------------
Mark minor-block at point.
Returns beginning and end positions of marked area, a cons.
py-mark-clause
--------------
Mark clause at point.
Returns beginning and end positions of marked area, a cons.
py-mark-block-or-clause
-----------------------
Mark block-or-clause at point.
Returns beginning and end positions of marked area, a cons.
py-mark-def
-----------
Mark def at point.
With M-x universal argument or `py-mark-decorators' set to `t', decorators are marked too.
Returns beginning and end positions of marked area, a cons.
py-mark-class
-------------
Mark class at point.
With M-x universal argument or `py-mark-decorators' set to `t', decorators are marked too.
Returns beginning and end positions of marked area, a cons.
py-mark-def-or-class
--------------------
Mark def-or-class at point.
With M-x universal argument or `py-mark-decorators' set to `t', decorators are marked too.
Returns beginning and end positions of marked area, a cons.
py-mark-line
------------
Mark line at point.
Returns beginning and end positions of marked area, a cons.
py-mark-statement
-----------------
Mark statement at point.
Returns beginning and end positions of marked area, a cons.
py-mark-top-level
-----------------
Mark top-level form at point.
Returns beginning and end positions of marked area, a cons.
py-mark-expression
------------------
Mark expression at point.
Returns beginning and end positions of marked area, a cons.
py-mark-partial-expression
--------------------------
Mark partial-expression at point.
Returns beginning and end positions of marked area, a cons.
;;; Copy
--------
py-copy-statement
-----------------
Copy statement at point.
Store data in kill ring, so it might yanked back.
py-copy-top-level
-----------------
Copy top-level at point.
Store data in kill ring, so it might yanked back.
py-copy-block
-------------
Copy block at point.
Store data in kill ring, so it might yanked back.
py-copy-clause
--------------
Copy clause at point.
Store data in kill ring, so it might yanked back.
py-copy-block-or-clause
-----------------------
Copy block-or-clause at point.
Store data in kill ring, so it might yanked back.
py-copy-def
-----------
Copy def at point.
Store data in kill ring, so it might yanked back.
py-copy-class
-------------
Copy class at point.
Store data in kill ring, so it might yanked back.
py-copy-def-or-class
--------------------
Copy def-or-class at point.
Store data in kill ring, so it might yanked back.
py-copy-expression
------------------
Copy expression at point.
Store data in kill ring, so it might yanked back.
py-copy-partial-expression
--------------------------
Copy partial-expression at point.
Store data in kill ring, so it might yanked back.
py-copy-minor-block
-------------------
Copy minor-block at point.
Store data in kill ring, so it might yanked back.
;;; Delete
----------
py-delete-statement
-------------------
Delete STATEMENT at point.
Don't store data in kill ring.
py-delete-top-level
-------------------
Delete TOP-LEVEL at point.
Don't store data in kill ring.
py-delete-block
---------------
Delete BLOCK at point.
Don't store data in kill ring.
py-delete-block-or-clause
-------------------------
Delete BLOCK-OR-CLAUSE at point.
Don't store data in kill ring.
py-delete-def
-------------
Delete DEF at point.
Don't store data in kill ring.
py-delete-class
---------------
Delete CLASS at point.
Don't store data in kill ring.
py-delete-def-or-class
----------------------
Delete DEF-OR-CLASS at point.
Don't store data in kill ring.
py-delete-expression
--------------------
Delete EXPRESSION at point.
Don't store data in kill ring.
py-delete-partial-expression
----------------------------
Delete PARTIAL-EXPRESSION at point.
Don't store data in kill ring.
py-delete-minor-block
---------------------
Delete MINOR-BLOCK at point.
Don't store data in kill ring.
A minor block is started by a `for', `if', `try' or `with'.
;;; Kill
--------
py-kill-statements
------------------
Delete statements declared in current level.
Store deleted statements in kill-ring
py-kill-declarations
--------------------
Delete variables declared in current level.
Store deleted variables in kill-ring
py-kill-expression
------------------
Delete expression at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-partial-expression
--------------------------
Delete partial-expression at point.
Stores data in kill ring. Might be yanked back using `C-y'.
"." operators delimit a partial-expression expression on it's level, that's the difference to compound expressions.
py-kill-statement
-----------------
Delete statement at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-top-level
-----------------
Delete top-level form at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-block
-------------
Delete block at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-minor-block
-------------------
Delete minor-block at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-block-or-clause
-----------------------
Delete block-or-clause at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-def-or-class
--------------------
Delete def-or-class at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-class
-------------
Delete class at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-def
-----------
Delete def at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-clause
--------------
Delete clause at point.
Stores data in kill ring. Might be yanked back using `C-y'.
;;; Beginning of line forms
---------------------------
py-beginning-of-block-bol-p
---------------------------
Returns position, if cursor is at the beginning of block, at beginning of line, nil otherwise.
py-end-of-block-bol
-------------------
Goto beginning of line following end of block.
Returns position reached, if successful, nil otherwise.
See also `py-down-block': down from current definition to next beginning of block below.
py-mark-block-bol
-----------------
Mark block, take beginning of line positions.
Returns beginning and end positions of region, a cons.
py-copy-block-bol
-----------------
Delete block bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-block-bol
-----------------
Delete block bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-delete-block-bol
-------------------
Delete block bol at point.
Don't store data in kill ring.
py-beginning-of-clause-bol-p
----------------------------
Returns position, if cursor is at the beginning of clause, at beginning of line, nil otherwise.
py-end-of-clause-bol
--------------------
Goto beginning of line following end of clause.
Returns position reached, if successful, nil otherwise.
See also `py-down-clause': down from current definition to next beginning of clause below.
py-mark-clause-bol
------------------
Mark clause, take beginning of line positions.
Returns beginning and end positions of region, a cons.
py-copy-clause-bol
------------------
Delete clause bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-clause-bol
------------------
Delete clause bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-delete-clause-bol
--------------------
Delete clause bol at point.
Don't store data in kill ring.
py-beginning-of-block-or-clause-bol-p
-------------------------------------
Returns position, if cursor is at the beginning of block-or-clause, at beginning of line, nil otherwise.
py-end-of-block-or-clause-bol
-----------------------------
Goto beginning of line following end of block-or-clause.
Returns position reached, if successful, nil otherwise.
See also `py-down-block-or-clause': down from current definition to next beginning of block-or-clause below.
py-mark-block-or-clause-bol
---------------------------
Mark block-or-clause, take beginning of line positions.
Returns beginning and end positions of region, a cons.
py-copy-block-or-clause-bol
---------------------------
Delete block-or-clause bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-block-or-clause-bol
---------------------------
Delete block-or-clause bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-delete-block-or-clause-bol
-----------------------------
Delete block-or-clause bol at point.
Don't store data in kill ring.
py-beginning-of-def-bol-p
-------------------------
Returns position, if cursor is at the beginning of def, at beginning of line, nil otherwise.
py-end-of-def-bol
-----------------
Goto beginning of line following end of def.
Returns position reached, if successful, nil otherwise.
See also `py-down-def': down from current definition to next beginning of def below.
py-mark-def-bol
---------------
Mark def, take beginning of line positions.
With M-x universal argument or `py-mark-decorators' set to `t', decorators are marked too.
Returns beginning and end positions of region, a cons.
py-copy-def-bol
---------------
Delete def bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-def-bol
---------------
Delete def bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-delete-def-bol
-----------------
Delete def bol at point.
Don't store data in kill ring.
py-beginning-of-class-bol-p
---------------------------
Returns position, if cursor is at the beginning of class, at beginning of line, nil otherwise.
py-end-of-class-bol
-------------------
Goto beginning of line following end of class.
Returns position reached, if successful, nil otherwise.
See also `py-down-class': down from current definition to next beginning of class below.
py-mark-class-bol
-----------------
Mark class, take beginning of line positions.
With M-x universal argument or `py-mark-decorators' set to `t', decorators are marked too.
Returns beginning and end positions of region, a cons.
py-copy-class-bol
-----------------
Delete class bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-class-bol
-----------------
Delete class bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-delete-class-bol
-------------------
Delete class bol at point.
Don't store data in kill ring.
py-beginning-of-def-or-class-bol-p
----------------------------------
Returns position, if cursor is at the beginning of def-or-class, at beginning of line, nil otherwise.
py-end-of-def-or-class-bol
--------------------------
Goto beginning of line following end of def-or-class.
Returns position reached, if successful, nil otherwise.
See also `py-down-def-or-class': down from current definition to next beginning of def-or-class below.
py-mark-def-or-class-bol
------------------------
Mark def-or-class, take beginning of line positions.
With M-x universal argument or `py-mark-decorators' set to `t', decorators are marked too.
Returns beginning and end positions of region, a cons.
py-copy-def-or-class-bol
------------------------
Delete def-or-class bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-def-or-class-bol
------------------------
Delete def-or-class bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-delete-def-or-class-bol
--------------------------
Delete def-or-class bol at point.
Don't store data in kill ring.
py-beginning-of-statement-bol-p
-------------------------------
Returns position, if cursor is at the beginning of statement, at beginning of line, nil otherwise.
py-beginning-of-statement-bol
-----------------------------
Goto beginning of line where statement starts.
Returns position reached, if successful, nil otherwise.
See also `py-up-statement': up from current definition to next beginning of statement above.
py-end-of-statement-bol
-----------------------
Goto beginning of line following end of statement.
Returns position reached, if successful, nil otherwise.
See also `py-down-statement': down from current definition to next beginning of statement below.
py-mark-statement-bol
---------------------
Mark statement, take beginning of line positions.
Returns beginning and end positions of region, a cons.
py-copy-statement-bol
---------------------
Delete statement bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-kill-statement-bol
---------------------
Delete statement bol at point.
Stores data in kill ring. Might be yanked back using `C-y'.
py-delete-statement-bol
-----------------------
Delete statement bol at point.
Don't store data in kill ring.
;;; Up/Down
-----------
py-up-statement
---------------
Go to the beginning of next statement upwards in buffer.
Return position if statement found, nil otherwise.
py-down-statement
-----------------
Go to the beginning of next statement downwards in buffer.
Return position if statement found, nil otherwise.
py-up-block
-----------
Go to the beginning of next block upwards in buffer.
Return position if block found, nil otherwise.
py-up-minor-block
-----------------
Go to the beginning of next minor-block upwards in buffer.
Return position if minor-block found, nil otherwise.
py-up-clause
------------
Go to the beginning of next clause upwards in buffer.
Return position if clause found, nil otherwise.
py-up-block-or-clause
---------------------
Go to the beginning of next block-or-clause upwards in buffer.
Return position if block-or-clause found, nil otherwise.
py-up-def
---------
Go to the beginning of next def upwards in buffer.
Return position if def found, nil otherwise.
py-up-class
-----------
Go to the beginning of next class upwards in buffer.
Return position if class found, nil otherwise.
py-up-def-or-class
------------------
Go to the beginning of next def-or-class upwards in buffer.
Return position if def-or-class found, nil otherwise.
py-down-block
-------------
Go to the beginning of next block below in buffer.
Return position if block found, nil otherwise.
py-down-minor-block
-------------------
Go to the beginning of next minor-block below in buffer.
Return position if minor-block found, nil otherwise.
py-down-clause
--------------
Go to the beginning of next clause below in buffer.
Return position if clause found, nil otherwise.
py-down-block-or-clause
-----------------------
Go to the beginning of next block-or-clause below in buffer.
Return position if block-or-clause found, nil otherwise.
py-down-def
-----------
Go to the beginning of next def below in buffer.
Return position if def found, nil otherwise.
py-down-class
-------------
Go to the beginning of next class below in buffer.
Return position if class found, nil otherwise.
py-down-def-or-class
--------------------
Go to the beginning of next def-or-class below in buffer.
Return position if def-or-class found, nil otherwise.
py-up-block-bol
---------------
Go to the beginning of next block upwards in buffer.
Go to beginning of line.
Return position if block found, nil otherwise.
py-up-minor-block-bol
---------------------
Go to the beginning of next minor-block upwards in buffer.
Go to beginning of line.
Return position if minor-block found, nil otherwise.
py-up-clause-bol
----------------
Go to the beginning of next clause upwards in buffer.
Go to beginning of line.
Return position if clause found, nil otherwise.
py-up-block-or-clause-bol
-------------------------
Go to the beginning of next block-or-clause upwards in buffer.
Go to beginning of line.
Return position if block-or-clause found, nil otherwise.
py-up-def-bol
-------------
Go to the beginning of next def upwards in buffer.
Go to beginning of line.
Return position if def found, nil otherwise.
py-up-class-bol
---------------
Go to the beginning of next class upwards in buffer.
Go to beginning of line.
Return position if class found, nil otherwise.
py-up-def-or-class-bol
----------------------
Go to the beginning of next def-or-class upwards in buffer.
Go to beginning of line.
Return position if def-or-class found, nil otherwise.
py-down-block-bol
-----------------
Go to the beginning of next block below in buffer.
Go to beginning of line
Return position if block found, nil otherwise
py-down-minor-block-bol
-----------------------
Go to the beginning of next minor-block below in buffer.
Go to beginning of line
Return position if minor-block found, nil otherwise
py-down-clause-bol
------------------
Go to the beginning of next clause below in buffer.
Go to beginning of line
Return position if clause found, nil otherwise
py-down-block-or-clause-bol
---------------------------
Go to the beginning of next block-or-clause below in buffer.
Go to beginning of line
Return position if block-or-clause found, nil otherwise
py-down-def-bol
---------------
Go to the beginning of next def below in buffer.
Go to beginning of line
Return position if def found, nil otherwise
py-down-class-bol
-----------------
Go to the beginning of next class below in buffer.
Go to beginning of line
Return position if class found, nil otherwise
py-down-def-or-class-bol
------------------------
Go to the beginning of next def-or-class below in buffer.
Go to beginning of line
Return position if def-or-class found, nil otherwise
py-forward-into-nomenclature
----------------------------
Move forward to end of a nomenclature section or word.
With C-u (programmatically, optional argument ARG), do it that many times.
A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores.
py-backward-into-nomenclature
-----------------------------
Move backward to beginning of a nomenclature section or word.
With optional ARG, move that many times. If ARG is negative, move
forward.
A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores.
match-paren
-----------
Go to the matching brace, bracket or parenthesis if on its counterpart.
Otherwise insert the character, the key is assigned to, here `%'.
With universal arg insert a `%'.
;;; Python named shells
-----------------------
python
------
Start an Python interpreter.
Optional C-u prompts for options to pass to the Python interpreter. See `py-python-command-args'.
ipython
-------
Start an IPython interpreter.
Optional C-u prompts for options to pass to the IPython interpreter. See `py-python-command-args'.
python3
-------
Start an Python3 interpreter.
Optional C-u prompts for options to pass to the Python3 interpreter. See `py-python-command-args'.
python2
-------
Start an Python2 interpreter.
Optional C-u prompts for options to pass to the Python2 interpreter. See `py-python-command-args'.
python2\.7
----------
Start an Python2.7 interpreter.
Optional C-u prompts for options to pass to the Python2.7 interpreter. See `py-python-command-args'.
jython
------
Start an Jython interpreter.
Optional C-u prompts for options to pass to the Jython interpreter. See `py-python-command-args'.
python3\.2
----------
Start an Python3.2 interpreter.
Optional C-u prompts for options to pass to the Python3.2 interpreter. See `py-python-command-args'.
python3\.3
----------
Start an Python3.3 interpreter.
Optional C-u prompts for options to pass to the Python3.3 interpreter. See `py-python-command-args'.
python3\.4
----------
Start an Python3.3 interpreter.
Optional C-u prompts for options to pass to the Python3.3 interpreter. See `py-python-command-args'.
bpython
-------
Start an Bpython interpreter.
Optional C-u prompts for options to pass to the Bpython interpreter. See `py-python-command-args'.
python-dedicated
----------------
Start an unique Python interpreter in another window.
Optional C-u prompts for options to pass to the Python interpreter. See `py-python-command-args'.
ipython-dedicated
-----------------
Start an unique IPython interpreter in another window.
Optional C-u prompts for options to pass to the IPython interpreter. See `py-python-command-args'.
python3-dedicated
-----------------
Start an unique Python3 interpreter in another window.
Optional C-u prompts for options to pass to the Python3 interpreter. See `py-python-command-args'.
python2-dedicated
-----------------
Start an unique Python2 interpreter in another window.
Optional C-u prompts for options to pass to the Python2 interpreter. See `py-python-command-args'.
python2\.7-dedicated
--------------------
Start an unique Python2.7 interpreter in another window.
Optional C-u prompts for options to pass to the Python2.7 interpreter. See `py-python-command-args'.
jython-dedicated
----------------
Start an unique Jython interpreter in another window.
Optional C-u prompts for options to pass to the Jython interpreter. See `py-python-command-args'.
python3\.2-dedicated
--------------------
Start an unique Python3.2 interpreter in another window.
Optional C-u prompts for options to pass to the Python3.2 interpreter. See `py-python-command-args'.
python3\.3-dedicated
--------------------
Start an unique Python3.3 interpreter in another window.
Optional C-u prompts for options to pass to the Python3.3 interpreter. See `py-python-command-args'.
bpython-dedicated
-----------------
Start an unique Bpython interpreter in another window.
Optional C-u prompts for options to pass to the Bpython interpreter. See `py-python-command-args'.
python-switch
-------------
Switch to Python interpreter in another window.
Optional C-u prompts for options to pass to the Python interpreter. See `py-python-command-args'.
ipython-switch
--------------
Switch to IPython interpreter in another window.
Optional C-u prompts for options to pass to the IPython interpreter. See `py-python-command-args'.
python3-switch
--------------
Switch to Python3 interpreter in another window.
Optional C-u prompts for options to pass to the Python3 interpreter. See `py-python-command-args'.
python2-switch
--------------
Switch to Python2 interpreter in another window.
Optional C-u prompts for options to pass to the Python2 interpreter. See `py-python-command-args'.
python2\.7-switch
-----------------
Switch to Python2.7 interpreter in another window.
Optional C-u prompts for options to pass to the Python2.7 interpreter. See `py-python-command-args'.
jython-switch
-------------
Switch to Jython interpreter in another window.
Optional C-u prompts for options to pass to the Jython interpreter. See `py-python-command-args'.
python3\.2-switch
-----------------
Switch to Python3.2 interpreter in another window.
Optional C-u prompts for options to pass to the Python3.2 interpreter. See `py-python-command-args'.
python3\.3-switch
-----------------
Switch to Python3.3 interpreter in another window.
Optional C-u prompts for options to pass to the Python3.3 interpreter. See `py-python-command-args'.
bpython-switch
--------------
Switch to Bpython interpreter in another window.
Optional C-u prompts for options to pass to the Bpython interpreter. See `py-python-command-args'.
python-no-switch
----------------
Open an Python interpreter in another window, but do not switch to it.
Optional C-u prompts for options to pass to the Python interpreter. See `py-python-command-args'.
ipython-no-switch
-----------------
Open an IPython interpreter in another window, but do not switch to it.
Optional C-u prompts for options to pass to the IPython interpreter. See `py-python-command-args'.
python3-no-switch
-----------------
Open an Python3 interpreter in another window, but do not switch to it.
Optional C-u prompts for options to pass to the Python3 interpreter. See `py-python-command-args'.
python2-no-switch
-----------------
Open an Python2 interpreter in another window, but do not switch to it.
Optional C-u prompts for options to pass to the Python2 interpreter. See `py-python-command-args'.
python2\.7-no-switch
--------------------
Open an Python2.7 interpreter in another window, but do not switch to it.
Optional C-u prompts for options to pass to the Python2.7 interpreter. See `py-python-command-args'.
jython-no-switch
----------------
Open an Jython interpreter in another window, but do not switch to it.
Optional C-u prompts for options to pass to the Jython interpreter. See `py-python-command-args'.
python3\.2-no-switch
--------------------
Open an Python3.2 interpreter in another window, but do not switch to it.
Optional C-u prompts for options to pass to the Python3.2 interpreter. See `py-python-command-args'.
python3\.3-no-switch
--------------------
Open an Python3.3 interpreter in another window, but do not switch to it.
Optional C-u prompts for options to pass to the Python3.3 interpreter. See `py-python-command-args'.
bpython-no-switch
-----------------
Open an Bpython interpreter in another window, but do not switch to it.
Optional C-u prompts for options to pass to the Bpython interpreter. See `py-python-command-args'.
python-switch-dedicated
-----------------------
Switch to an unique Python interpreter in another window.
Optional C-u prompts for options to pass to the Python interpreter. See `py-python-command-args'.
ipython-switch-dedicated
------------------------
Switch to an unique IPython interpreter in another window.
Optional C-u prompts for options to pass to the IPython interpreter. See `py-python-command-args'.
python3-switch-dedicated
------------------------
Switch to an unique Python3 interpreter in another window.
Optional C-u prompts for options to pass to the Python3 interpreter. See `py-python-command-args'.
python2-switch-dedicated
------------------------
Switch to an unique Python2 interpreter in another window.
Optional C-u prompts for options to pass to the Python2 interpreter. See `py-python-command-args'.
python2\.7-switch-dedicated
---------------------------
Switch to an unique Python2.7 interpreter in another window.
Optional C-u prompts for options to pass to the Python2.7 interpreter. See `py-python-command-args'.
jython-switch-dedicated
-----------------------
Switch to an unique Jython interpreter in another window.
Optional C-u prompts for options to pass to the Jython interpreter. See `py-python-command-args'.
python3\.2-switch-dedicated
---------------------------
Switch to an unique Python3.2 interpreter in another window.
Optional C-u prompts for options to pass to the Python3.2 interpreter. See `py-python-command-args'.
python3\.3-switch-dedicated
---------------------------
Switch to an unique Python3.3 interpreter in another window.
Optional C-u prompts for options to pass to the Python3.3 interpreter. See `py-python-command-args'.
bpython-switch-dedicated
------------------------
Switch to an unique Bpython interpreter in another window.
Optional C-u prompts for options to pass to the Bpython interpreter. See `py-python-command-args'.
;;; Code execution
------------------
py-which-execute-file-command
-----------------------------
Return the command appropriate to Python version.
Per default it's "(format "execfile(r'%s') # PYTHON-MODE\n" filename)" for Python 2 series.
py-execute-region-no-switch
---------------------------
Send the region to a Python interpreter.
Ignores setting of `py-switch-buffers-on-execute-p', buffer with region stays current.
py-execute-region-switch
------------------------
Send the region to a Python interpreter.
Ignores setting of `py-switch-buffers-on-execute-p', output-buffer will being switched to.
py-execute-region
-----------------
Send the region to a Python interpreter.
When called with C-u, execution through `default-value' of `py-shell-name' is forced.
When called with C-u followed by a number different from 4 and 1, user is prompted to specify a shell. This might be the name of a system-wide shell or include the path to a virtual environment.
When called from a programm, it accepts a string specifying a shell which will be forced upon execute as argument.
Optional DEDICATED (boolean)
py-execute-region-default
-------------------------
Send the region to the systems default Python interpreter.
py-execute-region-dedicated
---------------------------
Get the region processed by an unique Python interpreter.
When called with C-u, execution through `default-value' of `py-shell-name' is forced.
When called with C-u followed by a number different from 4 and 1, user is prompted to specify a shell. This might be the name of a system-wide shell or include the path to a virtual environment.
When called from a programm, it accepts a string specifying a shell which will be forced upon execute as argument.
py-execute-region-default-dedicated
-----------------------------------
Send the region to an unique shell of systems default Python.
py-execute-python-mode-v5
-------------------------
py-execute-string
-----------------
Send the argument STRING to a Python interpreter.
See also `py-execute-region'.
py-execute-string-dedicated
---------------------------
Send the argument STRING to an unique Python interpreter.
See also `py-execute-region'.
py-fetch-py-master-file
-----------------------
Lookup if a `py-master-file' is specified.
See also doku of variable `py-master-file'
py-execute-import-or-reload
---------------------------
Import the current buffer's file in a Python interpreter.
If the file has already been imported, then do reload instead to get
the latest version.
If the file's name does not end in ".py", then do execfile instead.
If the current buffer is not visiting a file, do `py-execute-buffer'
instead.
If the file local variable `py-master-file' is non-nil, import or
reload the named file instead of the buffer's file. The file may be
saved based on the value of `py-execute-import-or-reload-save-p'.
See also `M-x py-execute-region'.
This may be preferable to `M-x py-execute-buffer' because:
- Definitions stay in their module rather than appearing at top
level, where they would clutter the global namespace and not affect
uses of qualified names (MODULE.NAME).
- The Python debugger gets line number information about the functions.
py-execute-buffer-dedicated
---------------------------
Send the contents of the buffer to a unique Python interpreter.
py-execute-buffer-switch
------------------------
Send the contents of the buffer to a Python interpreter and switches to output.
py-execute-buffer-dedicated-switch
----------------------------------
Send the contents of the buffer to an unique Python interpreter.
Ignores setting of `py-switch-buffers-on-execute-p'.
py-execute-buffer
-----------------
Send the contents of the buffer to a Python interpreter.
py-execute-buffer-no-switch
---------------------------
Send the contents of the buffer to a Python interpreter but don't switch to output.
py-execute-defun
----------------
Send the current defun (class or method) to the inferior Python process.
py-process-file
---------------
Process "python filename".
Optional OUTPUT-BUFFER and ERROR-BUFFER might be given.
py-execute-line
---------------
Send current line from beginning of indent to Python interpreter.
py-output-filter
----------------
Clear output buffer from py-shell-input prompt etc.
py-execute-file
---------------
When called interactively, user is prompted for filename.
;;; Pdb
-------
py-pdbtrack-toggle-stack-tracking
---------------------------------
Set variable `py-pdbtrack-do-tracking-p'.
turn-on-pdbtrack
----------------
turn-off-pdbtrack
-----------------
;;; Documentation
-----------------
py-documentation
----------------
Launch PyDOC on the Word at Point
py-fetch-docu
-------------
Lookup in current buffer for the doku for the symbol at point.
Useful for newly defined symbol, not known to python yet.
py-find-imports
---------------
Find top-level imports.
Returns imports
py-eldoc-function
-----------------
Print help on symbol at point.
py-describe-symbol
------------------
Print help on symbol at point.
If symbol is defined in current buffer, jump to it's definition
Optional C-u used for debugging, will prevent deletion of temp file.
py-describe-mode
----------------
Dump long form of `python-mode' docs.
py-load-file
------------
Load a Python file FILE-NAME into the inferior Python process.
If the file has extension `.py' import or reload it as a module.
Treating it as a module keeps the global namespace clean, provides
function location information for debugging, and supports users of
module-qualified names.
py-find-definition
------------------
Find source of definition of SYMBOL.
Interactively, prompt for SYMBOL.
;;; Miscellanus
---------------
py-insert-super
---------------
Insert a function "super()" from current environment.
As example given in Python v3.1 documentation » The Python Standard Library »
class C(B):
def method(self, arg):
super().method(arg) # This does the same thing as:
# super(C, self).method(arg)
Returns the string inserted.
py-nesting-level
----------------
Accepts the output of `parse-partial-sexp'.
py-beginning-of-commented-section
---------------------------------
Leave upwards comments and/or empty lines.
py-continuation-offset
----------------------
With numeric ARG different from 1 py-continuation-offset is set to that value; returns py-continuation-offset.
py-compute-indentation
----------------------
Compute Python indentation.
When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return',
`raise', `break', `continue', and `pass' force one level of dedenting.
Optional arguments are flags resp. values set and used by `py-compute-indentation' internally
py-indentation-of-statement
---------------------------
Returns the indenation of the statement at point.
py-guess-default-python
-----------------------
Defaults to "python", if guessing didn't succeed.
py-set-ipython-completion-command-string
----------------------------------------
Set and return `ipython-completion-command-string'.
py-shell-dedicated
------------------
Start an interactive Python interpreter in another window.
With optional C-u user is prompted by
`py-choose-shell' for command and options to pass to the Python
interpreter.
py-shell
--------
Start an interactive Python interpreter in another window.
Interactively, C-u 4 prompts for a buffer.
C-u 2 prompts for `py-python-command-args'.
If `default-directory' is a remote file name, it is also prompted
to change if called with a prefix arg.
Returns py-shell's buffer-name.
Optional string PYSHELLNAME overrides default `py-shell-name'.
BUFFER allows specifying a name, the Python process is connected to
When DONE is `t', `py-shell-manage-windows' is omitted
py-indent-forward-line
----------------------
Indent and move one line forward to next indentation.
Returns column of line reached.
If `py-kill-empty-line' is non-nil, delete an empty line.
When closing a form, use py-close-block et al, which will move and indent likewise.
With M-x universal argument just indent.
py-dedent-forward-line
----------------------
Dedent line and move one line forward.
py-dedent
---------
Dedent line according to `py-indent-offset'.
With arg, do it that many times.
If point is between indent levels, dedent to next level.
Return indentation reached, if dedent done, nil otherwise.
Affected by `py-dedent-keep-relative-column'.
py-close-def
------------
Set indent level to that of beginning of function definition.
If final line isn't empty and `py-close-block-provides-newline' non-nil, insert a newline.
py-close-class
--------------
Set indent level to that of beginning of class definition.
If final line isn't empty and `py-close-block-provides-newline' non-nil, insert a newline.
py-close-clause
---------------
Set indent level to that of beginning of clause definition.
If final line isn't empty and `py-close-block-provides-newline' non-nil, insert a newline.
py-close-block
--------------
Set indent level to that of beginning of block definition.
If final line isn't empty and `py-close-block-provides-newline' non-nil, insert a newline.
py-class-at-point
-----------------
Return class definition as string.
With interactive call, send it to the message buffer too.
py-line-at-point
----------------
Return line as string.
With interactive call, send it to the message buffer too.
py-looking-at-keywords-p
------------------------
If looking at a python keyword. Returns t or nil.
py-match-paren-mode
-------------------
py-match-paren-mode nil oder t
py-match-paren
--------------
Goto to the opening or closing of block before or after point.
With arg, do it that many times.
Closes unclosed block if jumping from beginning.
py-printform-insert
-------------------
Inserts a print statement out of current `(car kill-ring)' by default, inserts ARG instead if delivered.
eva
---
Put "eval(...)" forms around strings at point.
pst-here
--------
Kill previous "pdb.set_trace()" and insert it at point.
py-line-to-printform-python2
----------------------------
Transforms the item on current in a print statement.
;;; Imenu
---------
py-switch-imenu-index-function
------------------------------
Switch between series 5. index machine `py-imenu-create-index' and `py-imenu-create-index-new', which also lists modules variables
py-toggle-local-default-use
---------------------------
py-choose-shell-by-path
-----------------------
Select Python executable according to version desplayed in path, current buffer-file is selected from.
Returns versioned string, nil if nothing appropriate found
py-choose-shell-by-shebang
--------------------------
Choose shell by looking at #! on the first line.
Returns the specified Python resp. Jython shell command name.
py-which-python
---------------
Returns version of Python of current environment, a number.
py-python-current-environment
-----------------------------
Returns path of current Python installation.
py-switch-shell
---------------
Toggles between the interpreter customized in `py-shell-toggle-1' resp. `py-shell-toggle-2'. Was hard-coded CPython and Jython in earlier versions, now starts with Python2 and Python3 by default.
ARG might be a python-version string to set to.
C-u `py-toggle-shell' prompts to specify a reachable Python command.
C-u followed by numerical arg 2 or 3, `py-toggle-shell' opens a respective Python shell.
C-u followed by numerical arg 5 opens a Jython shell.
Should you need more shells to select, extend this command by adding inside the first cond:
((eq NUMBER (prefix-numeric-value arg))
"MY-PATH-TO-SHELL")
py-choose-shell
---------------
Return an appropriate executable as a string.
Returns nil, if no executable found.
This does the following:
- look for an interpreter with `py-choose-shell-by-shebang'
- examine imports using `py-choose-shell-by-import'
- look if Path/To/File indicates a Python version
- if not successful, return default value of `py-shell-name'
When interactivly called, messages the shell name, Emacs would in the given circtumstances.
With C-u 4 is called `py-switch-shell' see docu there.
py-install-directory-check
--------------------------
Do some sanity check for `py-install-directory'.
Returns `t' if successful.
py-guess-py-install-directory
-----------------------------
Takes value of user directory aka $HOME
if `(locate-library "python-mode")' is not succesful.
Used only, if `py-install-directory' is empty.
py-set-load-path
----------------
Include needed subdirs of python-mode directory.
;;; Abbrevs
-----------
py-edit-abbrevs
---------------
Jumps to `python-mode-abbrev-table' in a buffer containing lists of abbrev definitions.
You can edit them and type C-c C-c to redefine abbrevs
according to your editing.
Buffer contains a header line for each abbrev table,
which is the abbrev table name in parentheses.
This is followed by one line per abbrev in that table:
NAME USECOUNT EXPANSION HOOK
where NAME and EXPANSION are strings with quotes,
USECOUNT is an integer, and HOOK is any valid function
or may be omitted (it is usually omitted).
py-add-abbrev
-------------
Defines python-mode specific abbrev for last expressions before point.
Argument is how many `py-partial-expression's form the expansion; or zero means the region is the expansion.
Reads the abbreviation in the minibuffer; with numeric arg it displays a proposal for an abbrev.
Proposal is composed from the initial character(s) of the
expansion.
Don't use this function in a Lisp program; use `define-abbrev' instead.
py-python-version
-----------------
Returns versions number of a Python EXECUTABLE, string.
If no EXECUTABLE given, `py-shell-name' is used.
Interactively output of `--version' is displayed.
py-version
----------
Echo the current version of `python-mode' in the minibuffer.
py-install-search-local
-----------------------
py-install-local-shells
-----------------------
Builds Python-shell commands from executable found in LOCAL.
If LOCAL is empty, shell-command `find' searches beneath current directory.
Eval resulting buffer to install it, see customizable `py-extensions'.
;;; Completion
--------------
py-python-script-complete
-------------------------
Complete word before point, if any.
When `py-no-completion-calls-dabbrev-expand-p' is non-nil, try dabbrev-expand. Otherwise, when `py-indent-no-completion-p' is non-nil, call `tab-to-tab-stop'.
py-python2-shell-complete
-------------------------
py-python3-shell-complete
-------------------------
Complete word before point, if any. Otherwise insert TAB.
py-shell-complete
-----------------
Complete word before point, if any. Otherwise insert TAB.
ipython-complete
----------------
Complete the python symbol before point.
If no completion available, insert a TAB.
Returns the completed symbol, a string, if successful, nil otherwise.
;;; Checker
-----------
pylint-flymake-mode
-------------------
Toggle `pylint' `flymake-mode'.
pyflakes-flymake-mode
---------------------
Toggle `pyflakes' `flymake-mode'.
pychecker-flymake-mode
----------------------
Toggle `pychecker' `flymake-mode'.
pep8-flymake-mode
-----------------
Toggle `pep8' `flymake-mode'.
pyflakespep8-flymake-mode
-------------------------
Toggle `pyflakespep8' `flymake-mode'.
Joint call to pyflakes and pep8 as proposed by
Keegan Carruthers-Smith
py-pep8-run
-----------
Run pep8, check formatting (default on the file currently visited).
py-pep8-help
------------
Display pep8 command line help messages.
py-pylint-run
-------------
Run pylint (default on the file currently visited).
For help see M-x pylint-help resp. M-x pylint-long-help.
Home-page: http://www.logilab.org/project/pylint
py-pylint-help
--------------
Display Pylint command line help messages.
Let's have this until more Emacs-like help is prepared
py-pylint-doku
--------------
Display Pylint Documentation.
Calls `pylint --full-documentation'
py-pyflakes-run
---------------
Run pyflakes (default on the file currently visited).
For help see M-x pyflakes-help resp. M-x pyflakes-long-help.
Home-page: http://www.logilab.org/project/pyflakes
py-pyflakes-help
----------------
Display Pyflakes command line help messages.
Let's have this until more Emacs-like help is prepared
py-pyflakespep8-run
-------------------
Run pyflakespep8, check formatting (default on the file currently visited).
py-pyflakespep8-help
--------------------
Display pyflakespep8 command line help messages.
py-flakes8-run
--------------
Run flakes8, check formatting (default on the file currently visited).
py-flakes8-help
---------------
Display flakes8 command line help messages.
py-pychecker-run
----------------
Run pychecker (default on the file currently visited).
;;; Skeletons
-------------
py-load-skeletons
-----------------
These skeletons are loaded by python-mode, if `py-load-skeletons-p' is non-nil.
;;; Virtualenv
--------------
(defun v
--------
virtualenv-current
------------------
Barfs the current activated virtualenv
virtualenv-activate
-------------------
Activate the virtualenv located in DIR
virtualenv-deactivate
---------------------
Deactivate the current virtual enviroment
virtualenv-workon
-----------------
Issue a virtualenvwrapper-like virtualenv-workon command
;;; Execute forms at point
--------------------------
py-execute-statement
--------------------
Send statement at point to a Python interpreter.
py-execute-top-level
--------------------
Send top-level at point to a Python interpreter.
py-execute-block
----------------
Send block at point to a Python interpreter.
py-execute-minor-block
----------------------
Send minor-block at point to a Python interpreter.
A minor block is started by a `for', `if', `try' or `with'.
py-execute-block-or-clause
--------------------------
Send block-or-clause at point to a Python interpreter.
py-execute-def
--------------
Send def at point to a Python interpreter.
py-execute-class
----------------
Send class at point to a Python interpreter.
py-execute-def-or-class
-----------------------
Send def-or-class at point to a Python interpreter.
py-execute-expression
---------------------
Send expression at point to a Python interpreter.
py-execute-partial-expression
-----------------------------
Send partial-expression at point to a Python interpreter.
;;; Execute line
----------------
;;; Execute file commands
-------------------------
py-execute-file-python
----------------------
Send file to a Python interpreter.
py-execute-file-python-switch
-----------------------------
Send file to a Python interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-python-no-switch
--------------------------------
Send file to a Python interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "nil"
py-execute-file-python-dedicated
--------------------------------
Send file to a Python interpreter.
Uses a dedicated shell.
py-execute-file-python-dedicated-switch
---------------------------------------
Send file to a Python interpreter.
Uses a dedicated shell.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-ipython
-----------------------
Send file to a Ipython interpreter.
py-execute-file-ipython-switch
------------------------------
Send file to a Ipython interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-ipython-no-switch
---------------------------------
Send file to a Ipython interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "nil"
py-execute-file-ipython-dedicated
---------------------------------
Send file to a Ipython interpreter.
Uses a dedicated shell.
py-execute-file-ipython-dedicated-switch
----------------------------------------
Send file to a Ipython interpreter.
Uses a dedicated shell.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-python3
-----------------------
Send file to a Python3 interpreter.
py-execute-file-python3-switch
------------------------------
Send file to a Python3 interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-python3-no-switch
---------------------------------
Send file to a Python3 interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "nil"
py-execute-file-python3-dedicated
---------------------------------
Send file to a Python3 interpreter.
Uses a dedicated shell.
py-execute-file-python3-dedicated-switch
----------------------------------------
Send file to a Python3 interpreter.
Uses a dedicated shell.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-python2
-----------------------
Send file to a Python2 interpreter.
py-execute-file-python2-switch
------------------------------
Send file to a Python2 interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-python2-no-switch
---------------------------------
Send file to a Python2 interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "nil"
py-execute-file-python2-dedicated
---------------------------------
Send file to a Python2 interpreter.
Uses a dedicated shell.
py-execute-file-python2-dedicated-switch
----------------------------------------
Send file to a Python2 interpreter.
Uses a dedicated shell.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-python2\.7
--------------------------
Send file to a Python2.7 interpreter.
py-execute-file-python2\.7-switch
---------------------------------
Send file to a Python2.7 interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-python2\.7-no-switch
------------------------------------
Send file to a Python2.7 interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "nil"
py-execute-file-python2\.7-dedicated
------------------------------------
Send file to a Python2.7 interpreter.
Uses a dedicated shell.
py-execute-file-python2\.7-dedicated-switch
-------------------------------------------
Send file to a Python2.7 interpreter.
Uses a dedicated shell.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-jython
----------------------
Send file to a Jython interpreter.
py-execute-file-jython-switch
-----------------------------
Send file to a Jython interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-jython-no-switch
--------------------------------
Send file to a Jython interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "nil"
py-execute-file-jython-dedicated
--------------------------------
Send file to a Jython interpreter.
Uses a dedicated shell.
py-execute-file-jython-dedicated-switch
---------------------------------------
Send file to a Jython interpreter.
Uses a dedicated shell.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-python3\.2
--------------------------
Send file to a Python3.2 interpreter.
py-execute-file-python3\.2-switch
---------------------------------
Send file to a Python3.2 interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-python3\.2-no-switch
------------------------------------
Send file to a Python3.2 interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "nil"
py-execute-file-python3\.2-dedicated
------------------------------------
Send file to a Python3.2 interpreter.
Uses a dedicated shell.
py-execute-file-python3\.2-dedicated-switch
-------------------------------------------
Send file to a Python3.2 interpreter.
Uses a dedicated shell.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-python3\.3
--------------------------
Send file to a Python3.3 interpreter.
py-execute-file-python3\.3-switch
---------------------------------
Send file to a Python3.3 interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-python3\.3-no-switch
------------------------------------
Send file to a Python3.3 interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "nil"
py-execute-file-python3\.3-dedicated
------------------------------------
Send file to a Python3.3 interpreter.
Uses a dedicated shell.
py-execute-file-python3\.3-dedicated-switch
-------------------------------------------
Send file to a Python3.3 interpreter.
Uses a dedicated shell.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-bpython
-----------------------
Send file to a Bpython interpreter.
py-execute-file-bpython-switch
------------------------------
Send file to a Bpython interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
py-execute-file-bpython-no-switch
---------------------------------
Send file to a Bpython interpreter.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "nil"
py-execute-file-bpython-dedicated
---------------------------------
Send file to a Bpython interpreter.
Uses a dedicated shell.
py-execute-file-bpython-dedicated-switch
----------------------------------------
Send file to a Bpython interpreter.
Uses a dedicated shell.
Ignores default of `py-switch-buffers-on-execute-p', uses it with value "non-nil"
;;; Extended executes
---------------------
py-execute-statement-python
---------------------------
Send statement at point to Python interpreter.
py-execute-statement-python-switch
----------------------------------
Send statement at point to Python interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-statement-python-no-switch
-------------------------------------
Send statement at point to Python interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-statement-python-dedicated
-------------------------------------
Send statement at point to Python unique interpreter.
py-execute-statement-python-dedicated-switch
--------------------------------------------
Send statement at point to Python unique interpreter and switch to result.
py-execute-statement-ipython
----------------------------
Send statement at point to IPython interpreter.
py-execute-statement-ipython-switch
-----------------------------------
Send statement at point to IPython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-statement-ipython-no-switch
--------------------------------------
Send statement at point to IPython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-statement-ipython-dedicated
--------------------------------------
Send statement at point to IPython unique interpreter.
py-execute-statement-ipython-dedicated-switch
---------------------------------------------
Send statement at point to IPython unique interpreter and switch to result.
py-execute-statement-python3
----------------------------
Send statement at point to Python3 interpreter.
py-execute-statement-python3-switch
-----------------------------------
Send statement at point to Python3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-statement-python3-no-switch
--------------------------------------
Send statement at point to Python3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-statement-python3-dedicated
--------------------------------------
Send statement at point to Python3 unique interpreter.
py-execute-statement-python3-dedicated-switch
---------------------------------------------
Send statement at point to Python3 unique interpreter and switch to result.
py-execute-statement-python2
----------------------------
Send statement at point to Python2 interpreter.
py-execute-statement-python2-switch
-----------------------------------
Send statement at point to Python2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-statement-python2-no-switch
--------------------------------------
Send statement at point to Python2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-statement-python2-dedicated
--------------------------------------
Send statement at point to Python2 unique interpreter.
py-execute-statement-python2-dedicated-switch
---------------------------------------------
Send statement at point to Python2 unique interpreter and switch to result.
py-execute-statement-python2\.7
-------------------------------
Send statement at point to Python2.7 interpreter.
py-execute-statement-python2\.7-switch
--------------------------------------
Send statement at point to Python2.7 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-statement-python2\.7-no-switch
-----------------------------------------
Send statement at point to Python2.7 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-statement-python2\.7-dedicated
-----------------------------------------
Send statement at point to Python2.7 unique interpreter.
py-execute-statement-python2\.7-dedicated-switch
------------------------------------------------
Send statement at point to Python2.7 unique interpreter and switch to result.
py-execute-statement-jython
---------------------------
Send statement at point to Jython interpreter.
py-execute-statement-jython-switch
----------------------------------
Send statement at point to Jython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-statement-jython-no-switch
-------------------------------------
Send statement at point to Jython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-statement-jython-dedicated
-------------------------------------
Send statement at point to Jython unique interpreter.
py-execute-statement-jython-dedicated-switch
--------------------------------------------
Send statement at point to Jython unique interpreter and switch to result.
py-execute-statement-python3\.2
-------------------------------
Send statement at point to Python3.2 interpreter.
py-execute-statement-python3\.2-switch
--------------------------------------
Send statement at point to Python3.2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-statement-python3\.2-no-switch
-----------------------------------------
Send statement at point to Python3.2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-statement-python3\.2-dedicated
-----------------------------------------
Send statement at point to Python3.2 unique interpreter.
py-execute-statement-python3\.2-dedicated-switch
------------------------------------------------
Send statement at point to Python3.2 unique interpreter and switch to result.
py-execute-statement-python3\.3
-------------------------------
Send statement at point to Python3.3 interpreter.
py-execute-statement-python3\.3-switch
--------------------------------------
Send statement at point to Python3.3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-statement-python3\.3-no-switch
-----------------------------------------
Send statement at point to Python3.3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-statement-python3\.3-dedicated
-----------------------------------------
Send statement at point to Python3.3 unique interpreter.
py-execute-statement-python3\.3-dedicated-switch
------------------------------------------------
Send statement at point to Python3.3 unique interpreter and switch to result.
py-execute-statement-bpython
----------------------------
Send statement at point to Bpython interpreter.
py-execute-statement-bpython-switch
-----------------------------------
Send statement at point to Bpython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-statement-bpython-no-switch
--------------------------------------
Send statement at point to Bpython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-statement-bpython-dedicated
--------------------------------------
Send statement at point to Bpython unique interpreter.
py-execute-statement-bpython-dedicated-switch
---------------------------------------------
Send statement at point to Bpython unique interpreter and switch to result.
py-execute-block-python
-----------------------
Send block at point to Python interpreter.
py-execute-block-python-switch
------------------------------
Send block at point to Python interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-python-no-switch
---------------------------------
Send block at point to Python interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-python-dedicated
---------------------------------
Send block at point to Python unique interpreter.
py-execute-block-python-dedicated-switch
----------------------------------------
Send block at point to Python unique interpreter and switch to result.
py-execute-block-ipython
------------------------
Send block at point to IPython interpreter.
py-execute-block-ipython-switch
-------------------------------
Send block at point to IPython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-ipython-no-switch
----------------------------------
Send block at point to IPython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-ipython-dedicated
----------------------------------
Send block at point to IPython unique interpreter.
py-execute-block-ipython-dedicated-switch
-----------------------------------------
Send block at point to IPython unique interpreter and switch to result.
py-execute-block-python3
------------------------
Send block at point to Python3 interpreter.
py-execute-block-python3-switch
-------------------------------
Send block at point to Python3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-python3-no-switch
----------------------------------
Send block at point to Python3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-python3-dedicated
----------------------------------
Send block at point to Python3 unique interpreter.
py-execute-block-python3-dedicated-switch
-----------------------------------------
Send block at point to Python3 unique interpreter and switch to result.
py-execute-block-python2
------------------------
Send block at point to Python2 interpreter.
py-execute-block-python2-switch
-------------------------------
Send block at point to Python2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-python2-no-switch
----------------------------------
Send block at point to Python2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-python2-dedicated
----------------------------------
Send block at point to Python2 unique interpreter.
py-execute-block-python2-dedicated-switch
-----------------------------------------
Send block at point to Python2 unique interpreter and switch to result.
py-execute-block-python2\.7
---------------------------
Send block at point to Python2.7 interpreter.
py-execute-block-python2\.7-switch
----------------------------------
Send block at point to Python2.7 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-python2\.7-no-switch
-------------------------------------
Send block at point to Python2.7 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-python2\.7-dedicated
-------------------------------------
Send block at point to Python2.7 unique interpreter.
py-execute-block-python2\.7-dedicated-switch
--------------------------------------------
Send block at point to Python2.7 unique interpreter and switch to result.
py-execute-block-jython
-----------------------
Send block at point to Jython interpreter.
py-execute-block-jython-switch
------------------------------
Send block at point to Jython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-jython-no-switch
---------------------------------
Send block at point to Jython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-jython-dedicated
---------------------------------
Send block at point to Jython unique interpreter.
py-execute-block-jython-dedicated-switch
----------------------------------------
Send block at point to Jython unique interpreter and switch to result.
py-execute-block-python3\.2
---------------------------
Send block at point to Python3.2 interpreter.
py-execute-block-python3\.2-switch
----------------------------------
Send block at point to Python3.2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-python3\.2-no-switch
-------------------------------------
Send block at point to Python3.2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-python3\.2-dedicated
-------------------------------------
Send block at point to Python3.2 unique interpreter.
py-execute-block-python3\.2-dedicated-switch
--------------------------------------------
Send block at point to Python3.2 unique interpreter and switch to result.
py-execute-block-python3\.3
---------------------------
Send block at point to Python3.3 interpreter.
py-execute-block-python3\.3-switch
----------------------------------
Send block at point to Python3.3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-python3\.3-no-switch
-------------------------------------
Send block at point to Python3.3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-python3\.3-dedicated
-------------------------------------
Send block at point to Python3.3 unique interpreter.
py-execute-block-python3\.3-dedicated-switch
--------------------------------------------
Send block at point to Python3.3 unique interpreter and switch to result.
py-execute-block-bpython
------------------------
Send block at point to Bpython interpreter.
py-execute-block-bpython-switch
-------------------------------
Send block at point to Bpython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-bpython-no-switch
----------------------------------
Send block at point to Bpython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-bpython-dedicated
----------------------------------
Send block at point to Bpython unique interpreter.
py-execute-block-bpython-dedicated-switch
-----------------------------------------
Send block at point to Bpython unique interpreter and switch to result.
py-execute-clause-python
------------------------
Send clause at point to Python interpreter.
py-execute-clause-python-switch
-------------------------------
Send clause at point to Python interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-clause-python-no-switch
----------------------------------
Send clause at point to Python interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-clause-python-dedicated
----------------------------------
Send clause at point to Python unique interpreter.
py-execute-clause-python-dedicated-switch
-----------------------------------------
Send clause at point to Python unique interpreter and switch to result.
py-execute-clause-ipython
-------------------------
Send clause at point to IPython interpreter.
py-execute-clause-ipython-switch
--------------------------------
Send clause at point to IPython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-clause-ipython-no-switch
-----------------------------------
Send clause at point to IPython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-clause-ipython-dedicated
-----------------------------------
Send clause at point to IPython unique interpreter.
py-execute-clause-ipython-dedicated-switch
------------------------------------------
Send clause at point to IPython unique interpreter and switch to result.
py-execute-clause-python3
-------------------------
Send clause at point to Python3 interpreter.
py-execute-clause-python3-switch
--------------------------------
Send clause at point to Python3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-clause-python3-no-switch
-----------------------------------
Send clause at point to Python3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-clause-python3-dedicated
-----------------------------------
Send clause at point to Python3 unique interpreter.
py-execute-clause-python3-dedicated-switch
------------------------------------------
Send clause at point to Python3 unique interpreter and switch to result.
py-execute-clause-python2
-------------------------
Send clause at point to Python2 interpreter.
py-execute-clause-python2-switch
--------------------------------
Send clause at point to Python2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-clause-python2-no-switch
-----------------------------------
Send clause at point to Python2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-clause-python2-dedicated
-----------------------------------
Send clause at point to Python2 unique interpreter.
py-execute-clause-python2-dedicated-switch
------------------------------------------
Send clause at point to Python2 unique interpreter and switch to result.
py-execute-clause-python2\.7
----------------------------
Send clause at point to Python2.7 interpreter.
py-execute-clause-python2\.7-switch
-----------------------------------
Send clause at point to Python2.7 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-clause-python2\.7-no-switch
--------------------------------------
Send clause at point to Python2.7 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-clause-python2\.7-dedicated
--------------------------------------
Send clause at point to Python2.7 unique interpreter.
py-execute-clause-python2\.7-dedicated-switch
---------------------------------------------
Send clause at point to Python2.7 unique interpreter and switch to result.
py-execute-clause-jython
------------------------
Send clause at point to Jython interpreter.
py-execute-clause-jython-switch
-------------------------------
Send clause at point to Jython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-clause-jython-no-switch
----------------------------------
Send clause at point to Jython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-clause-jython-dedicated
----------------------------------
Send clause at point to Jython unique interpreter.
py-execute-clause-jython-dedicated-switch
-----------------------------------------
Send clause at point to Jython unique interpreter and switch to result.
py-execute-clause-python3\.2
----------------------------
Send clause at point to Python3.2 interpreter.
py-execute-clause-python3\.2-switch
-----------------------------------
Send clause at point to Python3.2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-clause-python3\.2-no-switch
--------------------------------------
Send clause at point to Python3.2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-clause-python3\.2-dedicated
--------------------------------------
Send clause at point to Python3.2 unique interpreter.
py-execute-clause-python3\.2-dedicated-switch
---------------------------------------------
Send clause at point to Python3.2 unique interpreter and switch to result.
py-execute-clause-python3\.3
----------------------------
Send clause at point to Python3.3 interpreter.
py-execute-clause-python3\.3-switch
-----------------------------------
Send clause at point to Python3.3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-clause-python3\.3-no-switch
--------------------------------------
Send clause at point to Python3.3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-clause-python3\.3-dedicated
--------------------------------------
Send clause at point to Python3.3 unique interpreter.
py-execute-clause-python3\.3-dedicated-switch
---------------------------------------------
Send clause at point to Python3.3 unique interpreter and switch to result.
py-execute-clause-bpython
-------------------------
Send clause at point to Bpython interpreter.
py-execute-clause-bpython-switch
--------------------------------
Send clause at point to Bpython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-clause-bpython-no-switch
-----------------------------------
Send clause at point to Bpython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-clause-bpython-dedicated
-----------------------------------
Send clause at point to Bpython unique interpreter.
py-execute-clause-bpython-dedicated-switch
------------------------------------------
Send clause at point to Bpython unique interpreter and switch to result.
py-execute-block-or-clause-python
---------------------------------
Send block-or-clause at point to Python interpreter.
py-execute-block-or-clause-python-switch
----------------------------------------
Send block-or-clause at point to Python interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-or-clause-python-no-switch
-------------------------------------------
Send block-or-clause at point to Python interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-or-clause-python-dedicated
-------------------------------------------
Send block-or-clause at point to Python unique interpreter.
py-execute-block-or-clause-python-dedicated-switch
--------------------------------------------------
Send block-or-clause at point to Python unique interpreter and switch to result.
py-execute-block-or-clause-ipython
----------------------------------
Send block-or-clause at point to IPython interpreter.
py-execute-block-or-clause-ipython-switch
-----------------------------------------
Send block-or-clause at point to IPython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-or-clause-ipython-no-switch
--------------------------------------------
Send block-or-clause at point to IPython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-or-clause-ipython-dedicated
--------------------------------------------
Send block-or-clause at point to IPython unique interpreter.
py-execute-block-or-clause-ipython-dedicated-switch
---------------------------------------------------
Send block-or-clause at point to IPython unique interpreter and switch to result.
py-execute-block-or-clause-python3
----------------------------------
Send block-or-clause at point to Python3 interpreter.
py-execute-block-or-clause-python3-switch
-----------------------------------------
Send block-or-clause at point to Python3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-or-clause-python3-no-switch
--------------------------------------------
Send block-or-clause at point to Python3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-or-clause-python3-dedicated
--------------------------------------------
Send block-or-clause at point to Python3 unique interpreter.
py-execute-block-or-clause-python3-dedicated-switch
---------------------------------------------------
Send block-or-clause at point to Python3 unique interpreter and switch to result.
py-execute-block-or-clause-python2
----------------------------------
Send block-or-clause at point to Python2 interpreter.
py-execute-block-or-clause-python2-switch
-----------------------------------------
Send block-or-clause at point to Python2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-or-clause-python2-no-switch
--------------------------------------------
Send block-or-clause at point to Python2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-or-clause-python2-dedicated
--------------------------------------------
Send block-or-clause at point to Python2 unique interpreter.
py-execute-block-or-clause-python2-dedicated-switch
---------------------------------------------------
Send block-or-clause at point to Python2 unique interpreter and switch to result.
py-execute-block-or-clause-python2\.7
-------------------------------------
Send block-or-clause at point to Python2.7 interpreter.
py-execute-block-or-clause-python2\.7-switch
--------------------------------------------
Send block-or-clause at point to Python2.7 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-or-clause-python2\.7-no-switch
-----------------------------------------------
Send block-or-clause at point to Python2.7 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-or-clause-python2\.7-dedicated
-----------------------------------------------
Send block-or-clause at point to Python2.7 unique interpreter.
py-execute-block-or-clause-python2\.7-dedicated-switch
------------------------------------------------------
Send block-or-clause at point to Python2.7 unique interpreter and switch to result.
py-execute-block-or-clause-jython
---------------------------------
Send block-or-clause at point to Jython interpreter.
py-execute-block-or-clause-jython-switch
----------------------------------------
Send block-or-clause at point to Jython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-or-clause-jython-no-switch
-------------------------------------------
Send block-or-clause at point to Jython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-or-clause-jython-dedicated
-------------------------------------------
Send block-or-clause at point to Jython unique interpreter.
py-execute-block-or-clause-jython-dedicated-switch
--------------------------------------------------
Send block-or-clause at point to Jython unique interpreter and switch to result.
py-execute-block-or-clause-python3\.2
-------------------------------------
Send block-or-clause at point to Python3.2 interpreter.
py-execute-block-or-clause-python3\.2-switch
--------------------------------------------
Send block-or-clause at point to Python3.2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-or-clause-python3\.2-no-switch
-----------------------------------------------
Send block-or-clause at point to Python3.2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-or-clause-python3\.2-dedicated
-----------------------------------------------
Send block-or-clause at point to Python3.2 unique interpreter.
py-execute-block-or-clause-python3\.2-dedicated-switch
------------------------------------------------------
Send block-or-clause at point to Python3.2 unique interpreter and switch to result.
py-execute-block-or-clause-python3\.3
-------------------------------------
Send block-or-clause at point to Python3.3 interpreter.
py-execute-block-or-clause-python3\.3-switch
--------------------------------------------
Send block-or-clause at point to Python3.3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-or-clause-python3\.3-no-switch
-----------------------------------------------
Send block-or-clause at point to Python3.3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-or-clause-python3\.3-dedicated
-----------------------------------------------
Send block-or-clause at point to Python3.3 unique interpreter.
py-execute-block-or-clause-python3\.3-dedicated-switch
------------------------------------------------------
Send block-or-clause at point to Python3.3 unique interpreter and switch to result.
py-execute-block-or-clause-bpython
----------------------------------
Send block-or-clause at point to Bpython interpreter.
py-execute-block-or-clause-bpython-switch
-----------------------------------------
Send block-or-clause at point to Bpython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-block-or-clause-bpython-no-switch
--------------------------------------------
Send block-or-clause at point to Bpython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-block-or-clause-bpython-dedicated
--------------------------------------------
Send block-or-clause at point to Bpython unique interpreter.
py-execute-block-or-clause-bpython-dedicated-switch
---------------------------------------------------
Send block-or-clause at point to Bpython unique interpreter and switch to result.
py-execute-def-python
---------------------
Send def at point to Python interpreter.
py-execute-def-python-switch
----------------------------
Send def at point to Python interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-def-python-no-switch
-------------------------------
Send def at point to Python interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-def-python-dedicated
-------------------------------
Send def at point to Python unique interpreter.
py-execute-def-python-dedicated-switch
--------------------------------------
Send def at point to Python unique interpreter and switch to result.
py-execute-def-ipython
----------------------
Send def at point to IPython interpreter.
py-execute-def-ipython-switch
-----------------------------
Send def at point to IPython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-def-ipython-no-switch
--------------------------------
Send def at point to IPython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-def-ipython-dedicated
--------------------------------
Send def at point to IPython unique interpreter.
py-execute-def-ipython-dedicated-switch
---------------------------------------
Send def at point to IPython unique interpreter and switch to result.
py-execute-def-python3
----------------------
Send def at point to Python3 interpreter.
py-execute-def-python3-switch
-----------------------------
Send def at point to Python3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-def-python3-no-switch
--------------------------------
Send def at point to Python3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-def-python3-dedicated
--------------------------------
Send def at point to Python3 unique interpreter.
py-execute-def-python3-dedicated-switch
---------------------------------------
Send def at point to Python3 unique interpreter and switch to result.
py-execute-def-python2
----------------------
Send def at point to Python2 interpreter.
py-execute-def-python2-switch
-----------------------------
Send def at point to Python2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-def-python2-no-switch
--------------------------------
Send def at point to Python2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-def-python2-dedicated
--------------------------------
Send def at point to Python2 unique interpreter.
py-execute-def-python2-dedicated-switch
---------------------------------------
Send def at point to Python2 unique interpreter and switch to result.
py-execute-def-python2\.7
-------------------------
Send def at point to Python2.7 interpreter.
py-execute-def-python2\.7-switch
--------------------------------
Send def at point to Python2.7 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-def-python2\.7-no-switch
-----------------------------------
Send def at point to Python2.7 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-def-python2\.7-dedicated
-----------------------------------
Send def at point to Python2.7 unique interpreter.
py-execute-def-python2\.7-dedicated-switch
------------------------------------------
Send def at point to Python2.7 unique interpreter and switch to result.
py-execute-def-jython
---------------------
Send def at point to Jython interpreter.
py-execute-def-jython-switch
----------------------------
Send def at point to Jython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-def-jython-no-switch
-------------------------------
Send def at point to Jython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-def-jython-dedicated
-------------------------------
Send def at point to Jython unique interpreter.
py-execute-def-jython-dedicated-switch
--------------------------------------
Send def at point to Jython unique interpreter and switch to result.
py-execute-def-python3\.2
-------------------------
Send def at point to Python3.2 interpreter.
py-execute-def-python3\.2-switch
--------------------------------
Send def at point to Python3.2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-def-python3\.2-no-switch
-----------------------------------
Send def at point to Python3.2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-def-python3\.2-dedicated
-----------------------------------
Send def at point to Python3.2 unique interpreter.
py-execute-def-python3\.2-dedicated-switch
------------------------------------------
Send def at point to Python3.2 unique interpreter and switch to result.
py-execute-def-python3\.3
-------------------------
Send def at point to Python3.3 interpreter.
py-execute-def-python3\.3-switch
--------------------------------
Send def at point to Python3.3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-def-python3\.3-no-switch
-----------------------------------
Send def at point to Python3.3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-def-python3\.3-dedicated
-----------------------------------
Send def at point to Python3.3 unique interpreter.
py-execute-def-python3\.3-dedicated-switch
------------------------------------------
Send def at point to Python3.3 unique interpreter and switch to result.
py-execute-def-bpython
----------------------
Send def at point to Bpython interpreter.
py-execute-def-bpython-switch
-----------------------------
Send def at point to Bpython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-def-bpython-no-switch
--------------------------------
Send def at point to Bpython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-def-bpython-dedicated
--------------------------------
Send def at point to Bpython unique interpreter.
py-execute-def-bpython-dedicated-switch
---------------------------------------
Send def at point to Bpython unique interpreter and switch to result.
py-execute-class-python
-----------------------
Send class at point to Python interpreter.
py-execute-class-python-switch
------------------------------
Send class at point to Python interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-class-python-no-switch
---------------------------------
Send class at point to Python interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-class-python-dedicated
---------------------------------
Send class at point to Python unique interpreter.
py-execute-class-python-dedicated-switch
----------------------------------------
Send class at point to Python unique interpreter and switch to result.
py-execute-class-ipython
------------------------
Send class at point to IPython interpreter.
py-execute-class-ipython-switch
-------------------------------
Send class at point to IPython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-class-ipython-no-switch
----------------------------------
Send class at point to IPython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-class-ipython-dedicated
----------------------------------
Send class at point to IPython unique interpreter.
py-execute-class-ipython-dedicated-switch
-----------------------------------------
Send class at point to IPython unique interpreter and switch to result.
py-execute-class-python3
------------------------
Send class at point to Python3 interpreter.
py-execute-class-python3-switch
-------------------------------
Send class at point to Python3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-class-python3-no-switch
----------------------------------
Send class at point to Python3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-class-python3-dedicated
----------------------------------
Send class at point to Python3 unique interpreter.
py-execute-class-python3-dedicated-switch
-----------------------------------------
Send class at point to Python3 unique interpreter and switch to result.
py-execute-class-python2
------------------------
Send class at point to Python2 interpreter.
py-execute-class-python2-switch
-------------------------------
Send class at point to Python2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-class-python2-no-switch
----------------------------------
Send class at point to Python2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-class-python2-dedicated
----------------------------------
Send class at point to Python2 unique interpreter.
py-execute-class-python2-dedicated-switch
-----------------------------------------
Send class at point to Python2 unique interpreter and switch to result.
py-execute-class-python2\.7
---------------------------
Send class at point to Python2.7 interpreter.
py-execute-class-python2\.7-switch
----------------------------------
Send class at point to Python2.7 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-class-python2\.7-no-switch
-------------------------------------
Send class at point to Python2.7 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-class-python2\.7-dedicated
-------------------------------------
Send class at point to Python2.7 unique interpreter.
py-execute-class-python2\.7-dedicated-switch
--------------------------------------------
Send class at point to Python2.7 unique interpreter and switch to result.
py-execute-class-jython
-----------------------
Send class at point to Jython interpreter.
py-execute-class-jython-switch
------------------------------
Send class at point to Jython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-class-jython-no-switch
---------------------------------
Send class at point to Jython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-class-jython-dedicated
---------------------------------
Send class at point to Jython unique interpreter.
py-execute-class-jython-dedicated-switch
----------------------------------------
Send class at point to Jython unique interpreter and switch to result.
py-execute-class-python3\.2
---------------------------
Send class at point to Python3.2 interpreter.
py-execute-class-python3\.2-switch
----------------------------------
Send class at point to Python3.2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-class-python3\.2-no-switch
-------------------------------------
Send class at point to Python3.2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-class-python3\.2-dedicated
-------------------------------------
Send class at point to Python3.2 unique interpreter.
py-execute-class-python3\.2-dedicated-switch
--------------------------------------------
Send class at point to Python3.2 unique interpreter and switch to result.
py-execute-class-python3\.3
---------------------------
Send class at point to Python3.3 interpreter.
py-execute-class-python3\.3-switch
----------------------------------
Send class at point to Python3.3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-class-python3\.3-no-switch
-------------------------------------
Send class at point to Python3.3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-class-python3\.3-dedicated
-------------------------------------
Send class at point to Python3.3 unique interpreter.
py-execute-class-python3\.3-dedicated-switch
--------------------------------------------
Send class at point to Python3.3 unique interpreter and switch to result.
py-execute-class-bpython
------------------------
Send class at point to Bpython interpreter.
py-execute-class-bpython-switch
-------------------------------
Send class at point to Bpython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-class-bpython-no-switch
----------------------------------
Send class at point to Bpython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-class-bpython-dedicated
----------------------------------
Send class at point to Bpython unique interpreter.
py-execute-class-bpython-dedicated-switch
-----------------------------------------
Send class at point to Bpython unique interpreter and switch to result.
py-execute-region-python
------------------------
Send region at point to Python interpreter.
py-execute-region-python-switch
-------------------------------
Send region at point to Python interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-region-python-no-switch
----------------------------------
Send region at point to Python interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-region-python-dedicated
----------------------------------
Send region at point to Python unique interpreter.
py-execute-region-python-dedicated-switch
-----------------------------------------
Send region at point to Python unique interpreter and switch to result.
py-execute-region-ipython
-------------------------
Send region at point to IPython interpreter.
py-execute-region-ipython-switch
--------------------------------
Send region at point to IPython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-region-ipython-no-switch
-----------------------------------
Send region at point to IPython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-region-ipython-dedicated
-----------------------------------
Send region at point to IPython unique interpreter.
py-execute-region-ipython-dedicated-switch
------------------------------------------
Send region at point to IPython unique interpreter and switch to result.
py-execute-region-python3
-------------------------
Send region at point to Python3 interpreter.
py-execute-region-python3-switch
--------------------------------
Send region at point to Python3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-region-python3-no-switch
-----------------------------------
Send region at point to Python3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-region-python3-dedicated
-----------------------------------
Send region at point to Python3 unique interpreter.
py-execute-region-python3-dedicated-switch
------------------------------------------
Send region at point to Python3 unique interpreter and switch to result.
py-execute-region-python2
-------------------------
Send region at point to Python2 interpreter.
py-execute-region-python2-switch
--------------------------------
Send region at point to Python2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-region-python2-no-switch
-----------------------------------
Send region at point to Python2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-region-python2-dedicated
-----------------------------------
Send region at point to Python2 unique interpreter.
py-execute-region-python2-dedicated-switch
------------------------------------------
Send region at point to Python2 unique interpreter and switch to result.
py-execute-region-python2\.7
----------------------------
Send region at point to Python2.7 interpreter.
py-execute-region-python2\.7-switch
-----------------------------------
Send region at point to Python2.7 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-region-python2\.7-no-switch
--------------------------------------
Send region at point to Python2.7 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-region-python2\.7-dedicated
--------------------------------------
Send region at point to Python2.7 unique interpreter.
py-execute-region-python2\.7-dedicated-switch
---------------------------------------------
Send region at point to Python2.7 unique interpreter and switch to result.
py-execute-region-jython
------------------------
Send region at point to Jython interpreter.
py-execute-region-jython-switch
-------------------------------
Send region at point to Jython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-region-jython-no-switch
----------------------------------
Send region at point to Jython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-region-jython-dedicated
----------------------------------
Send region at point to Jython unique interpreter.
py-execute-region-jython-dedicated-switch
-----------------------------------------
Send region at point to Jython unique interpreter and switch to result.
py-execute-region-python3\.2
----------------------------
Send region at point to Python3.2 interpreter.
py-execute-region-python3\.2-switch
-----------------------------------
Send region at point to Python3.2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-region-python3\.2-no-switch
--------------------------------------
Send region at point to Python3.2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-region-python3\.2-dedicated
--------------------------------------
Send region at point to Python3.2 unique interpreter.
py-execute-region-python3\.2-dedicated-switch
---------------------------------------------
Send region at point to Python3.2 unique interpreter and switch to result.
py-execute-region-python3\.3
----------------------------
Send region at point to Python3.3 interpreter.
py-execute-region-python3\.3-switch
-----------------------------------
Send region at point to Python3.3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-region-python3\.3-no-switch
--------------------------------------
Send region at point to Python3.3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-region-python3\.3-dedicated
--------------------------------------
Send region at point to Python3.3 unique interpreter.
py-execute-region-python3\.3-dedicated-switch
---------------------------------------------
Send region at point to Python3.3 unique interpreter and switch to result.
py-execute-region-bpython
-------------------------
Send region at point to Bpython interpreter.
py-execute-region-bpython-switch
--------------------------------
Send region at point to Bpython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-region-bpython-no-switch
-----------------------------------
Send region at point to Bpython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-region-bpython-dedicated
-----------------------------------
Send region at point to Bpython unique interpreter.
py-execute-region-bpython-dedicated-switch
------------------------------------------
Send region at point to Bpython unique interpreter and switch to result.
py-execute-buffer-python
------------------------
Send buffer at point to Python interpreter.
py-execute-buffer-python-switch
-------------------------------
Send buffer at point to Python interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-buffer-python-no-switch
----------------------------------
Send buffer at point to Python interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-buffer-python-dedicated
----------------------------------
Send buffer at point to Python unique interpreter.
py-execute-buffer-python-dedicated-switch
-----------------------------------------
Send buffer at point to Python unique interpreter and switch to result.
py-execute-buffer-ipython
-------------------------
Send buffer at point to IPython interpreter.
py-execute-buffer-ipython-switch
--------------------------------
Send buffer at point to IPython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-buffer-ipython-no-switch
-----------------------------------
Send buffer at point to IPython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-buffer-ipython-dedicated
-----------------------------------
Send buffer at point to IPython unique interpreter.
py-execute-buffer-ipython-dedicated-switch
------------------------------------------
Send buffer at point to IPython unique interpreter and switch to result.
py-execute-buffer-python3
-------------------------
Send buffer at point to Python3 interpreter.
py-execute-buffer-python3-switch
--------------------------------
Send buffer at point to Python3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-buffer-python3-no-switch
-----------------------------------
Send buffer at point to Python3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-buffer-python3-dedicated
-----------------------------------
Send buffer at point to Python3 unique interpreter.
py-execute-buffer-python3-dedicated-switch
------------------------------------------
Send buffer at point to Python3 unique interpreter and switch to result.
py-execute-buffer-python2
-------------------------
Send buffer at point to Python2 interpreter.
py-execute-buffer-python2-switch
--------------------------------
Send buffer at point to Python2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-buffer-python2-no-switch
-----------------------------------
Send buffer at point to Python2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-buffer-python2-dedicated
-----------------------------------
Send buffer at point to Python2 unique interpreter.
py-execute-buffer-python2-dedicated-switch
------------------------------------------
Send buffer at point to Python2 unique interpreter and switch to result.
py-execute-buffer-python2\.7
----------------------------
Send buffer at point to Python2.7 interpreter.
py-execute-buffer-python2\.7-switch
-----------------------------------
Send buffer at point to Python2.7 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-buffer-python2\.7-no-switch
--------------------------------------
Send buffer at point to Python2.7 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-buffer-python2\.7-dedicated
--------------------------------------
Send buffer at point to Python2.7 unique interpreter.
py-execute-buffer-python2\.7-dedicated-switch
---------------------------------------------
Send buffer at point to Python2.7 unique interpreter and switch to result.
py-execute-buffer-jython
------------------------
Send buffer at point to Jython interpreter.
py-execute-buffer-jython-switch
-------------------------------
Send buffer at point to Jython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-buffer-jython-no-switch
----------------------------------
Send buffer at point to Jython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-buffer-jython-dedicated
----------------------------------
Send buffer at point to Jython unique interpreter.
py-execute-buffer-jython-dedicated-switch
-----------------------------------------
Send buffer at point to Jython unique interpreter and switch to result.
py-execute-buffer-python3\.2
----------------------------
Send buffer at point to Python3.2 interpreter.
py-execute-buffer-python3\.2-switch
-----------------------------------
Send buffer at point to Python3.2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-buffer-python3\.2-no-switch
--------------------------------------
Send buffer at point to Python3.2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-buffer-python3\.2-dedicated
--------------------------------------
Send buffer at point to Python3.2 unique interpreter.
py-execute-buffer-python3\.2-dedicated-switch
---------------------------------------------
Send buffer at point to Python3.2 unique interpreter and switch to result.
py-execute-buffer-python3\.3
----------------------------
Send buffer at point to Python3.3 interpreter.
py-execute-buffer-python3\.3-switch
-----------------------------------
Send buffer at point to Python3.3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-buffer-python3\.3-no-switch
--------------------------------------
Send buffer at point to Python3.3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-buffer-python3\.3-dedicated
--------------------------------------
Send buffer at point to Python3.3 unique interpreter.
py-execute-buffer-python3\.3-dedicated-switch
---------------------------------------------
Send buffer at point to Python3.3 unique interpreter and switch to result.
py-execute-buffer-bpython
-------------------------
Send buffer at point to Bpython interpreter.
py-execute-buffer-bpython-switch
--------------------------------
Send buffer at point to Bpython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-buffer-bpython-no-switch
-----------------------------------
Send buffer at point to Bpython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-buffer-bpython-dedicated
-----------------------------------
Send buffer at point to Bpython unique interpreter.
py-execute-buffer-bpython-dedicated-switch
------------------------------------------
Send buffer at point to Bpython unique interpreter and switch to result.
py-execute-expression-python
----------------------------
Send expression at point to Python interpreter.
py-execute-expression-python-switch
-----------------------------------
Send expression at point to Python interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-expression-python-no-switch
--------------------------------------
Send expression at point to Python interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-expression-python-dedicated
--------------------------------------
Send expression at point to Python unique interpreter.
py-execute-expression-python-dedicated-switch
---------------------------------------------
Send expression at point to Python unique interpreter and switch to result.
py-execute-expression-ipython
-----------------------------
Send expression at point to IPython interpreter.
py-execute-expression-ipython-switch
------------------------------------
Send expression at point to IPython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-expression-ipython-no-switch
---------------------------------------
Send expression at point to IPython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-expression-ipython-dedicated
---------------------------------------
Send expression at point to IPython unique interpreter.
py-execute-expression-ipython-dedicated-switch
----------------------------------------------
Send expression at point to IPython unique interpreter and switch to result.
py-execute-expression-python3
-----------------------------
Send expression at point to Python3 interpreter.
py-execute-expression-python3-switch
------------------------------------
Send expression at point to Python3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-expression-python3-no-switch
---------------------------------------
Send expression at point to Python3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-expression-python3-dedicated
---------------------------------------
Send expression at point to Python3 unique interpreter.
py-execute-expression-python3-dedicated-switch
----------------------------------------------
Send expression at point to Python3 unique interpreter and switch to result.
py-execute-expression-python2
-----------------------------
Send expression at point to Python2 interpreter.
py-execute-expression-python2-switch
------------------------------------
Send expression at point to Python2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-expression-python2-no-switch
---------------------------------------
Send expression at point to Python2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-expression-python2-dedicated
---------------------------------------
Send expression at point to Python2 unique interpreter.
py-execute-expression-python2-dedicated-switch
----------------------------------------------
Send expression at point to Python2 unique interpreter and switch to result.
py-execute-expression-python2\.7
--------------------------------
Send expression at point to Python2.7 interpreter.
py-execute-expression-python2\.7-switch
---------------------------------------
Send expression at point to Python2.7 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-expression-python2\.7-no-switch
------------------------------------------
Send expression at point to Python2.7 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-expression-python2\.7-dedicated
------------------------------------------
Send expression at point to Python2.7 unique interpreter.
py-execute-expression-python2\.7-dedicated-switch
-------------------------------------------------
Send expression at point to Python2.7 unique interpreter and switch to result.
py-execute-expression-jython
----------------------------
Send expression at point to Jython interpreter.
py-execute-expression-jython-switch
-----------------------------------
Send expression at point to Jython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-expression-jython-no-switch
--------------------------------------
Send expression at point to Jython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-expression-jython-dedicated
--------------------------------------
Send expression at point to Jython unique interpreter.
py-execute-expression-jython-dedicated-switch
---------------------------------------------
Send expression at point to Jython unique interpreter and switch to result.
py-execute-expression-python3\.2
--------------------------------
Send expression at point to Python3.2 interpreter.
py-execute-expression-python3\.2-switch
---------------------------------------
Send expression at point to Python3.2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-expression-python3\.2-no-switch
------------------------------------------
Send expression at point to Python3.2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-expression-python3\.2-dedicated
------------------------------------------
Send expression at point to Python3.2 unique interpreter.
py-execute-expression-python3\.2-dedicated-switch
-------------------------------------------------
Send expression at point to Python3.2 unique interpreter and switch to result.
py-execute-expression-python3\.3
--------------------------------
Send expression at point to Python3.3 interpreter.
py-execute-expression-python3\.3-switch
---------------------------------------
Send expression at point to Python3.3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-expression-python3\.3-no-switch
------------------------------------------
Send expression at point to Python3.3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-expression-python3\.3-dedicated
------------------------------------------
Send expression at point to Python3.3 unique interpreter.
py-execute-expression-python3\.3-dedicated-switch
-------------------------------------------------
Send expression at point to Python3.3 unique interpreter and switch to result.
py-execute-expression-bpython
-----------------------------
Send expression at point to Bpython interpreter.
py-execute-expression-bpython-switch
------------------------------------
Send expression at point to Bpython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-expression-bpython-no-switch
---------------------------------------
Send expression at point to Bpython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-expression-bpython-dedicated
---------------------------------------
Send expression at point to Bpython unique interpreter.
py-execute-expression-bpython-dedicated-switch
----------------------------------------------
Send expression at point to Bpython unique interpreter and switch to result.
py-execute-partial-expression-python
------------------------------------
Send partial-expression at point to Python interpreter.
py-execute-partial-expression-python-switch
-------------------------------------------
Send partial-expression at point to Python interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-partial-expression-python-no-switch
----------------------------------------------
Send partial-expression at point to Python interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-partial-expression-python-dedicated
----------------------------------------------
Send partial-expression at point to Python unique interpreter.
py-execute-partial-expression-python-dedicated-switch
-----------------------------------------------------
Send partial-expression at point to Python unique interpreter and switch to result.
py-execute-partial-expression-ipython
-------------------------------------
Send partial-expression at point to IPython interpreter.
py-execute-partial-expression-ipython-switch
--------------------------------------------
Send partial-expression at point to IPython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-partial-expression-ipython-no-switch
-----------------------------------------------
Send partial-expression at point to IPython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-partial-expression-ipython-dedicated
-----------------------------------------------
Send partial-expression at point to IPython unique interpreter.
py-execute-partial-expression-ipython-dedicated-switch
------------------------------------------------------
Send partial-expression at point to IPython unique interpreter and switch to result.
py-execute-partial-expression-python3
-------------------------------------
Send partial-expression at point to Python3 interpreter.
py-execute-partial-expression-python3-switch
--------------------------------------------
Send partial-expression at point to Python3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-partial-expression-python3-no-switch
-----------------------------------------------
Send partial-expression at point to Python3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-partial-expression-python3-dedicated
-----------------------------------------------
Send partial-expression at point to Python3 unique interpreter.
py-execute-partial-expression-python3-dedicated-switch
------------------------------------------------------
Send partial-expression at point to Python3 unique interpreter and switch to result.
py-execute-partial-expression-python2
-------------------------------------
Send partial-expression at point to Python2 interpreter.
py-execute-partial-expression-python2-switch
--------------------------------------------
Send partial-expression at point to Python2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-partial-expression-python2-no-switch
-----------------------------------------------
Send partial-expression at point to Python2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-partial-expression-python2-dedicated
-----------------------------------------------
Send partial-expression at point to Python2 unique interpreter.
py-execute-partial-expression-python2-dedicated-switch
------------------------------------------------------
Send partial-expression at point to Python2 unique interpreter and switch to result.
py-execute-partial-expression-python2\.7
----------------------------------------
Send partial-expression at point to Python2.7 interpreter.
py-execute-partial-expression-python2\.7-switch
-----------------------------------------------
Send partial-expression at point to Python2.7 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-partial-expression-python2\.7-no-switch
--------------------------------------------------
Send partial-expression at point to Python2.7 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-partial-expression-python2\.7-dedicated
--------------------------------------------------
Send partial-expression at point to Python2.7 unique interpreter.
py-execute-partial-expression-python2\.7-dedicated-switch
---------------------------------------------------------
Send partial-expression at point to Python2.7 unique interpreter and switch to result.
py-execute-partial-expression-jython
------------------------------------
Send partial-expression at point to Jython interpreter.
py-execute-partial-expression-jython-switch
-------------------------------------------
Send partial-expression at point to Jython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-partial-expression-jython-no-switch
----------------------------------------------
Send partial-expression at point to Jython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-partial-expression-jython-dedicated
----------------------------------------------
Send partial-expression at point to Jython unique interpreter.
py-execute-partial-expression-jython-dedicated-switch
-----------------------------------------------------
Send partial-expression at point to Jython unique interpreter and switch to result.
py-execute-partial-expression-python3\.2
----------------------------------------
Send partial-expression at point to Python3.2 interpreter.
py-execute-partial-expression-python3\.2-switch
-----------------------------------------------
Send partial-expression at point to Python3.2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-partial-expression-python3\.2-no-switch
--------------------------------------------------
Send partial-expression at point to Python3.2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-partial-expression-python3\.2-dedicated
--------------------------------------------------
Send partial-expression at point to Python3.2 unique interpreter.
py-execute-partial-expression-python3\.2-dedicated-switch
---------------------------------------------------------
Send partial-expression at point to Python3.2 unique interpreter and switch to result.
py-execute-partial-expression-python3\.3
----------------------------------------
Send partial-expression at point to Python3.3 interpreter.
py-execute-partial-expression-python3\.3-switch
-----------------------------------------------
Send partial-expression at point to Python3.3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-partial-expression-python3\.3-no-switch
--------------------------------------------------
Send partial-expression at point to Python3.3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-partial-expression-python3\.3-dedicated
--------------------------------------------------
Send partial-expression at point to Python3.3 unique interpreter.
py-execute-partial-expression-python3\.3-dedicated-switch
---------------------------------------------------------
Send partial-expression at point to Python3.3 unique interpreter and switch to result.
py-execute-partial-expression-bpython
-------------------------------------
Send partial-expression at point to Bpython interpreter.
py-execute-partial-expression-bpython-switch
--------------------------------------------
Send partial-expression at point to Bpython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-partial-expression-bpython-no-switch
-----------------------------------------------
Send partial-expression at point to Bpython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-partial-expression-bpython-dedicated
-----------------------------------------------
Send partial-expression at point to Bpython unique interpreter.
py-execute-partial-expression-bpython-dedicated-switch
------------------------------------------------------
Send partial-expression at point to Bpython unique interpreter and switch to result.
py-execute-line-python
----------------------
Send line at point to Python interpreter.
py-execute-line-python-switch
-----------------------------
Send line at point to Python interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-line-python-no-switch
--------------------------------
Send line at point to Python interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-line-python-dedicated
--------------------------------
Send line at point to Python unique interpreter.
py-execute-line-python-dedicated-switch
---------------------------------------
Send line at point to Python unique interpreter and switch to result.
py-execute-line-ipython
-----------------------
Send line at point to IPython interpreter.
py-execute-line-ipython-switch
------------------------------
Send line at point to IPython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-line-ipython-no-switch
---------------------------------
Send line at point to IPython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-line-ipython-dedicated
---------------------------------
Send line at point to IPython unique interpreter.
py-execute-line-ipython-dedicated-switch
----------------------------------------
Send line at point to IPython unique interpreter and switch to result.
py-execute-line-python3
-----------------------
Send line at point to Python3 interpreter.
py-execute-line-python3-switch
------------------------------
Send line at point to Python3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-line-python3-no-switch
---------------------------------
Send line at point to Python3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-line-python3-dedicated
---------------------------------
Send line at point to Python3 unique interpreter.
py-execute-line-python3-dedicated-switch
----------------------------------------
Send line at point to Python3 unique interpreter and switch to result.
py-execute-line-python2
-----------------------
Send line at point to Python2 interpreter.
py-execute-line-python2-switch
------------------------------
Send line at point to Python2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-line-python2-no-switch
---------------------------------
Send line at point to Python2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-line-python2-dedicated
---------------------------------
Send line at point to Python2 unique interpreter.
py-execute-line-python2-dedicated-switch
----------------------------------------
Send line at point to Python2 unique interpreter and switch to result.
py-execute-line-python2\.7
--------------------------
Send line at point to Python2.7 interpreter.
py-execute-line-python2\.7-switch
---------------------------------
Send line at point to Python2.7 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-line-python2\.7-no-switch
------------------------------------
Send line at point to Python2.7 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-line-python2\.7-dedicated
------------------------------------
Send line at point to Python2.7 unique interpreter.
py-execute-line-python2\.7-dedicated-switch
-------------------------------------------
Send line at point to Python2.7 unique interpreter and switch to result.
py-execute-line-jython
----------------------
Send line at point to Jython interpreter.
py-execute-line-jython-switch
-----------------------------
Send line at point to Jython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-line-jython-no-switch
--------------------------------
Send line at point to Jython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-line-jython-dedicated
--------------------------------
Send line at point to Jython unique interpreter.
py-execute-line-jython-dedicated-switch
---------------------------------------
Send line at point to Jython unique interpreter and switch to result.
py-execute-line-python3\.2
--------------------------
Send line at point to Python3.2 interpreter.
py-execute-line-python3\.2-switch
---------------------------------
Send line at point to Python3.2 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-line-python3\.2-no-switch
------------------------------------
Send line at point to Python3.2 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-line-python3\.2-dedicated
------------------------------------
Send line at point to Python3.2 unique interpreter.
py-execute-line-python3\.2-dedicated-switch
-------------------------------------------
Send line at point to Python3.2 unique interpreter and switch to result.
py-execute-line-python3\.3
--------------------------
Send line at point to Python3.3 interpreter.
py-execute-line-python3\.3-switch
---------------------------------
Send line at point to Python3.3 interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-line-python3\.3-no-switch
------------------------------------
Send line at point to Python3.3 interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-line-python3\.3-dedicated
------------------------------------
Send line at point to Python3.3 unique interpreter.
py-execute-line-python3\.3-dedicated-switch
-------------------------------------------
Send line at point to Python3.3 unique interpreter and switch to result.
py-execute-line-bpython
-----------------------
Send line at point to Bpython interpreter.
py-execute-line-bpython-switch
------------------------------
Send line at point to Bpython interpreter.
Switch to output buffer. Ignores `py-switch-buffers-on-execute-p'.
py-execute-line-bpython-no-switch
---------------------------------
Send line at point to Bpython interpreter.
Keep current buffer. Ignores `py-switch-buffers-on-execute-p'
py-execute-line-bpython-dedicated
---------------------------------
Send line at point to Bpython unique interpreter.
py-execute-line-bpython-dedicated-switch
----------------------------------------
Send line at point to Bpython unique interpreter and switch to result.
;;; Subprocess utilities and filters
------------------------------------
py-remove-overlays-at-point
---------------------------
Remove overlays as set when `py-highlight-error-source-p' is non-nil.
py-down-exception
-----------------
Go to the next line down in the traceback.
With C-u (programmatically, optional argument
BOTTOM), jump to the bottom (innermost) exception in the exception
stack.
py-up-exception
---------------
Go to the previous line up in the traceback.
With C-u (programmatically, optional argument TOP)
jump to the top (outermost) exception in the exception stack.
py-mouseto-exception
--------------------
Jump to the code which caused the Python exception at EVENT.
EVENT is usually a mouse click.
py-goto-exception
-----------------
Go to the line indicated by the traceback.
py-output-buffer-filter
-----------------------
Clear output buffer from py-shell-input prompt etc.
py-send-string
--------------
Evaluate STRING in inferior Python process.
py-send-file
------------
Send FILE-NAME to inferior Python PROCESS.
If TEMP-FILE-NAME is passed then that file is used for processing
instead, while internally the shell will continue to use
FILE-NAME.
|