fake-bpy-module 20240810__py3-none-any.whl → 20240812__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

@@ -167,6 +167,15 @@ class I18nMessages:
167
167
  ...
168
168
 
169
169
  def clean_commented(self): ...
170
+ @classmethod
171
+ def cleanup_callback(cls, lng, settings):
172
+ """Cleanup a single PO file (specified by a filepath).Callback usable in a context where Blender specific modules (like bpy) are not available.
173
+
174
+ :param lng:
175
+ :param settings:
176
+ """
177
+ ...
178
+
170
179
  def escape(self, do_all=False):
171
180
  """
172
181
 
@@ -278,7 +287,26 @@ class I18nMessages:
278
287
  """
279
288
  ...
280
289
 
290
+ @classmethod
291
+ def update_from_pot_callback(cls, pot, lng, settings):
292
+ """Update or create a single PO file (specified by a filepath) from the given POT I18nMessages data.Callback usable in a context where Blender specific modules (like bpy) are not available.
293
+
294
+ :param pot:
295
+ :param lng:
296
+ :param settings:
297
+ """
298
+ ...
299
+
281
300
  def update_info(self): ...
301
+ @classmethod
302
+ def update_to_blender_repo_callback(cls, lng, settings):
303
+ """Cleanup and write a single PO file (specified by a filepath) into the relevant Blender source 'compact' PO file.Callback usable in a context where Blender specific modules (like bpy) are not available.
304
+
305
+ :param lng:
306
+ :param settings:
307
+ """
308
+ ...
309
+
282
310
  def write(self, kind, dest):
283
311
  """
284
312
 
bpy/types/__init__.pyi CHANGED
@@ -115169,16 +115169,16 @@ class Bone(bpy_struct):
115169
115169
  :type: float
115170
115170
  """
115171
115171
 
115172
- bbone_custom_handle_end: typing_extensions.Self
115172
+ bbone_custom_handle_end: typing_extensions.Self | None
115173
115173
  """ Bone that serves as the end handle for the B-Bone curve
115174
115174
 
115175
- :type: typing_extensions.Self
115175
+ :type: typing_extensions.Self | None
115176
115176
  """
115177
115177
 
115178
- bbone_custom_handle_start: typing_extensions.Self
115178
+ bbone_custom_handle_start: typing_extensions.Self | None
115179
115179
  """ Bone that serves as the start handle for the B-Bone curve
115180
115180
 
115181
- :type: typing_extensions.Self
115181
+ :type: typing_extensions.Self | None
115182
115182
  """
115183
115183
 
115184
115184
  bbone_easein: float
@@ -115709,10 +115709,10 @@ class BoneCollection(bpy_struct):
115709
115709
  :type: str
115710
115710
  """
115711
115711
 
115712
- parent: typing_extensions.Self
115712
+ parent: typing_extensions.Self | None
115713
115713
  """ Parent bone collection. Note that accessing this requires a scan of all the bone collections to find the parent.
115714
115714
 
115715
- :type: typing_extensions.Self
115715
+ :type: typing_extensions.Self | None
115716
115716
  """
115717
115717
 
115718
115718
  bones_recursive: typing.Any
@@ -134692,16 +134692,16 @@ class EditBone(bpy_struct):
134692
134692
  :type: float
134693
134693
  """
134694
134694
 
134695
- bbone_custom_handle_end: typing_extensions.Self
134695
+ bbone_custom_handle_end: typing_extensions.Self | None
134696
134696
  """ Bone that serves as the end handle for the B-Bone curve
134697
134697
 
134698
- :type: typing_extensions.Self
134698
+ :type: typing_extensions.Self | None
134699
134699
  """
134700
134700
 
134701
- bbone_custom_handle_start: typing_extensions.Self
134701
+ bbone_custom_handle_start: typing_extensions.Self | None
134702
134702
  """ Bone that serves as the start handle for the B-Bone curve
134703
134703
 
134704
- :type: typing_extensions.Self
134704
+ :type: typing_extensions.Self | None
134705
134705
  """
134706
134706
 
134707
134707
  bbone_easein: float
@@ -134880,10 +134880,10 @@ class EditBone(bpy_struct):
134880
134880
  :type: str
134881
134881
  """
134882
134882
 
134883
- parent: typing_extensions.Self
134883
+ parent: typing_extensions.Self | None
134884
134884
  """ Parent edit bone (in same Armature)
134885
134885
 
134886
- :type: typing_extensions.Self
134886
+ :type: typing_extensions.Self | None
134887
134887
  """
134888
134888
 
134889
134889
  roll: float
@@ -164544,7 +164544,7 @@ class ID(bpy_struct):
164544
164544
  self,
164545
164545
  scene: Scene,
164546
164546
  view_layer: ViewLayer,
164547
- reference: typing_extensions.Self = None,
164547
+ reference: typing_extensions.Self | None = None,
164548
164548
  do_fully_editable: bool | None = False,
164549
164549
  ) -> typing_extensions.Self:
164550
164550
  """Create an overridden local copy of this linked data-block, and most of its dependencies when it is a Collection or and Object
@@ -164554,7 +164554,7 @@ class ID(bpy_struct):
164554
164554
  :param view_layer: In which view layer the new overrides should be instantiated
164555
164555
  :type view_layer: ViewLayer
164556
164556
  :param reference: Another ID (usually an Object or Collection) used as a hint to decide where to instantiate the new overrides
164557
- :type reference: typing_extensions.Self
164557
+ :type reference: typing_extensions.Self | None
164558
164558
  :param do_fully_editable: Make all library overrides generated by this call fully editable by the user (none will be 'system overrides')
164559
164559
  :type do_fully_editable: bool | None
164560
164560
  :return: New overridden local copy of the root ID
@@ -167701,11 +167701,11 @@ class KeyMapItem(bpy_struct):
167701
167701
  :type: typing.Literal['ANY', 'PRESS', 'RELEASE', 'CLICK', 'DOUBLE_CLICK', 'CLICK_DRAG', 'NOTHING']
167702
167702
  """
167703
167703
 
167704
- def compare(self, item: typing_extensions.Self) -> bool:
167704
+ def compare(self, item: typing_extensions.Self | None) -> bool:
167705
167705
  """compare
167706
167706
 
167707
167707
  :param item: Item
167708
- :type item: typing_extensions.Self
167708
+ :type item: typing_extensions.Self | None
167709
167709
  :return: Comparison result
167710
167710
  :rtype: bool
167711
167711
  """
@@ -176338,10 +176338,10 @@ class Mesh(ID, bpy_struct):
176338
176338
  :type: bpy_prop_collection[MeshSkinVertexLayer]
176339
176339
  """
176340
176340
 
176341
- texco_mesh: typing_extensions.Self
176341
+ texco_mesh: typing_extensions.Self | None
176342
176342
  """ Derive texture coordinates from another mesh
176343
176343
 
176344
- :type: typing_extensions.Self
176344
+ :type: typing_extensions.Self | None
176345
176345
  """
176346
176346
 
176347
176347
  texspace_location: mathutils.Vector
@@ -176356,10 +176356,10 @@ class Mesh(ID, bpy_struct):
176356
176356
  :type: mathutils.Vector
176357
176357
  """
176358
176358
 
176359
- texture_mesh: typing_extensions.Self
176359
+ texture_mesh: typing_extensions.Self | None
176360
176360
  """ Use another mesh for texture indices (vertex indices must be aligned)
176361
176361
 
176362
- :type: typing_extensions.Self
176362
+ :type: typing_extensions.Self | None
176363
176363
  """
176364
176364
 
176365
176365
  total_edge_sel: int
@@ -176614,12 +176614,14 @@ class Mesh(ID, bpy_struct):
176614
176614
  ...
176615
176615
 
176616
176616
  def unit_test_compare(
176617
- self, mesh: typing_extensions.Self = None, threshold: float | None = 7.1526e-06
176617
+ self,
176618
+ mesh: typing_extensions.Self | None = None,
176619
+ threshold: float | None = 7.1526e-06,
176618
176620
  ) -> str:
176619
176621
  """unit_test_compare
176620
176622
 
176621
176623
  :param mesh: Mesh to compare to
176622
- :type mesh: typing_extensions.Self
176624
+ :type mesh: typing_extensions.Self | None
176623
176625
  :param threshold: Threshold, Comparison tolerance threshold
176624
176626
  :type threshold: float | None
176625
176627
  :return: Return value, String description of result of comparison
@@ -182223,10 +182225,10 @@ class Node(bpy_struct):
182223
182225
  :type: NodeOutputs
182224
182226
  """
182225
182227
 
182226
- parent: typing_extensions.Self
182228
+ parent: typing_extensions.Self | None
182227
182229
  """ Parent this node is attached to
182228
182230
 
182229
- :type: typing_extensions.Self
182231
+ :type: typing_extensions.Self | None
182230
182232
  """
182231
182233
 
182232
182234
  select: bool
@@ -189850,10 +189852,10 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
189850
189852
  :type: MotionPath
189851
189853
  """
189852
189854
 
189853
- parent: typing_extensions.Self
189855
+ parent: typing_extensions.Self | None
189854
189856
  """ Parent object
189855
189857
 
189856
- :type: typing_extensions.Self
189858
+ :type: typing_extensions.Self | None
189857
189859
  """
189858
189860
 
189859
189861
  parent_bone: str
@@ -195816,10 +195818,10 @@ class PoseBone(bpy_struct):
195816
195818
  :type: mathutils.Vector
195817
195819
  """
195818
195820
 
195819
- custom_shape_transform: typing_extensions.Self
195821
+ custom_shape_transform: typing_extensions.Self | None
195820
195822
  """ Bone that defines the display transform of this custom shape
195821
195823
 
195822
- :type: typing_extensions.Self
195824
+ :type: typing_extensions.Self | None
195823
195825
  """
195824
195826
 
195825
195827
  custom_shape_translation: mathutils.Vector
@@ -203115,10 +203117,10 @@ class Scene(ID, bpy_struct):
203115
203117
  :type: float
203116
203118
  """
203117
203119
 
203118
- background_set: typing_extensions.Self
203120
+ background_set: typing_extensions.Self | None
203119
203121
  """ Background set scene
203120
203122
 
203121
- :type: typing_extensions.Self
203123
+ :type: typing_extensions.Self | None
203122
203124
  """
203123
203125
 
203124
203126
  camera: Object | None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240810
3
+ Version: 20240812
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -32,7 +32,7 @@ bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
32
  bl_i18n_utils/bl_extract_messages/__init__.pyi,sha256=BbbeY0QHwgH26Sgj8haq_ymY8JOtSBUCizidMlrrIWc,1243
33
33
  bl_i18n_utils/merge_po/__init__.pyi,sha256=VMKlY6sPPK4PDFJSwDgVOHQGPd0JXkBL6n5zDxJr61E,172
34
34
  bl_i18n_utils/settings/__init__.pyi,sha256=Ijxcwlx3KrIdlmZg9xWI8HbDm3CwqtD4GiJ_rKS0LYQ,1005
35
- bl_i18n_utils/utils/__init__.pyi,sha256=hZVpRb2IAQ5R8m0O3WmSgoIro3CYDfFlh7M88Jtj2Ik,8273
35
+ bl_i18n_utils/utils/__init__.pyi,sha256=DySrLCll9MbLGjYMATt-nDobQwTty5jjs4K4BK-g2Os,9286
36
36
  bl_i18n_utils/utils_cli/__init__.pyi,sha256=VPalRA-OIQSA853IsGx_YQvSMn2kCF1uvV0QmdJU7T4,356
37
37
  bl_i18n_utils/utils_languages_menu/__init__.pyi,sha256=7pfg2Z03Ds3icuUkKjg79LswbxAhRpKvbTGpEWoCXLk,196
38
38
  bl_i18n_utils/utils_rtl/__init__.pyi,sha256=G3ICiaXO4WBGanIhbP-A2GvmQoHsgeiUBvY2xtJrubI,480
@@ -272,7 +272,7 @@ bpy/ops/workspace/__init__.pyi,sha256=OSELKT_HUs2W6cOk2wOigZgkbieGezMVWTi45f4x-I
272
272
  bpy/ops/world/__init__.pyi,sha256=_z3cX9CYV0nTmSiSQcC82nRiXYriWMcHomfxmSl2GxM,1057
273
273
  bpy/path/__init__.pyi,sha256=J_4vrRw_TTuMW4KHqSHZqYIKfDoCgG6Wv1PIFZx7__4,5612
274
274
  bpy/props/__init__.pyi,sha256=5dF03F-bYYW-j5P9eDOgSJ07JYRVwMvjmMjBYjCrjS8,29631
275
- bpy/types/__init__.pyi,sha256=Y-xQVA46PGs4_Ey1s_H75_tYBOm0As_kEbN-XtMAN7U,6309090
275
+ bpy/types/__init__.pyi,sha256=7fi1CQa-vWJYLFGaLHpbcrTTnSXOWXJoNM2WXpS7rLo,6309317
276
276
  bpy/utils/__init__.pyi,sha256=fuZc6nInRbbso-qzaeNWGfipuB37ySvxZVrJcEJ-RxM,13280
277
277
  bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
278
278
  bpy/utils/units/__init__.pyi,sha256=2OtqF54xi6peGyNeSGkuaLpytf2EESF753zqooe8bwc,2719
@@ -356,7 +356,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
356
356
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
357
357
  sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
358
358
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
- fake_bpy_module-20240810.dist-info/METADATA,sha256=nsyvfPErEx3K2kCEB0ic9GPWem4hK3qv-GWmR3_bZKw,7289
360
- fake_bpy_module-20240810.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
361
- fake_bpy_module-20240810.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
362
- fake_bpy_module-20240810.dist-info/RECORD,,
359
+ fake_bpy_module-20240812.dist-info/METADATA,sha256=tZ8rnbE1wcfsbvSKdn5BbZkQPb3zKGaSysv8zTqJEY0,7289
360
+ fake_bpy_module-20240812.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
361
+ fake_bpy_module-20240812.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
362
+ fake_bpy_module-20240812.dist-info/RECORD,,