Python 4.0 delayed annotation evaluation (from __future__ import annotations ) #63713

Open
opened 2019-04-18 23:09:57 +02:00 by Arnaud Couturier · 4 comments

Short description of error
Adding
from __future__ import annotations
at the top of a python file makes the properties annotations of operators non-existent.

This will be enabled by default in Python 4.0, see: https://www.python.org/dev/peps/pep-0563

Exact steps for others to reproduce the error
Create and enable this simple demo addon:

from __future__ import annotations # this line makes the line 30 throw an error, because the property some_prop of BUGANNOTATIONS_OT_some_op will no longer exist

bl_info = {
	'name': 'Bug annotations with __future__',
	'author': 'Arnold, Arnaud Couturier, piiichan (couturier.arnaud@gmail.com)',
	'version': (1, 0, 0),
	'blender': (2, 80, 0),
	'location': 'scene options',
	'category': 'Scene',
}

import bpy


class BUGANNOTATIONS_OT_some_op(bpy.types.Operator):
	bl_idname = 'scene.hey'
	bl_label = 'An operator'
	some_prop: bpy.props.StringProperty(name='Hello', default='Default value')


class BUGANNOTATIONS_PT_some_panel(bpy.types.Panel):
	bl_region_type = 'WINDOW'
	bl_space_type = 'PROPERTIES'
	bl_context = 'scene'
	bl_options = {'DEFAULT_CLOSED'}
	bl_label = 'Bug annotations'

	def draw(self, context):
		op = self.layout.operator(BUGANNOTATIONS_OT_some_op.bl_idname)
		print(op.some_prop)


def register():
	bpy.utils.register_class(BUGANNOTATIONS_OT_some_op)
	bpy.utils.register_class(BUGANNOTATIONS_PT_some_panel)


def unregister():
	bpy.utils.unregister_class(BUGANNOTATIONS_PT_some_panel)
	bpy.utils.unregister_class(BUGANNOTATIONS_OT_some_op)

then go in the scene settings, a new panel appears. Show the button inside, and look into the console, you'll see that some_prop from the operator doesn't exist if future is imported.

**Short description of error** Adding `from __future__ import annotations` at the top of a python file makes the properties annotations of operators non-existent. This will be enabled by default in Python 4.0, see: https://www.python.org/dev/peps/pep-0563 **Exact steps for others to reproduce the error** Create and enable this simple demo addon: ``` from __future__ import annotations # this line makes the line 30 throw an error, because the property some_prop of BUGANNOTATIONS_OT_some_op will no longer exist bl_info = { 'name': 'Bug annotations with __future__', 'author': 'Arnold, Arnaud Couturier, piiichan (couturier.arnaud@gmail.com)', 'version': (1, 0, 0), 'blender': (2, 80, 0), 'location': 'scene options', 'category': 'Scene', } import bpy class BUGANNOTATIONS_OT_some_op(bpy.types.Operator): bl_idname = 'scene.hey' bl_label = 'An operator' some_prop: bpy.props.StringProperty(name='Hello', default='Default value') class BUGANNOTATIONS_PT_some_panel(bpy.types.Panel): bl_region_type = 'WINDOW' bl_space_type = 'PROPERTIES' bl_context = 'scene' bl_options = {'DEFAULT_CLOSED'} bl_label = 'Bug annotations' def draw(self, context): op = self.layout.operator(BUGANNOTATIONS_OT_some_op.bl_idname) print(op.some_prop) def register(): bpy.utils.register_class(BUGANNOTATIONS_OT_some_op) bpy.utils.register_class(BUGANNOTATIONS_PT_some_panel) def unregister(): bpy.utils.unregister_class(BUGANNOTATIONS_PT_some_panel) bpy.utils.unregister_class(BUGANNOTATIONS_OT_some_op) ``` then go in the scene settings, a new panel appears. Show the button inside, and look into the console, you'll see that some_prop from the operator doesn't exist if __future__ is imported.

Added subscriber: @piiichan

Added subscriber: @piiichan

Added subscribers: @ideasman42, @ZedDB

Added subscribers: @ideasman42, @ZedDB

@ideasman42 do we support this?

@ideasman42 do we support this?
Campbell Barton changed title from from __future__ import annotations breaks operators properties annotations to Support for Python 4.0 delayed annotation evaluation (from __future__ import annotations) 2019-04-19 14:27:47 +02:00
Campbell Barton changed title from Support for Python 4.0 delayed annotation evaluation (from __future__ import annotations) to Python 4.0 delayed annotation evaluation (from __future__ import annotations) 2019-04-19 14:28:27 +02:00

Marking as TODO since it's not used unless you explicitly enable it and it's marked for inclusion in Python 4.0. - Added to #63733

Marking as TODO since it's not used unless you explicitly enable it and it's marked for inclusion in Python 4.0. - Added to #63733
Campbell Barton changed title from Python 4.0 delayed annotation evaluation (from __future__ import annotations) to Python 4.0 delayed annotation evaluation (from __future__ import annotations ) 2019-04-19 14:33:21 +02:00
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#63713
No description provided.