0

I'm relatively new to programming, and I've been reading some stack overflow answers to questions that I've had, and in the comments syntax holdovers are mentioned. I've searched all over for what these are, but I have not found what they are.

Here is a link to where I found this terminology: Difference between del, remove and pop on lists

VirusFreeNewt
  • 27
  • 1
  • 9

1 Answers1

1

Holdover is not a technical term. It has a simple dictionary definition.

a person or thing surviving from an earlier time

However, the word is used incorrectly in the given SO comment. Whereas a holdover is something retained (unchanged) @jxramos uses it to mean something eliminated or modified, which is just the opposite.

The comment appears intended to say, "I thought del was a Python 2 keyword that was changed, but it still works in Python 3." And the reply is, "del is unchanged, just like return etc."

jaco0646
  • 15,303
  • 7
  • 59
  • 83