https://github.com/furkanonder/
🪄 We fixed a bug that required the ".pyc magic number" to be increased.
🪄 The ABI isn't changing, and wheels built for rc1 should still work.
🏆 Bonus: Early Python 3.13.7!
discuss.python.org/t/python-3-1...
#Python #CPython #Python314 #release
🪄 We fixed a bug that required the ".pyc magic number" to be increased.
🪄 The ABI isn't changing, and wheels built for rc1 should still work.
🏆 Bonus: Early Python 3.13.7!
discuss.python.org/t/python-3-1...
#Python #CPython #Python314 #release
There could be a bonus section on the most troublesome argparse issues and solutions in CPython :)
There could be a bonus section on the most troublesome argparse issues and solutions in CPython :)
For example, an error I see very often;
parser.add_argument(“age”)
args = parser.parse_args()
the_age = int(args.age)
instead of;
parser.add_argument(“age”, type=int")
args = parser.parse_args()
the_age = args.age
For example, an error I see very often;
parser.add_argument(“age”)
args = parser.parse_args()
the_age = int(args.age)
instead of;
parser.add_argument(“age”, type=int")
args = parser.parse_args()
the_age = args.age