enso/test/Table_Tests
Hubert Plociniczak 0e5df935d3
Don't rename imported Main module that only imports names (#3710)
Turns that if you import a two-part import we had special code that would a) add Main submodule b) add an explicit rename.

b) is problematic because sometimes we only want to import specific names.
E.g.,
```
from Bar.Foo import Bar, Baz
```
would be translated to
```
from Bar.Foo.Main as Foo import Bar, Baz
```
and it should only be translated to
```
from Bar.Foo.Main import Bar, Baz
```

This change detects this scenario and does not add renames in that case.

Fixes [183276486](https://www.pivotaltracker.com/story/show/183276486).
2022-09-16 13:01:06 +00:00
..
data DataFormatter should infer datetime from values without seconds (#3668) 2022-08-26 21:10:52 +00:00
scripts/postgresssl Docker file for testing Postgres SSL and updated Postgres Spec (#3607) 2022-07-26 13:28:43 +00:00
src Don't rename imported Main module that only imports names (#3710) 2022-09-16 13:01:06 +00:00
package.yaml Simple CSV parser (#1268) 2020-11-05 16:53:50 +01:00