We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6438394 commit 871e5d5Copy full SHA for 871e5d5
1 file changed
pystring_impl.h
@@ -577,7 +577,7 @@ const std::string colon = ":";
577
bool isupper(const std::string &str)
578
{
579
// this is written this way to match python's behavior of isupper
580
- // in python something like HELLO! (the "!") is basically ignored
+ // in python something like "HELLO!" returns true (the "!" is basically ignored)
581
bool has_cased = false;
582
for (std::string::size_type i = 0; i < str.size(); ++i)
583
0 commit comments