Update from 3.9 to 3.10.8 and uninstall 3.9

2022-10-23 Thread B N
I am new to python and wish to update 3.9 to3.10.8 which I have downloaded. How do I replace 3.9 with the 3.10.8 I downloaded. Kind regards JohnGee -- https://mail.python.org/mailman/listinfo/python-list

[issue33554] Optimize PyDictObject

2018-05-17 Thread b@n
b@n <ban1...@gmail.com> added the comment: A little performance optimization, but I think the key is not in performance optimization. The semantics of the dictresize function are not uniform, and it is inconvenient for others to read. The dictresize function should be split to make i

[issue33554] Optimize PyDictObject

2018-05-17 Thread b@n
b@n <ban1...@gmail.com> added the comment: Will not break OrderedDict, The order is still the same. -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue33554] Optimize PyDictObject

2018-05-17 Thread b@n
New submission from b@n <ban1...@gmail.com>: make_keys_shared reusing oldkeys memory -- components: Interpreter Core messages: 316901 nosy: b@n priority: normal severity: normal status: open title: Optimize PyDictObject type: enhancement versions: Pyth

[no subject]

2016-04-17 Thread B N
Foor ages, I have been trying to summon up courage learn how to program. I chose o start with Python. I found that when the “black” screen comes on, I am unable to read/see any characters even if I turn up the brightness of the screen. So, I give up. I tried version 3.5.1. I shall be grateful

Confused about error: invalid Python installation: unable to open ..../python2.4/config/Makefile

2008-07-18 Thread Looney, James B (N-ULA)
I built and installed Python 2.4 on 12/12/2007. Recently, I tried installing python-ldap-2.3.4. The error I received was: error: invalid Python installation: unable to open /usr/local/openSource/architectureIndependent:/usr/local/openSource/IRIX 6/lib/python2.4/config/Makefile (No such file or

problem with defining a global class instance

2006-11-16 Thread sharath B N
hi, i am sort of newbie to python. I am trying to do a super Market simulation with OOP in python. I have problems with using a class instance as global... def generate (... ,,...) in this function i define the global variables global stock,stockManager, manager etc. class Manager ...