PyTorch 0.4 and master ```python import torch x = torch.randn(3, 5, 6) print(x.t().shape) print(x.t().stride()) ``` Previously, Tensor.t() threw an exception on non-2D tensors.