File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -354,8 +354,10 @@ def test_srcdir(self):
354354 self .assertTrue (os .path .exists (Python_h ), Python_h )
355355 self .assertTrue (sysconfig ._is_python_source_dir (srcdir ))
356356 elif os .name == 'posix' :
357- self .assertEqual (os .path .dirname (sysconfig .get_makefile_filename ()),
358- srcdir )
357+ makefile_dir = os .path .dirname (sysconfig .get_makefile_filename ())
358+ # Issue #19340: srcdir has been realpath'ed already
359+ makefile_dir = os .path .realpath (makefile_dir )
360+ self .assertEqual (makefile_dir , srcdir )
359361
360362 def test_srcdir_independent_of_cwd (self ):
361363 # srcdir should be independent of the current working directory
Original file line number Diff line number Diff line change @@ -613,6 +613,7 @@ Sijin Joseph
613613Andreas Jung
614614Tattoo Mabonzo K.
615615Sarah K.
616+ Sunny K
616617Bohuslav Kabrda
617618Bob Kahn
618619Kurt B. Kaiser
You can’t perform that action at this time.
0 commit comments