This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Clayton Bingham
Recipients Clayton Bingham
Date 2020-03-06.21:14:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1583529258.07.0.323990026349.issue39880@roundup.psfhosted.org>
In-reply-to
Content
Code to reproduce the behavior:

```
string = 'h.pt3dadd(3333.994527806812,7310.741605031661,-152.492,0.2815384615384615,sec=sectionList[1396])\n'
print(string.lstrip('h.pt3dadd(').split(','))
```

The lstrip method removed 'h.pt3dadd(' but also removes the 3's before the first decimal in the remaining string.
History
Date User Action Args
2020-03-06 21:14:18Clayton Binghamsetrecipients: + Clayton Bingham
2020-03-06 21:14:18Clayton Binghamsetmessageid: <1583529258.07.0.323990026349.issue39880@roundup.psfhosted.org>
2020-03-06 21:14:18Clayton Binghamlinkissue39880 messages
2020-03-06 21:14:17Clayton Binghamcreate