Issue 26008: Different behaviour platform.linux_distribution() on Python2.7.11 and 3.5.1 (original) (raw)

Hi! I have a doubt, is this behaviour in Python2.7.11 usual, or is it a bug?

import platform platform.linux_distribution() ('', '', '')

In Python3.5.1 I get

import platform platform.linux_distribution() ('arch', 'Arch', 'Linux')

I work with Archlinux x86_64 with lsb-release installed. Thanks!