-
Notifications
You must be signed in to change notification settings - Fork 587
Add some missing bits in features documentation: class, keyword_any, keyword_all #23438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: blead
Are you sure you want to change the base?
Conversation
I checked out your branch locally, configured and built, then ran |
deb7305
to
fbd3c08
Compare
@mvuets, thanks for this. It would be better to reorder the commits so your being an author comes before anything you authored. |
fbd3c08
to
3318c56
Compare
@jkeenan, my bad. I naively assumed I'd just send a quick patch and I didn't care about attribution. I apologise for causing you unnecessary work. I have now got myself familiar with README, INSTALL, perlhack, etc., then configured perl, built perl, ran all tests, and it looks all okay on my end. The new patches have been rebased against blead and pushed. Note: perlsource mentions Porting/podtidy and that "it's a good idea to run this on a pod file you've patched". I tried running it on both files, but it messed up a lot of existing formatting in perlexperiment.pod, so I didn't include that. P.S. While I was writing this comment, I got a new failed test in t/porting/cmp_version.t. It's been fixed now. I'm going to re-push in a moment. Sorry for the noise. P.P.S. @khwilliamson, noted! I don't know why is that better, but I've reordered them too. Thank you all for help and patience. Whew 😅 |
Question for list: What would be the best way to verify statements such as this:
... at various points in lib/feature.pm? |
@jkeenan Here's one way. Let's say I want to know when the I run
to see all commits that added or removed the word I run
to see the first tag that contains this commit. In this case it outputs |
(I probably should have mentioned this in the commit message.) I used
|
I was adding missing features to experimental.pm. I couldn't find direct answers in which Perl versions the missing features (class, keyword_any, and keyword_all) were introduced. I had to do some code spelunking to figure it out. This patch is the result of my tiny investigation.