Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-03-11 06:44:02 +0300
committerCampbell Barton <campbell@blender.org>2022-03-11 06:44:02 +0300
commit231eac160ee394d41c84e0cc36845facb7594ba5 (patch)
tree54ad436f0cb7370a58ff526566e67a6f6d3d7a12 /release
parent1032f111d087e7ba77c16a4af78704019714bd6a (diff)
PyAPI: use C/RNA API for Text.from_string/to_string
Use faster C code for getting the buffer from text.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/bpy_types.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/release/scripts/modules/bpy_types.py b/release/scripts/modules/bpy_types.py
index 54fcc8faf46..e0e20d0f8c9 100644
--- a/release/scripts/modules/bpy_types.py
+++ b/release/scripts/modules/bpy_types.py
@@ -580,15 +580,6 @@ class MeshPolygon(StructRNA):
class Text(bpy_types.ID):
__slots__ = ()
- def as_string(self):
- """Return the text as a string."""
- return "\n".join(line.body for line in self.lines)
-
- def from_string(self, string):
- """Replace text with this string."""
- self.clear()
- self.write(string)
-
def as_module(self):
import bpy
from os.path import splitext, join