Changeset 102948 in vbox
- Timestamp:
- Jan 18, 2024 10:31:20 AM (13 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/SDKRef.xml
r102682 r102948 4187 4187 4188 4188 <itemizedlist> 4189 4190 <listitem><para>The Python API bindings for Python 2.x is now marked as being deprecated and will 4191 be removed in a future version. Please upgrade your code to use Python 3.</para> 4192 </listitem> 4189 4193 4190 4194 <listitem><para>Guest process creation requires a new parameter for specifying the current working directory for the new -
trunk/doc/manual/user_ChangeLogImpl.xml
r102873 r102948 122 122 </listitem> 123 123 124 <listitem> 125 <para>Python: Our API bindings for Python 2.x is now marked as being deprecated and will 126 be removed in a future version. Please upgrade your code to use Python 3</para> 127 </listitem> 128 124 129 </itemizedlist> 125 130 </sect1> -
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r102912 r102948 3655 3655 del sPath, asLocations 3656 3656 3657 # Deprecation warning for older Python stuff (< Python 3.x). 3658 if sys.version_info.major < 3: 3659 print("\nWarning: Running VirtualBox with Python %d.%d is marked as being deprecated.\n" \ 3660 "Please upgrade your Python installation to avoid breakage.\n" \ 3661 % (sys.version_info.major, sys.version_info.minor)) 3657 3662 3658 3663 #
Note:
See TracChangeset
for help on using the changeset viewer.