Change record status: 
Project: 
Introduced in branch: 
8.x
Description: 

The function drupal_uninstall_modules() was renamed to module_uninstall() and moved from core/includes/install.inc to core/includes/module.inc. The usage is unchanged.

Example code:

// Drupal 7
// Uninstall Comment module.
drupal_uninstall_modules(array('comment'));

// Drupal 8
// Uninstall Comment module.
module_uninstall(array('comment'));
Impacts: 
Module developers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done