[issue46541] Replace _Py_IDENTIFIER() with statically initialized objects.

2022-02-14 Thread Eric Snow
Eric Snow added the comment: New changeset 12360aa159c42c7798fd14225d271e6fd84db7eb by Eric Snow in branch 'main': bpo-46541: Discover the global strings. (gh-31346) https://github.com/python/cpython/commit/12360aa159c42c7798fd14225d271e

[issue46541] Replace _Py_IDENTIFIER() with statically initialized objects.

2022-02-15 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +29513 pull_request: https://github.com/python/cpython/pull/31363 ___ Python tracker <https://bugs.python.org/issue46

[issue46541] Replace _Py_IDENTIFIER() with statically initialized objects.

2022-02-15 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +29514 pull_request: https://github.com/python/cpython/pull/31364 ___ Python tracker <https://bugs.python.org/issue46

[issue46541] Replace _Py_IDENTIFIER() with statically initialized objects.

2022-02-15 Thread Eric Snow
Eric Snow added the comment: New changeset 6c8958948666403f2370ca7b4c0a52b2010ec16d by Eric Snow in branch 'main': bpo-46541: Drop the check for orphaned global strings. (gh-31363) https://github.com/python/cpython/commit/6c8958948666403f2370ca7b4c0a52

[issue46541] Replace _Py_IDENTIFIER() with statically initialized objects.

2022-02-15 Thread Eric Snow
Eric Snow added the comment: New changeset 4d8a515d193a4c9f3844704f974ddb870d7ee383 by Eric Snow in branch 'main': bpo-46541: Scan Fewer Files in generate_global_objects.py (gh-31364) https://github.com/python/cpython/commit/4d8a515d193a4c9f3844704f974ddb

[issue46765] Replace Locally Cached Strings with Statically Initialized Objects

2022-02-15 Thread Eric Snow
New submission from Eric Snow : This removes a number of static variables and is a little more efficient. -- assignee: eric.snow components: Interpreter Core messages: 413313 nosy: eric.snow priority: normal severity: normal stage: needs patch status: open title: Replace Locally Cached

[issue46765] Replace Locally Cached Strings with Statically Initialized Objects

2022-02-15 Thread Eric Snow
Change by Eric Snow : -- keywords: +patch pull_requests: +29516 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/31366 ___ Python tracker <https://bugs.python.org/issu

[issue46772] Statically Initialize PyArg_Parser in clinic.py

2022-02-16 Thread Eric Snow
New submission from Eric Snow : The code generated by clinic.py is already partially statically initialized. Currently we init the other fields in Python/getargs.c:parser_init(), which runs the first time we try to use each parser. AFAICS, that remaining init that could be done statically

[issue46773] Add a Private API for Looking Up Global Objects

2022-02-16 Thread Eric Snow
New submission from Eric Snow : We need this to statically initialize PyArg_Parser.kwtuple. (See bpo-46772.) For now this will be a "private" API (leading underscore). Ultimately, we'll want a Public API, so we can eventually stop exposing *any* objects as symbols in the

[issue46772] Statically Initialize PyArg_Parser in clinic.py

2022-02-16 Thread Eric Snow
Change by Eric Snow : -- dependencies: +Add a Private API for Looking Up Global Objects, Statically allocate and initialize the empty tuple. ___ Python tracker <https://bugs.python.org/issue46

[issue46541] Replace _Py_IDENTIFIER() with statically initialized objects.

2022-02-16 Thread Eric Snow
Eric Snow added the comment: (from https://github.com/python/cpython/pull/31376#issuecomment-1041836106) [corona10] > Should we create the separate bpo issue if module changes are too noisy? I think it's fine to use the one issue. There are only 26 modules with `NEEDS_PY_IDENTIF

[issue43974] Define Py_BUILD_CORE_MODULE in extensions instead of setup.py and Modules/Setup

2022-02-17 Thread Eric Snow
Change by Eric Snow : -- nosy: +eric.snow ___ Python tracker <https://bugs.python.org/issue43974> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41111] [C API] Convert a few stdlib extensions to the limited C API (PEP 384)

2022-02-17 Thread Eric Snow
Change by Eric Snow : -- nosy: +eric.snow ___ Python tracker <https://bugs.python.org/issue4> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46806] Overlapping PYTHONPATH may cause import already imported module

2022-02-22 Thread Eric Snow
Eric Snow added the comment: When you run a Python script, the directory the script is in is automatically added to the beginning of sys.path. This is the fundamental issue you've run into. Basically, "src.common_object" is imported relative to the "src" that was

[issue46806] Overlapping PYTHONPATH may cause import already imported module

2022-02-22 Thread Eric Snow
Eric Snow added the comment: Here is more detail on what happens when "from src import user_1, user_2, user_3" is executed in main.py: 1. the "src" module is imported a. not found in sys.modules b. file found on a sys.path entry (the directory main.py is in) c.

[issue46806] Overlapping PYTHONPATH may cause import already imported module

2022-02-22 Thread Eric Snow
Eric Snow added the comment: I'm leaving this "pending" in case there may be some improvement we can make to the documentation to address this. -- components: +Interpreter Core nosy: +docs@python status: open -> pending ___ Pyth

[issue40255] Fixing Copy on Writes from reference counting and immortal objects

2022-02-22 Thread Eric Snow
Eric Snow added the comment: Thanks for the updates, Eddie. -- ___ Python tracker <https://bugs.python.org/issue40255> ___ ___ Python-bugs-list mailin

[issue46765] Replace Locally Cached Strings with Statically Initialized Objects

2022-02-22 Thread Eric Snow
Eric Snow added the comment: New changeset 1f455361ecfb1892e375bdbee813cdf095b6cfb8 by Eric Snow in branch 'main': bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects (gh-31366) https://github.com/python/cpython/commit/1f455361ecfb1892e375bdbee813cd

[issue46765] Replace Locally Cached Strings with Statically Initialized Objects

2022-02-22 Thread Eric Snow
Change by Eric Snow : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue46806] Overlapping PYTHONPATH may cause import already imported module

2022-02-23 Thread Eric Snow
Eric Snow added the comment: FYI, a technical solution has been discussed before: bpo-13475 and PEP 395. However, that does not help so much if the default behavior isn't changed. That would require a PEP but I expect it would be rejected because so many scripts already rely o

[issue45316] [C API] Functions not exported with PyAPI_FUNC()

2022-02-25 Thread Eric Snow
Eric Snow added the comment: Thanks for working on this, Victor. -- nosy: +eric.snow ___ Python tracker <https://bugs.python.org/issue45316> ___ ___ Python-bug

[issue46753] Statically allocate and initialize the empty tuple.

2022-02-28 Thread Eric Snow
Eric Snow added the comment: New changeset 08deed1af56bec8668c6cb4d5cfd89e393e1fe5e by Eric Snow in branch 'main': bpo-46753: Add the empty tuple to the _PyRuntimeState.global_objects. (gh-31345) https://github.com/python/cpython/commit/08deed1af56bec8668c6cb4d5cfd89

[issue46886] pyexpat occasionally fails to build on the ARM64 Windows Non-Debug 3.x buildbot

2022-02-28 Thread Eric Snow
New submission from Eric Snow : example: https://buildbot.python.org/all/#/builders/730/builds/4081 -- components: Build messages: 414223 nosy: eric.snow, vstinner priority: normal severity: normal stage: needs patch status: open title: pyexpat occasionally fails to build on the ARM64

[issue46753] Statically allocate and initialize the empty tuple.

2022-02-28 Thread Eric Snow
Change by Eric Snow : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue46712] Share global string identifiers in deepfreeze

2022-03-01 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +29759 pull_request: https://github.com/python/cpython/pull/31637 ___ Python tracker <https://bugs.python.org/issue46

[issue46890] venv does not create "python" link in python 3.11

2022-03-01 Thread Eric Snow
Eric Snow added the comment: This may be related to the getpath.py work Steve did. -- nosy: +eric.snow, steve.dower ___ Python tracker <https://bugs.python.org/issue46

[issue46712] Share global string identifiers in deepfreeze

2022-03-01 Thread Eric Snow
Eric Snow added the comment: New changeset 21099fc064c61d59c936a2f6a0db3e07cd5c8de5 by Eric Snow in branch 'main': bpo-46712: Let generate_global_objects.py Run on Earlier Python Versions (gh-31637) https://github.com/python/cpython/commit/21099fc064c61d59c936a2f6a0db3e

[issue1284] typo in lib doc 7.3.2.1 MaildirMessage

2007-10-15 Thread Eric Wollesen
New submission from Eric Wollesen: get_subdir( ) Return either "new" (if the message should be stored in the new subdirectory) or "cur" (if the message should be stored in the cur subdirectory). Note: A message is typically moved from new to cur after its mailb

[issue1327] Python 2.4+ spends too much time in PyEval_EvalFrame w/ xmlrpmclib

2007-10-26 Thread Eric Sammons
Eric Sammons added the comment: I have tested 2.4.4 and 2.5.1 from python.org and both suffer from the exact same issue. I have also compared ceval.c from 2.3, the last known working copy and ceval.c from 2.4+ and found that ceval.c has undergone some pretty significant changes

[issue1361] hashlib uses OpenSSL which is much slower than Aaron Gifford

2007-10-29 Thread Eric Hopper
New submission from Eric Hopper: Aaron Gifford's implementation of SHA-{256,384,512} is nearly twice as fast as OpenSSLs. -- components: Extension Modules messages: 56946 nosy: Omnifarious severity: normal status: open title: hashlib uses OpenSSL which is much slower than Aaron Gi

[issue1361] hashlib uses OpenSSL which is much slower than Aaron Gifford

2007-10-29 Thread Eric Hopper
Eric Hopper added the comment: My testing methodology was faulty, this is not actually true. Oops. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1361> __ ___

[issue1361] please close: hashlib uses OpenSSL which is much slower than Aaron Gifford

2007-10-29 Thread Eric Hopper
Changes by Eric Hopper: -- title: hashlib uses OpenSSL which is much slower than Aaron Gifford -> please close: hashlib uses OpenSSL which is much slower than Aaron Gifford __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue12857] Expose called function on frame object

2011-09-13 Thread Eric Snow
Eric Snow added the comment: Finally had a chance to get back to this. Here's a new patch in response to Nick's review. My only concern is the new _PyEval_EvalFunctionCode function. It is basically the existing PyEval_EvalCodeEx function with an extra parameter. I

[issue12857] Expose called function on frame object

2011-09-14 Thread Eric Snow
Eric Snow added the comment: Nick, does thing look better? -- nosy: +ncoghlan ___ Python tracker <http://bugs.python.org/issue12857> ___ ___ Python-bugs-list m

[issue13062] Introspection generator and function closure state

2011-09-29 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13062> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7652] Merge C version of decimal into py3k.

2011-09-29 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue7652> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13062] Introspection generator and function closure state

2011-09-29 Thread Eric Snow
Eric Snow added the comment: See: http://hg.python.org/cpython/file/default/Include/funcobject.h#l34 http://hg.python.org/cpython/file/default/Objects/funcobject.c#l454 454 /* func_new() maintains the following invariants for closures. The 455closure must correspond to the free

[issue13075] PEP-0001 contains dead links

2011-09-30 Thread Eric Snow
Eric Snow added the comment: "Maybe some of them are already superseded, but even then I think they have at least historical value and should be kept on python.org." +1 -- nosy: +eric.snow ___ Python tracker <http://bugs.python.o

[issue11816] Refactor the dis module to provide better building blocks for bytecode analysis

2011-10-03 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue11816> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13124] Add "Running a Build Slave" page to the devguide

2011-10-07 Thread Eric Snow
New submission from Eric Snow : Here's a patch to add a page to the devguide on running a build slave. I copied pretty liberally from the wiki (http://wiki.python.org/moin/BuildBot). That page may or may not be up to date (I don't know), so the bulk of this new page may also be o

[issue13124] Add "Running a Build Slave" page to the devguide

2011-10-07 Thread Eric Snow
Eric Snow added the comment: Great feedback! Keep in mind that nearly all the content in my patch is pulled unedited from either the wiki page and the python-dev thread I mentioned. I'll work on cleaning it up when I get a chance (probably after Wednesday's PyCon CFP closes :).

[issue8087] Unupdated source file in traceback

2011-10-10 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue8087> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13177] Avoid chained exceptions in lru_cache

2011-10-14 Thread Eric Snow
Eric Snow added the comment: Could you just cancel the chained exception? >>> try: {}["asdf"] ... except KeyError: ... try: raise Exception() ... except Exception as x: ... x.__cause__ = None ... x.__context__ = None ... x._

[issue13187] relative imports don't work when circular

2011-10-15 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13187> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue415492] Compiler generates relative filenames

2011-10-16 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue415492> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13192] ImportError silences low-level OS errors

2011-10-16 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13192> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13192] ImportError silences low-level OS errors

2011-10-17 Thread Eric Snow
Eric Snow added the comment: Are you suggesting raising the OSError (or something else) rather than an ImportError? If so, would it make sense to chain the exception instead. That way the existing code that expects ImportError continues to work, while still allowing access to the original

[issue12915] Add inspect.locate and inspect.resolve

2011-10-19 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue12915> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13124] Add "Running a Build Slave" page to the devguide

2011-10-19 Thread Eric Snow
Eric Snow added the comment: Per Ezio's and Stefan's feedback I cleaned things up a little: * consolidated on "Buildbot" * clarified the meaning of the "standard development toolchain" * % changed to $ * cleaned up the network ports section * removed a bunch of ou

[issue13124] Add "Running a Build Slave" page to the devguide

2011-10-19 Thread Eric Snow
Changes by Eric Snow : Added file: http://bugs.python.org/file23479/devguide-buildbots-2.diff ___ Python tracker <http://bugs.python.org/issue13124> ___ ___ Python-bug

[issue13243] _Py_identifier should be _Py_IDENTIFER

2011-10-21 Thread Eric Snow
New submission from Eric Snow : Looks like Parser/asdl_c.py did not get all the way updated when _Py_identifier switched over to _Py_IDENTIFER. I've included a patch that fixes it (though it's relatively trivial). With this fix I did not notice any further problems. --

[issue10977] Concrete object C API considered harmful to subclasses of builtin types

2011-11-05 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue10977> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13361] getLogger does not check its argument

2011-11-07 Thread Eric Snow
Eric Snow added the comment: FYI, the following changesets were also for this issue. They had the wrong issue number (#13661, which doesn't actually exist so no big deal), which is why they didn't show up in this issue automatically. New changeset 5f3b7528b144 by Vinay Sajip in b

[issue13387] add exact_type argument to assertIsInstance

2011-11-12 Thread Eric Snow
Eric Snow added the comment: @msg147513 > Why don't you just write > self.assertIs(type(myobj), sometype) +1 -- nosy: +eric.snow ___ Python tracker <http://bugs.python.

[issue13386] Document documentation conventions for optional args

2011-11-14 Thread Eric Snow
Eric Snow added the comment: >> 4) she got annoyed that two completely different notations where used >> for two very close concepts > > This is a good point, and we are trying to move to the arg=default > notation. Unfortunately there are still places that use t

[issue2775] Implement PEP 3108

2011-11-14 Thread Eric Snow
Eric Snow added the comment: For the stat module in the "Obsolete" section[1], should the entry be updated to indicate that the module was left alone (see issue 2874)? Would it be worth having the "Merging C and Python Impl..." section[2] include a reference to

[issue13386] Document documentation conventions for optional args

2011-11-15 Thread Eric Snow
Eric Snow added the comment: > Me too. (Can you give the #ids of these other issues?) #13012 is the one that I was thinking of (msg144328 specifically). However, I'm sure there was one more recently (which I can't find now). -- _

[issue13386] Document documentation conventions for optional args

2011-11-15 Thread Eric Snow
Eric Snow added the comment: @msg147671 +1 -- ___ Python tracker <http://bugs.python.org/issue13386> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13411] Hashable memoryviews

2011-11-15 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13411> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13429] provide __file__ to extension init function

2011-11-18 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13429> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10621] >>> 1 + 2j --> (1 + 2j) and not (1+2j)

2011-11-21 Thread Eric Snow
Eric Snow added the comment: @eric.smith: +1 @Retro: If you are intent on pushing this, please take it to python-id...@python.org. However, judging from the response in this ticket and #10562, you won't get much traction. -- nosy: +eric

[issue10562] Change 'j' for imaginary unit into an 'i'

2011-11-21 Thread Eric Snow
Eric Snow added the comment: @brian.curtin: +1 @Retro: as noted in #10621, please take this to python-id...@python.org -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue10

[issue13402] Document absoluteness of sys.executable

2011-11-21 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13402> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13445] Enable linking the module pysqlite with Berkeley DB SQL instead of SQLite

2011-11-21 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13445> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12618] py_compile cannot create files in current directory

2011-11-21 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue12618> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10854] Output .pyd name in error message of ImportError when DLL load fails

2011-11-22 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue10854> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13224] Change str(x) to return only __qualname__ for some types

2011-11-22 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13224> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13474] Mention of "-m" Flag Missing From Doc on Execution Model

2011-11-24 Thread Eric Snow
New submission from Eric Snow : The doc on code execution[1] leaves out mention of the -m flag. Seems like it belongs there too. [1] Doc/reference/executionmodel.rst -- assignee: docs@python components: Documentation messages: 148288 nosy: docs@python, eric.snow priority: normal

[issue13475] Add '-p'/'--path0' command line option to override sys.path[0] initialisation

2011-11-24 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13475> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13475] Add '-p'/'--path0' command line option to override sys.path[0] initialisation

2011-11-24 Thread Eric Snow
Eric Snow added the comment: +1 Both the -p and --nopath0 would be great additions and a good match for PEP 395. So "-p ." would be equivalent to the current implicit sys.path[0] initialization, right? Would any other effects happen with "-p" than sys.path[0] initiali

[issue8754] quote bad module name in ImportError-like messages

2011-11-25 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue8754> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13475] Add '-p'/'--path0' command line option to override sys.path[0] initialisation

2011-11-25 Thread Eric Snow
Eric Snow added the comment: The current behavior is an implicit "-p .", which causes all sorts of hard-to-figure-out problems, most of which PEP 395 is rightly trying to fix. I'm suggesting that the next step would be to make "--nopath0" the default (rendering the

[issue12307] Inconsistent formatting of section titles in PEP 0

2011-11-25 Thread Eric Snow
Eric Snow added the comment: Éric has addressed this in http://hg.python.org/peps/rev/6c7415a4f0f3 (thanks Éric). Do the docs for python.org have to be manually rebuilt or is that on a cron? -- ___ Python tracker <http://bugs.python.

[issue13475] Add '-p'/'--path0' command line option to override sys.path[0] initialisation

2011-11-25 Thread Eric Snow
Eric Snow added the comment: First of all, I don't want Nick's proposal in this issue (the -p and --nopath0 flags) to be misunderstood because of me. His is a great idea that will make a really useful shortcut available and will _not_ change any current behavior. My (overly) long

[issue13475] Add '-p'/'--path0' command line option to override sys.path[0] initialisation

2011-11-25 Thread Eric Snow
Eric Snow added the comment: Yeah, the more I think about it, the more I agree it's Python 4 fodder. -- ___ Python tracker <http://bugs.python.org/is

[issue13457] Use repr(module name) ImportErrors

2011-11-26 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13457> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12307] Inconsistent formatting of section titles in PEP 0

2011-11-26 Thread Eric Snow
Eric Snow added the comment: Thanks, Éric. That's what I figured. I asked because the PEPs page doesn't appear to reflect the change: http://www.python.org/dev/peps/ I checked to be sure it fixed it before I submitted the patch. That's why I asked about

[issue13487] inspect.getmodule fails when module imports change sys.modules

2011-11-26 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13487> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12307] Inconsistent formatting of section titles in PEP 0

2011-11-28 Thread Eric Snow
Eric Snow added the comment: Thanks, Éric. That looks good. I'll keep that HTML title thing in mind. :) -- ___ Python tracker <http://bugs.python.org/is

[issue1877] unhelpful error when calling "python "

2011-11-28 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue1877> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6816] Provide CPython command line functionality via runpy module

2011-11-28 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue6816> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11374] pkgutil.extend_path do not recognize py{c,o} file

2011-11-29 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue11374> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13533] Would like Py_Initialize to play friendly with host app

2011-12-05 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13533> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11051] system calls per import

2011-12-05 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue11051> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2919] Merge profile/cProfile in 3.0

2011-12-09 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue2919> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13588] Change name of internal closure functions in importlib

2011-12-12 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13588> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13585] Add contextlib.CleanupManager

2011-12-12 Thread Eric Snow
Eric Snow added the comment: Check out: http://code.activestate.com/recipes/ -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13585> ___ ___

[issue1559549] ImportError needs attributes for module and file name

2011-12-15 Thread Eric Snow
Eric Snow added the comment: Just following up on this ticket. Anyone have any objections to Brian's patch? Also, would 'fullname' be more appropriate than 'name', to be more in sync with that identifier in importlib? --

[issue2377] Replace __import__ w/ importlib.__import__

2011-12-15 Thread Eric Snow
Eric Snow added the comment: AFAICT, #1559549 is the ImportError attribute ticket. -- ___ Python tracker <http://bugs.python.org/issue2377> ___ ___ Python-bug

[issue11957] re.sub confusion between count and flags args

2011-12-15 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue11957> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13592] repr(regex) doesn't include actual regex

2011-12-15 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13592> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2134] Add new attribute to TokenInfo to report specific token IDs

2011-12-15 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue2134> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2292] Missing *-unpacking generalizations

2011-12-15 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue2292> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1559549] ImportError needs attributes for module and file name

2011-12-15 Thread Eric Snow
Eric Snow added the comment: I'm guessing that more than just Python/import.c should be updated, and more than one spot in import.c. -- ___ Python tracker <http://bugs.python.org/issu

[issue12082] Python/import.c still references fstat even with DONT_HAVE_FSTAT/!HAVE_FSTAT

2011-12-15 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue12082> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1785] "inspect" gets broken by some descriptors

2011-12-16 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue1785> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8098] PyImport_ImportModuleNoBlock() may solve problems but causes others.

2011-12-20 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue8098> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13645] test_import fails after test_coding

2011-12-21 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13645> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13607] Move generator specific sections out of ceval.

2011-12-21 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker <http://bugs.python.org/issue13607> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12857] Expose called function on frame object

2011-12-27 Thread Eric Snow
Eric Snow added the comment: My response to a similar query: What it enables is the ability to introspect the *actual* function object belonging to the currently executing code, whether in the same execution frame or in a later one on the stack. We don't have that now. The best we c

<    1   2   3   4   5   6   7   8   9   10   >