- 10 Ock, 2005 4 kayıt (commit)
-
-
Walter Dörwald yazdı
-
Johannes Gijsbers yazdı
profile.help() point at the library reference instead of profile.doc.
-
Andrew McNamara yazdı
writer objects (other GC infrastructure already in place).
-
Andrew McNamara yazdı
left in stream).
-
- 09 Ock, 2005 5 kayıt (commit)
-
-
http://www.example.com?query=spamJohannes Gijsbers yazdı
a delimiter. Previously, the 'network location' (<authority> in RFC 2396) would become 'www.example.com?query=spam', while RFC 2396 does not allow a '?' in <authority>. See bug #548176 for further discussion.
-
Johannes Gijsbers yazdı
removing some duplication and gaining some flexibility in the process.
-
Johannes Gijsbers yazdı
there's no need to subclass OptionParser.
-
Johannes Gijsbers yazdı
* Document hasFeature(), createDocument(), CreateDocumentType(), hasAttribute(), hasAttributeNS(). * In the documentation for createDocument(), it is now stated that the Python DOM API allows implementations to forego creation of the document element child node, if no namespace and local name arguments are given. (This possibility is left open and unaddressed in the W3C spec). * Addition by me: use 'name' rather than 'attname', for consistency with the DOM specification and the Python DOM API implementation.
-
Johannes Gijsbers yazdı
-
- 08 Ock, 2005 11 kayıt (commit)
-
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
Python file/line when the current C execution frame is inside PyEval_EvalFrame. These are commented out by default because GDB sometimes crashes as a result (seems like a GDB bug). Add a pyframe command that displays the current Python stack frame. If the marked lines are uncommented, it will also cause Emacs/XEmacs to display the current file/line.
-
Johannes Gijsbers yazdı
properties, and custom descriptors. * removed special handling of properties * added special handling of data descriptors - All data descriptors are grouped together in a section. For each item, the attribute name and doc string, if present, is displayed. * disabled display of __slots__ attribute - since slots are descriptors, they are listed in the section described above Thanks to John Belmonte for the patch!
-
Johannes Gijsbers yazdı
still the same, so there should be no backwards-compatibility problems.
-
Johannes Gijsbers yazdı
modules, replacing with email. Thanks to Josh Hoyt for the patch!
-
Johannes Gijsbers yazdı
* replace deltree with shutil.rmtree() * replace mkdirs with os.makedirs() * fold touchfile into GlobTests.mktemp()
-
Johannes Gijsbers yazdı
`glob.glob()` currently calls itself recursively to build a list of matches of the dirname part of the pattern and then filters by the basename part. This is effectively BFS. ``glob.glob('*/*/*/*/*/foo')`` will build a huge list of all directories 5 levels deep even if only a handful of them contain a ``foo`` entry. A generator-based recusion would never have to store these list at once by implementing DFS. This patch converts the `glob` function to an `iglob` recursive generator . `glob()` now just returns ``list(iglob(pattern))``. I also cleaned up the code a bit (reduced duplicate `has_magic()` checks and created a second `glob0` helper func so that the main loop need not be duplicated). Thanks to Cherniavsky Beni for the patch!
-
Johannes Gijsbers yazdı
* Use os.makedirs() instead os.mkdir(). (bug #975763) * Use copystat() to copy directory bits (bug #1048878)
-
Tim Peters yazdı
test_threading.test_foreign_thread(): new test does a basic check that "foreign" threads can using the threading module, and that they create a _DummyThread instance in at least one use case. This isn't a very good test, since a thread created by thread.start_new_thread() isn't particularly "foreign".
-
Tim Peters yazdı
does what it's supposed to do.
-
Brett Cannon yazdı
_Thread.__init__) was never used. This is a waste since locks use OS primitives that are in limited supply. So the lock is deleted in _DummyThread.__init__ . Closes bug #1089632.
-
- 07 Ock, 2005 15 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Armin Rigo yazdı
bytecodes from the previously saved .pyc files. Fixed by disabling the static optimization of BINARY_DIVIDE between two constants.
-
Tim Peters yazdı
-
Andrew M. Kuchling yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
MacOSX: if we cannot use -undefined dynamic_lookup (such as on 10.2 or earlier) we link extension directly against the dynamic library in the framework in stead of against the framework. This will fix building extensions for 2.3 after 2.4 has been installed too.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
to an empty value and distutils will get confused lateron.
-
Raymond Hettinger yazdı
-
Andrew McNamara yazdı
-
Andrew McNamara yazdı
implementation features better error reporting, and better compliance with the PEP.
-
Raymond Hettinger yazdı
-
Facundo Batista yazdı
-
Raymond Hettinger yazdı
-
- 06 Ock, 2005 1 kayıt (commit)
-
-
Andrew McNamara yazdı
-
- 05 Ock, 2005 4 kayıt (commit)
-
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-