mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
* Remove docs folder. This was a redirect from a GitHub pages site that does not appear to be in use. * Rename api folder to api-samples. * Move examples to functional-samples folder. * Move cookbook sample to functional-samples. * Move tutorials to functional-samples folder. * Move mv2 and apps folders to _archive. * Rename tools folder to .repo. * Move reference folder to functional-samples. * Update README. Update README with new relative links for reorg. * Update README.md Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com> --------- Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com>
123 lines
2.8 KiB
HTML
123 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>CodeMirror: Python mode</title>
|
|
<link rel="stylesheet" href="../../lib/codemirror.css">
|
|
<script src="../../lib/codemirror.js"></script>
|
|
<script src="python.js"></script>
|
|
<link rel="stylesheet" href="../../doc/docs.css">
|
|
<style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
|
|
</head>
|
|
<body>
|
|
<h1>CodeMirror: Python mode</h1>
|
|
|
|
<div><textarea id="code" name="code">
|
|
# Literals
|
|
1234
|
|
0.0e101
|
|
.123
|
|
0b01010011100
|
|
0o01234567
|
|
0x0987654321abcdef
|
|
7
|
|
2147483647
|
|
3L
|
|
79228162514264337593543950336L
|
|
0x100000000L
|
|
79228162514264337593543950336
|
|
0xdeadbeef
|
|
3.14j
|
|
10.j
|
|
10j
|
|
.001j
|
|
1e100j
|
|
3.14e-10j
|
|
|
|
|
|
# String Literals
|
|
'For\''
|
|
"God\""
|
|
"""so loved
|
|
the world"""
|
|
'''that he gave
|
|
his only begotten\' '''
|
|
'that whosoever believeth \
|
|
in him'
|
|
''
|
|
|
|
# Identifiers
|
|
__a__
|
|
a.b
|
|
a.b.c
|
|
|
|
# Operators
|
|
+ - * / % & | ^ ~ < >
|
|
== != <= >= <> << >> // **
|
|
and or not in is
|
|
|
|
# Delimiters
|
|
() [] {} , : ` = ; @ . # Note that @ and . require the proper context.
|
|
+= -= *= /= %= &= |= ^=
|
|
//= >>= <<= **=
|
|
|
|
# Keywords
|
|
as assert break class continue def del elif else except
|
|
finally for from global if import lambda pass raise
|
|
return try while with yield
|
|
|
|
# Python 2 Keywords (otherwise Identifiers)
|
|
exec print
|
|
|
|
# Python 3 Keywords (otherwise Identifiers)
|
|
nonlocal
|
|
|
|
# Types
|
|
bool classmethod complex dict enumerate float frozenset int list object
|
|
property reversed set slice staticmethod str super tuple type
|
|
|
|
# Python 2 Types (otherwise Identifiers)
|
|
basestring buffer file long unicode xrange
|
|
|
|
# Python 3 Types (otherwise Identifiers)
|
|
bytearray bytes filter map memoryview open range zip
|
|
|
|
# Some Example code
|
|
import os
|
|
from package import ParentClass
|
|
|
|
@nonsenseDecorator
|
|
def doesNothing():
|
|
pass
|
|
|
|
class ExampleClass(ParentClass):
|
|
@staticmethod
|
|
def example(inputStr):
|
|
a = list(inputStr)
|
|
a.reverse()
|
|
return ''.join(a)
|
|
|
|
def __init__(self, mixin = 'Hello'):
|
|
self.mixin = mixin
|
|
|
|
</textarea></div>
|
|
<script>
|
|
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
|
|
mode: {name: "python",
|
|
version: 2,
|
|
singleLineStringErrors: false},
|
|
lineNumbers: true,
|
|
indentUnit: 4,
|
|
tabMode: "shift",
|
|
matchBrackets: true
|
|
});
|
|
</script>
|
|
<h2>Configuration Options:</h2>
|
|
<ul>
|
|
<li>version - 2/3 - The version of Python to recognize. Default is 2.</li>
|
|
<li>singleLineStringErrors - true/false - If you have a single-line string that is not terminated at the end of the line, this will show subsequent lines as errors if true, otherwise it will consider the newline as the end of the string. Default is false.</li>
|
|
</ul>
|
|
|
|
<p><strong>MIME types defined:</strong> <code>text/x-python</code>.</p>
|
|
</body>
|
|
</html>
|