Coding style 如何配置PyCharm以合理的方式换行

Coding style 如何配置PyCharm以合理的方式换行,coding-style,pycharm,Coding Style,Pycharm,我不能确定,但似乎我无意中重置了一些设置(或者PyCharm的更新中有一个bug特性),但当前版本似乎以一种不希望的方式换行: 例如,考虑这一点: this.trainwreck.is.too.long.to.fit.on.a.single.line.foo.bar.do_something\ (snakes, planes, samuel, jackson) 这几乎是脑死亡,因为 this.trainwreck.is.too.long.to.fit.o

我不能确定,但似乎我无意中重置了一些设置(或者PyCharm的更新中有一个bug特性),但当前版本似乎以一种不希望的方式换行:

例如,考虑这一点:

this.trainwreck.is.too.long.to.fit.on.a.single.line.foo.bar.do_something\
    (snakes, 
     planes,
     samuel,
     jackson)
这几乎是脑死亡,因为

this.trainwreck.is.too.long.to.fit.on.a.single.line.foo.bar.do_something(
    snakes, planes, samuel, jackson)

这会更有意义。是否有修复此问题的设置,因为我非常确定在运行2.5.1版时此设置没有被破坏。看起来像个bug,请启动/投票以接收进度通知

this.trainwreck.is.too.long.to.fit.on.a.single.line.foo.bar.do_something(
    snakes,
    planes,
    samuel,
    jackson)