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
|
.. ipython:: python
:suppress:
import sys
sys.path.append("..")
import redbaron
redbaron.ipython_behavior = False
from redbaron import RedBaron
LineProxyList usage examples
============================
.. ipython:: python
red = RedBaron("def a():\n pif\n\n paf\n pouf\n")
Please refer to `python list documentation
<https://docs.python.org/2/tutorial/datastructures.html>`_ if you want to
know the exact behavior or those methods (or `send a patch
<https://github.com/PyCQA/redbaron>`_ to improve this documentation).
append
~~~~~~
.. ipython:: python
red
red[0].value.append("")
red[0].value.append("stuff")
red
red[0].value
Appending an empty string or a string containing a \n adds a new line.
insert
~~~~~~
.. ipython:: python
red
red[0].value.insert(1, "\n")
red[0].value.insert(1, "print(caribou)")
red
red[0].value
Inserting an empty string or a string containing a \n adds a new line.
extend
~~~~~~
.. ipython:: python
red
red[0].value.extend(["a", "\n", "if a:\n pass", "stuff"])
red
red[0].value
Extending with an empty string or a string containing a \n adds a new line.
pop
~~~
.. ipython:: python
red
red[0].value.pop()
red
red[0].value
red[0].value.pop(3)
red
red[0].value
__getitem__
~~~~~~~~~~~
.. ipython:: python
red
red[0].value
red[0].value[2]
__setitem__
~~~~~~~~~~~
.. ipython:: python
red
red[0].value[2] = "plop"
red
red[0].value
remove
~~~~~~
.. ipython:: python
red
red[0].value.remove(red[0].value[2])
red
red[0].value
index
~~~~~
.. ipython:: python
red
red[0].value
red[0].value.index(red[0].value[2])
count
~~~~~
.. ipython:: python
red
red[0].value
red[0].value.count(red[0].value[2])
len
~~~
.. ipython:: python
red
red[0].value
len(red[0].value)
__delitem__
~~~~~~~~~~~
.. ipython:: python
red
del red[0].value[2]
red
red[0].value
in
~~
.. ipython:: python
red
red[0].value[2] in red[0].value
__iter__
~~~~~~~~
.. ipython:: python
red
for i in red[0].value:
print(i.dumps())
__getslice__
~~~~~~~~~~~~
.. ipython:: python
red
red[0].value
red[0].value[2:4]
__setslice__
~~~~~~~~~~~~
.. ipython:: python
red
red[0].value[2:4] = ["a", "b", "c"]
red
red[0].value
__delslice__
~~~~~~~~~~~~
.. ipython:: python
red
red[0].value[2:5]
del red[0].value[2:5]
red
red[0].value
|