fake-bpy-module 20240809__py3-none-any.whl → 20240811__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
@@ -55347,6 +55347,48 @@ The USDHookExample
55347
55347
  :columns: 2
55348
55348
 
55349
55349
 
55350
+ --------------------
55351
+
55352
+ * bpy_struct.id_data
55353
+
55354
+ :columns: 2
55355
+
55356
+
55357
+ --------------------
55358
+
55359
+ * bpy_struct.as_pointer
55360
+ * bpy_struct.driver_add
55361
+ * bpy_struct.driver_remove
55362
+ * bpy_struct.get
55363
+ * bpy_struct.id_properties_clear
55364
+ * bpy_struct.id_properties_ensure
55365
+ * bpy_struct.id_properties_ui
55366
+ * bpy_struct.is_property_hidden
55367
+ * bpy_struct.is_property_overridable_library
55368
+ * bpy_struct.is_property_readonly
55369
+ * bpy_struct.is_property_set
55370
+ * bpy_struct.items
55371
+ * bpy_struct.keyframe_delete
55372
+ * bpy_struct.keyframe_insert
55373
+ * bpy_struct.keys
55374
+ * bpy_struct.path_from_id
55375
+ * bpy_struct.path_resolve
55376
+ * bpy_struct.pop
55377
+ * bpy_struct.property_overridable_library_set
55378
+ * bpy_struct.property_unset
55379
+ * bpy_struct.type_recast
55380
+ * bpy_struct.values
55381
+
55382
+ :columns: 2
55383
+
55384
+
55385
+ --------------------
55386
+
55387
+ * GPencilLayer.frames
55388
+
55389
+ :columns: 2
55390
+
55391
+
55350
55392
  --------------------
55351
55393
 
55352
55394
  * bpy_struct.id_data
@@ -77088,6 +77130,8 @@ Executing the operator will then print all values.
77088
77130
  * bpy.context.editable_gpencil_layers
77089
77131
  * bpy.context.visible_gpencil_layers
77090
77132
  * GreasePencil.layers
77133
+ * GreasePencilLayers.new
77134
+ * GreasePencilLayers.remove
77091
77135
 
77092
77136
  :columns: 2
77093
77137
 
@@ -91292,6 +91336,10 @@ Base class for integrating USD Hydra based renderers.
91292
91336
 
91293
91337
  --------------------
91294
91338
 
91339
+ * GPencilFrames.copy
91340
+ * GPencilFrames.copy
91341
+ * GPencilFrames.new
91342
+ * GPencilFrames.remove
91295
91343
  * GPencilLayer.active_frame
91296
91344
  * GPencilLayer.frames
91297
91345
 
@@ -104147,6 +104195,65 @@ class FreestyleModules(bpy_prop_collection[FreestyleModuleSettings], bpy_struct)
104147
104195
  """
104148
104196
  ...
104149
104197
 
104198
+ class GPencilFrames(bpy_prop_collection[GPencilFrame], bpy_struct):
104199
+ """Collection of annotation frames"""
104200
+
104201
+ def new(
104202
+ self, frame_number: int | None, active: bool | None = False
104203
+ ) -> GPencilFrame:
104204
+ """Add a new annotation frame
104205
+
104206
+ :param frame_number: Frame Number, The frame on which this sketch appears
104207
+ :type frame_number: int | None
104208
+ :param active: Active
104209
+ :type active: bool | None
104210
+ :return: The newly created frame
104211
+ :rtype: GPencilFrame
104212
+ """
104213
+ ...
104214
+
104215
+ def remove(self, frame: GPencilFrame):
104216
+ """Remove an annotation frame
104217
+
104218
+ :param frame: Frame, The frame to remove
104219
+ :type frame: GPencilFrame
104220
+ """
104221
+ ...
104222
+
104223
+ def copy(self, source: GPencilFrame) -> GPencilFrame:
104224
+ """Copy an annotation frame
104225
+
104226
+ :param source: Source, The source frame
104227
+ :type source: GPencilFrame
104228
+ :return: The newly copied frame
104229
+ :rtype: GPencilFrame
104230
+ """
104231
+ ...
104232
+
104233
+ @classmethod
104234
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
104235
+ """
104236
+
104237
+ :param id: The RNA type identifier.
104238
+ :type id: str | None
104239
+ :param default:
104240
+ :return: The RNA type or default when not found.
104241
+ :rtype: Struct
104242
+ """
104243
+ ...
104244
+
104245
+ @classmethod
104246
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
104247
+ """
104248
+
104249
+ :param id: The RNA type identifier.
104250
+ :type id: str | None
104251
+ :param default:
104252
+ :return: The class or default when not found.
104253
+ :rtype: typing.Any
104254
+ """
104255
+ ...
104256
+
104150
104257
  class Gizmos(bpy_prop_collection[Gizmo], bpy_struct):
104151
104258
  """Collection of gizmos"""
104152
104259
 
@@ -104308,6 +104415,26 @@ class GreasePencilLayers(bpy_prop_collection[GPencilLayer], bpy_struct):
104308
104415
  :type: str | None
104309
104416
  """
104310
104417
 
104418
+ def new(self, name: str, set_active: bool | None = True) -> GPencilLayer:
104419
+ """Add a new annotation layer
104420
+
104421
+ :param name: Name, Name of the layer
104422
+ :type name: str
104423
+ :param set_active: Set Active, Set the newly created layer to the active layer
104424
+ :type set_active: bool | None
104425
+ :return: The newly created layer
104426
+ :rtype: GPencilLayer
104427
+ """
104428
+ ...
104429
+
104430
+ def remove(self, layer: GPencilLayer):
104431
+ """Remove a annotation layer
104432
+
104433
+ :param layer: The layer to remove
104434
+ :type layer: GPencilLayer
104435
+ """
104436
+ ...
104437
+
104311
104438
  @classmethod
104312
104439
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
104313
104440
  """
@@ -144923,10 +145050,10 @@ class GPencilLayer(bpy_struct):
144923
145050
  :type: mathutils.Color
144924
145051
  """
144925
145052
 
144926
- frames: bpy_prop_collection[GPencilFrame]
145053
+ frames: GPencilFrames
144927
145054
  """ Sketches for this layer on different frames
144928
145055
 
144929
- :type: bpy_prop_collection[GPencilFrame]
145056
+ :type: GPencilFrames
144930
145057
  """
144931
145058
 
144932
145059
  info: str
@@ -230520,6 +230647,7 @@ class UILayout(bpy_struct):
230520
230647
 
230521
230648
  def row(
230522
230649
  self,
230650
+ *,
230523
230651
  align: bool | None = False,
230524
230652
  heading: str = "",
230525
230653
  heading_ctxt: str = "",
@@ -230542,6 +230670,7 @@ class UILayout(bpy_struct):
230542
230670
 
230543
230671
  def column(
230544
230672
  self,
230673
+ *,
230545
230674
  align: bool | None = False,
230546
230675
  heading: str = "",
230547
230676
  heading_ctxt: str = "",
@@ -230562,7 +230691,7 @@ class UILayout(bpy_struct):
230562
230691
  """
230563
230692
  ...
230564
230693
 
230565
- def panel(self, idname: str, default_closed: bool | None = False):
230694
+ def panel(self, idname: str, *, default_closed: bool | None = False):
230566
230695
  """Creates a collapsable panel. Whether it is open or closed is stored in the region using the given idname. This can only be used when the panel has the full width of the panel region available to it. So it can't be used in e.g. in a box or columns.
230567
230696
 
230568
230697
  :param idname: Identifier of the panel
@@ -230589,7 +230718,7 @@ class UILayout(bpy_struct):
230589
230718
  ...
230590
230719
 
230591
230720
  def column_flow(
230592
- self, columns: int | None = 0, align: bool | None = False
230721
+ self, *, columns: int | None = 0, align: bool | None = False
230593
230722
  ) -> typing_extensions.Self:
230594
230723
  """column_flow
230595
230724
 
@@ -230604,6 +230733,7 @@ class UILayout(bpy_struct):
230604
230733
 
230605
230734
  def grid_flow(
230606
230735
  self,
230736
+ *,
230607
230737
  row_major: bool | None = False,
230608
230738
  columns: int | None = 0,
230609
230739
  even_columns: bool | None = False,
@@ -230636,7 +230766,7 @@ class UILayout(bpy_struct):
230636
230766
  ...
230637
230767
 
230638
230768
  def split(
230639
- self, factor: float | None = 0.0, align: bool | None = False
230769
+ self, *, factor: float | None = 0.0, align: bool | None = False
230640
230770
  ) -> typing_extensions.Self:
230641
230771
  """split
230642
230772
 
@@ -230719,6 +230849,7 @@ class UILayout(bpy_struct):
230719
230849
  self,
230720
230850
  data: typing.Any,
230721
230851
  property: str,
230852
+ *,
230722
230853
  text: str | None = "",
230723
230854
  text_ctxt: str | None = "",
230724
230855
  translate: bool | None = True,
@@ -231743,6 +231874,7 @@ class UILayout(bpy_struct):
231743
231874
  self,
231744
231875
  data: typing.Any,
231745
231876
  property: str,
231877
+ *,
231746
231878
  text: str | None = "",
231747
231879
  text_ctxt: str | None = "",
231748
231880
  translate: bool | None = True,
@@ -232724,6 +232856,7 @@ class UILayout(bpy_struct):
232724
232856
  self,
232725
232857
  data: typing.Any,
232726
232858
  property: str,
232859
+ *,
232727
232860
  text: str | None = "",
232728
232861
  text_ctxt: str | None = "",
232729
232862
  translate: bool | None = True,
@@ -233711,6 +233844,7 @@ class UILayout(bpy_struct):
233711
233844
  self,
233712
233845
  data: typing.Any,
233713
233846
  property: str,
233847
+ *,
233714
233848
  text: str | None = "",
233715
233849
  text_ctxt: str | None = "",
233716
233850
  translate: bool | None = True,
@@ -234698,6 +234832,7 @@ class UILayout(bpy_struct):
234698
234832
  self,
234699
234833
  data: typing.Any,
234700
234834
  property: str,
234835
+ *,
234701
234836
  data_highlight: typing.Any = None,
234702
234837
  property_highlight: str = "",
234703
234838
  icon_only: bool | None = False,
@@ -234722,6 +234857,7 @@ class UILayout(bpy_struct):
234722
234857
  data: typing.Any,
234723
234858
  property: str,
234724
234859
  value: str,
234860
+ *,
234725
234861
  text: str | None = "",
234726
234862
  text_ctxt: str | None = "",
234727
234863
  translate: bool | None = True,
@@ -235707,6 +235843,7 @@ class UILayout(bpy_struct):
235707
235843
  property: str,
235708
235844
  search_data: typing.Any,
235709
235845
  search_property: str,
235846
+ *,
235710
235847
  text: str | None = "",
235711
235848
  text_ctxt: str | None = "",
235712
235849
  translate: bool | None = True,
@@ -236691,7 +236828,9 @@ class UILayout(bpy_struct):
236691
236828
  """
236692
236829
  ...
236693
236830
 
236694
- def prop_decorator(self, data: typing.Any, property: str, index: int | None = -1):
236831
+ def prop_decorator(
236832
+ self, data: typing.Any, property: str, *, index: int | None = -1
236833
+ ):
236695
236834
  """prop_decorator
236696
236835
 
236697
236836
  :param data: Data from which to take property
@@ -236706,6 +236845,7 @@ class UILayout(bpy_struct):
236706
236845
  def operator(
236707
236846
  self,
236708
236847
  operator: str,
236848
+ *,
236709
236849
  text: str | None = "",
236710
236850
  text_ctxt: str | None = "",
236711
236851
  translate: bool | None = True,
@@ -237698,6 +237838,7 @@ class UILayout(bpy_struct):
237698
237838
  def operator_menu_hold(
237699
237839
  self,
237700
237840
  operator: str,
237841
+ *,
237701
237842
  text: str | None = "",
237702
237843
  text_ctxt: str | None = "",
237703
237844
  translate: bool | None = True,
@@ -238688,7 +238829,7 @@ class UILayout(bpy_struct):
238688
238829
  ...
238689
238830
 
238690
238831
  def operator_enum(
238691
- self, operator: str, property: str, icon_only: bool | None = False
238832
+ self, operator: str, property: str, *, icon_only: bool | None = False
238692
238833
  ):
238693
238834
  """operator_enum
238694
238835
 
@@ -238705,6 +238846,7 @@ class UILayout(bpy_struct):
238705
238846
  self,
238706
238847
  operator: str,
238707
238848
  property: str,
238849
+ *,
238708
238850
  text: str | None = "",
238709
238851
  text_ctxt: str | None = "",
238710
238852
  translate: bool | None = True,
@@ -239686,6 +239828,7 @@ class UILayout(bpy_struct):
239686
239828
 
239687
239829
  def label(
239688
239830
  self,
239831
+ *,
239689
239832
  text: str | None = "",
239690
239833
  text_ctxt: str | None = "",
239691
239834
  translate: bool | None = True,
@@ -240665,6 +240808,7 @@ class UILayout(bpy_struct):
240665
240808
  def menu(
240666
240809
  self,
240667
240810
  menu: str,
240811
+ *,
240668
240812
  text: str | None = "",
240669
240813
  text_ctxt: str | None = "",
240670
240814
  translate: bool | None = True,
@@ -241654,6 +241798,7 @@ class UILayout(bpy_struct):
241654
241798
  def popover(
241655
241799
  self,
241656
241800
  panel: str,
241801
+ *,
241657
241802
  text: str | None = "",
241658
241803
  text_ctxt: str | None = "",
241659
241804
  translate: bool | None = True,
@@ -242693,6 +242838,7 @@ class UILayout(bpy_struct):
242693
242838
 
242694
242839
  def separator(
242695
242840
  self,
242841
+ *,
242696
242842
  factor: float | None = 1.0,
242697
242843
  type: typing.Literal["AUTO", "SPACE", "LINE"] | None = "AUTO",
242698
242844
  ):
@@ -242720,6 +242866,7 @@ class UILayout(bpy_struct):
242720
242866
 
242721
242867
  def progress(
242722
242868
  self,
242869
+ *,
242723
242870
  text: str | None = "",
242724
242871
  text_ctxt: str | None = "",
242725
242872
  translate: bool | None = True,
@@ -242769,6 +242916,7 @@ class UILayout(bpy_struct):
242769
242916
  self,
242770
242917
  data: typing.Any,
242771
242918
  property: str,
242919
+ *,
242772
242920
  new: str = "",
242773
242921
  open: str = "",
242774
242922
  unlink: str = "",
@@ -242807,6 +242955,7 @@ class UILayout(bpy_struct):
242807
242955
  self,
242808
242956
  data: typing.Any,
242809
242957
  property: str,
242958
+ *,
242810
242959
  new: str = "",
242811
242960
  open: str = "",
242812
242961
  unlink: str = "",
@@ -242843,6 +242992,7 @@ class UILayout(bpy_struct):
242843
242992
  data: typing.Any,
242844
242993
  property: str,
242845
242994
  type_property: str,
242995
+ *,
242846
242996
  text: str | None = "",
242847
242997
  text_ctxt: str | None = "",
242848
242998
  translate: bool | None = True,
@@ -242868,6 +243018,7 @@ class UILayout(bpy_struct):
242868
243018
  self,
242869
243019
  data: typing.Any,
242870
243020
  property: str,
243021
+ *,
242871
243022
  new: str = "",
242872
243023
  menu: str = "",
242873
243024
  filter: typing.Literal["ALL", "AVAILABLE"] | None = "ALL",
@@ -242893,6 +243044,7 @@ class UILayout(bpy_struct):
242893
243044
  property: str,
242894
243045
  search_data: typing.Any,
242895
243046
  search_property: str,
243047
+ *,
242896
243048
  new: str = "",
242897
243049
  unlink: str = "",
242898
243050
  ):
@@ -242919,6 +243071,7 @@ class UILayout(bpy_struct):
242919
243071
  property: str,
242920
243072
  search_data: typing.Any,
242921
243073
  search_property: str,
243074
+ *,
242922
243075
  new: str = "",
242923
243076
  unlink: str = "",
242924
243077
  rows: int | None = 0,
@@ -242950,6 +243103,7 @@ class UILayout(bpy_struct):
242950
243103
  data: typing.Any,
242951
243104
  property: str,
242952
243105
  root: ID | None,
243106
+ *,
242953
243107
  text: str | None = "",
242954
243108
  text_ctxt: str | None = "",
242955
243109
  translate: bool | None = True,
@@ -242979,7 +243133,7 @@ class UILayout(bpy_struct):
242979
243133
  """Generates the UI layout for collection exporters"""
242980
243134
  ...
242981
243135
 
242982
- def template_constraints(self, use_bone_constraints: bool | None = True):
243136
+ def template_constraints(self, *, use_bone_constraints: bool | None = True):
242983
243137
  """Generates the panels for the constraint stack
242984
243138
 
242985
243139
  :param use_bone_constraints: Add panels for bone constraints instead of object constraints
@@ -242995,6 +243149,7 @@ class UILayout(bpy_struct):
242995
243149
  self,
242996
243150
  data: typing.Any,
242997
243151
  property: str,
243152
+ *,
242998
243153
  rows: int | None = 0,
242999
243154
  cols: int | None = 0,
243000
243155
  scale: float | None = 1.0,
@@ -243028,6 +243183,7 @@ class UILayout(bpy_struct):
243028
243183
  def template_preview(
243029
243184
  self,
243030
243185
  id: ID | None,
243186
+ *,
243031
243187
  show_buttons: bool | None = True,
243032
243188
  parent: ID | None = None,
243033
243189
  slot: TextureSlot | None = None,
@@ -243052,6 +243208,7 @@ class UILayout(bpy_struct):
243052
243208
  self,
243053
243209
  data: typing.Any,
243054
243210
  property: str,
243211
+ *,
243055
243212
  type: typing.Literal["NONE", "VECTOR", "COLOR", "HUE"] | None = "NONE",
243056
243213
  levels: bool | None = False,
243057
243214
  brush: bool | None = False,
@@ -243088,7 +243245,7 @@ class UILayout(bpy_struct):
243088
243245
  ...
243089
243246
 
243090
243247
  def template_color_ramp(
243091
- self, data: typing.Any, property: str, expand: bool | None = False
243248
+ self, data: typing.Any, property: str, *, expand: bool | None = False
243092
243249
  ):
243093
243250
  """Item. A color ramp widget.
243094
243251
 
@@ -243101,7 +243258,7 @@ class UILayout(bpy_struct):
243101
243258
  """
243102
243259
  ...
243103
243260
 
243104
- def template_icon(self, icon_value: int | None, scale: float | None = 1.0):
243261
+ def template_icon(self, icon_value: int | None, *, scale: float | None = 1.0):
243105
243262
  """Display a large icon
243106
243263
 
243107
243264
  :param icon_value: Icon to display
@@ -243115,6 +243272,7 @@ class UILayout(bpy_struct):
243115
243272
  self,
243116
243273
  data: typing.Any,
243117
243274
  property: str,
243275
+ *,
243118
243276
  show_labels: bool | None = False,
243119
243277
  scale: float | None = 6.0,
243120
243278
  scale_popup: float | None = 5.0,
@@ -243191,6 +243349,7 @@ class UILayout(bpy_struct):
243191
243349
  self,
243192
243350
  data: typing.Any,
243193
243351
  property: str,
243352
+ *,
243194
243353
  value_slider: bool | None = False,
243195
243354
  lock: bool | None = False,
243196
243355
  lock_luminosity: bool | None = False,
@@ -243214,7 +243373,7 @@ class UILayout(bpy_struct):
243214
243373
  ...
243215
243374
 
243216
243375
  def template_palette(
243217
- self, data: typing.Any, property: str, color: bool | None = False
243376
+ self, data: typing.Any, property: str, *, color: bool | None = False
243218
243377
  ):
243219
243378
  """Item. A palette used to pick colors.
243220
243379
 
@@ -243242,6 +243401,7 @@ class UILayout(bpy_struct):
243242
243401
  data: typing.Any,
243243
243402
  property: str,
243244
243403
  image_user: ImageUser,
243404
+ *,
243245
243405
  compact: bool | None = False,
243246
243406
  multiview: bool | None = False,
243247
243407
  ):
@@ -243261,7 +243421,10 @@ class UILayout(bpy_struct):
243261
243421
  ...
243262
243422
 
243263
243423
  def template_image_settings(
243264
- self, image_settings: ImageFormatSettings, color_management: bool | None = False
243424
+ self,
243425
+ image_settings: ImageFormatSettings,
243426
+ *,
243427
+ color_management: bool | None = False,
243265
243428
  ):
243266
243429
  """User interface for setting image format options
243267
243430
 
@@ -243289,7 +243452,7 @@ class UILayout(bpy_struct):
243289
243452
  ...
243290
243453
 
243291
243454
  def template_movieclip(
243292
- self, data: typing.Any, property: str, compact: bool | None = False
243455
+ self, data: typing.Any, property: str, *, compact: bool | None = False
243293
243456
  ):
243294
243457
  """Item(s). User interface for selecting movie clips and their source paths.
243295
243458
 
@@ -243318,6 +243481,7 @@ class UILayout(bpy_struct):
243318
243481
  property: str,
243319
243482
  clip_user: MovieClipUser,
243320
243483
  track: MovieTrackingTrack,
243484
+ *,
243321
243485
  compact: bool | None = False,
243322
243486
  ):
243323
243487
  """Item. A widget to control single marker settings.
@@ -243357,6 +243521,7 @@ class UILayout(bpy_struct):
243357
243521
  propname: str,
243358
243522
  active_dataptr: typing.Any,
243359
243523
  active_propname: str,
243524
+ *,
243360
243525
  item_dyntip_propname: str = "",
243361
243526
  rows: int | None = 5,
243362
243527
  maxrows: int | None = 5,
@@ -243453,7 +243618,7 @@ class UILayout(bpy_struct):
243453
243618
  """
243454
243619
  ...
243455
243620
 
243456
- def template_node_asset_menu_items(self, catalog_path: str = ""):
243621
+ def template_node_asset_menu_items(self, *, catalog_path: str = ""):
243457
243622
  """template_node_asset_menu_items
243458
243623
 
243459
243624
  :param catalog_path:
@@ -243461,7 +243626,7 @@ class UILayout(bpy_struct):
243461
243626
  """
243462
243627
  ...
243463
243628
 
243464
- def template_modifier_asset_menu_items(self, catalog_path: str = ""):
243629
+ def template_modifier_asset_menu_items(self, *, catalog_path: str = ""):
243465
243630
  """template_modifier_asset_menu_items
243466
243631
 
243467
243632
  :param catalog_path:
@@ -243469,7 +243634,7 @@ class UILayout(bpy_struct):
243469
243634
  """
243470
243635
  ...
243471
243636
 
243472
- def template_node_operator_asset_menu_items(self, catalog_path: str = ""):
243637
+ def template_node_operator_asset_menu_items(self, *, catalog_path: str = ""):
243473
243638
  """template_node_operator_asset_menu_items
243474
243639
 
243475
243640
  :param catalog_path:
@@ -243494,7 +243659,7 @@ class UILayout(bpy_struct):
243494
243659
  ...
243495
243660
 
243496
243661
  def template_component_menu(
243497
- self, data: typing.Any | None, property: str, name: str = ""
243662
+ self, data: typing.Any | None, property: str, *, name: str = ""
243498
243663
  ):
243499
243664
  """Item. Display expanded property in a popup menu
243500
243665
 
@@ -243528,7 +243693,7 @@ class UILayout(bpy_struct):
243528
243693
  ...
243529
243694
 
243530
243695
  def template_node_socket(
243531
- self, color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0)
243696
+ self, *, color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0)
243532
243697
  ):
243533
243698
  """Node Socket Icon
243534
243699
 
@@ -243587,7 +243752,7 @@ class UILayout(bpy_struct):
243587
243752
  """
243588
243753
  ...
243589
243754
 
243590
- def template_recent_files(self, rows: int | None = 5) -> int:
243755
+ def template_recent_files(self, *, rows: int | None = 5) -> int:
243591
243756
  """Show list of recently saved .blend files
243592
243757
 
243593
243758
  :param rows: Maximum number of items to show
@@ -243608,6 +243773,7 @@ class UILayout(bpy_struct):
243608
243773
  def template_event_from_keymap_item(
243609
243774
  self,
243610
243775
  item: KeyMapItem,
243776
+ *,
243611
243777
  text: str | None = "",
243612
243778
  text_ctxt: str | None = "",
243613
243779
  translate: bool | None = True,
@@ -243634,6 +243800,7 @@ class UILayout(bpy_struct):
243634
243800
  assets_propname: str,
243635
243801
  active_dataptr: typing.Any,
243636
243802
  active_propname: str,
243803
+ *,
243637
243804
  filter_id_types: set[str] | None = {},
243638
243805
  display_options: set[typing.Literal["NO_NAMES", "NO_FILTER", "NO_LIBRARY"]]
243639
243806
  | None = {},
@@ -243720,6 +243887,7 @@ class UILayout(bpy_struct):
243720
243887
  def template_asset_shelf_popover(
243721
243888
  self,
243722
243889
  asset_shelf: str,
243890
+ *,
243723
243891
  name: str | None = "",
243724
243892
  icon: typing.Literal[
243725
243893
  "NONE",
@@ -244695,6 +244863,7 @@ class UILayout(bpy_struct):
244695
244863
  def template_popup_confirm(
244696
244864
  self,
244697
244865
  operator: str,
244866
+ *,
244698
244867
  text: str | None = "",
244699
244868
  text_ctxt: str | None = "",
244700
244869
  translate: bool | None = True,
@@ -245679,7 +245848,7 @@ class UILayout(bpy_struct):
245679
245848
  ...
245680
245849
 
245681
245850
  @classmethod
245682
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
245851
+ def bl_rna_get_subclass(cls, id: str | None, *, default=None) -> Struct:
245683
245852
  """
245684
245853
 
245685
245854
  :param id: The RNA type identifier.
@@ -245691,7 +245860,7 @@ class UILayout(bpy_struct):
245691
245860
  ...
245692
245861
 
245693
245862
  @classmethod
245694
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
245863
+ def bl_rna_get_subclass_py(cls, id: str | None, *, default=None) -> typing.Any:
245695
245864
  """
245696
245865
 
245697
245866
  :param id: The RNA type identifier.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240809
3
+ Version: 20240811
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=dCP-QFQpnMwxBL1HnTmWCY1rmBZqVLimW11cq5UlaGg,6305519
275
+ bpy/types/__init__.pyi,sha256=Y-xQVA46PGs4_Ey1s_H75_tYBOm0As_kEbN-XtMAN7U,6309090
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
@@ -307,7 +307,7 @@ freestyle/functions/__init__.pyi,sha256=d7SyUcF7r3MQV3OARbT6cCbENGSmDKT--mkUp5Js
307
307
  freestyle/predicates/__init__.pyi,sha256=J1vOBMRPvlHuqiErZabCtSgPUz2kzi8Oh_cc_OIMlD8,13860
308
308
  freestyle/shaders/__init__.pyi,sha256=_yBIN2vWTq70X_8_MfUe4TqiL1Iri4OYjvIkXRQxG5M,24828
309
309
  freestyle/types/__init__.pyi,sha256=i_9VM68H7dzZCYbra4KASlfepVE0_m2Uy2R4vdVNtvY,101225
310
- freestyle/utils/__init__.pyi,sha256=52aR3yvD_c87cbV95i5UNJ8_qgcDVL4XsduGYi8U0zM,5415
310
+ freestyle/utils/__init__.pyi,sha256=dVRmwht78x5Rg53oFqlZgIWB5GpqVs7-JKoZuPkYwV0,5415
311
311
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=3zOixayiQsbvJ5xTNYLsaDGUka_q_u5-YQ68KywJWMg,3579
312
312
  gpu/__init__.pyi,sha256=Sk-6v4PijACLtDfQx_DD7wTM7KUVZd_5xz1i6IqyiyM,7981
313
313
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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-20240809.dist-info/METADATA,sha256=Cfu9Q1cV21l4X_nMktsS-5m4KpcmBQYtlwRegQZNh-M,7289
360
- fake_bpy_module-20240809.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
361
- fake_bpy_module-20240809.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
362
- fake_bpy_module-20240809.dist-info/RECORD,,
359
+ fake_bpy_module-20240811.dist-info/METADATA,sha256=z6zbg1B0VAzDPTf3ZqXhRYi0aXKs2MWq7CkyfVXvxAE,7289
360
+ fake_bpy_module-20240811.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
361
+ fake_bpy_module-20240811.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
362
+ fake_bpy_module-20240811.dist-info/RECORD,,
@@ -161,7 +161,7 @@ def material_from_fedge(fe):
161
161
  ...
162
162
 
163
163
  def normal_at_I0D(it): ...
164
- def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
164
+ def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
165
165
  """Yields a tuple containing the previous and current object"""
166
166
 
167
167
  ...